Age | Commit message (Expand) | Author |
2010-04-16 | Commit this, which should have accompanied 101531. | Dan Gohman |
2010-04-15 | Add const qualifiers to CodeGen's use of LLVM IR constructs. | Dan Gohman |
2010-04-12 | Remove unnecessary parens. | Dan Gohman |
2010-04-08 | Avoid using f64 to lower memcpy from constant string. It's cheaper to use i32... | Evan Cheng |
2010-04-07 | Three changes: | Chris Lattner |
2010-04-06 | Remove assert to treat memmove and memset like memcpy | Mon P Wang |
2010-04-05 | Fix an obvious copy-n-paste bug. It's not known to cause any miscompilation. | Evan Cheng |
2010-04-05 | Add a comment. | Dan Gohman |
2010-04-05 | lowering a volatile llvm.memcpy to a libc memcpy is ok. | Chris Lattner |
2010-04-05 | remove the now-redundant MMI pointer in SelectionDAG. | Chris Lattner |
2010-04-05 | remove some redundant MMI arguments. | Chris Lattner |
2010-04-05 | selection dag doesn't need DwarfWriter, remove some tendrils. | Chris Lattner |
2010-04-04 | Reapply address space patch after fixing an issue in MemCopyOptimizer. | Mon P Wang |
2010-04-02 | stop using DebugLoc::getUnknownLoc() | Chris Lattner |
2010-04-02 | Correctly lower memset / memcpy of undef. It should be a nop. PR6767. | Evan Cheng |
2010-04-02 | Revert r100191 since it breaks objc in clang | Mon P Wang |
2010-04-02 | Reapply address space patch after fixing an issue in MemCopyOptimizer. | Mon P Wang |
2010-04-01 | Skip checking preferred alignment of GVs defined in other translation units a... | Evan Cheng |
2010-04-01 | - Avoid using floating point stores to implement memset unless the value is z... | Evan Cheng |
2010-04-01 | Fix sdisel memcpy, memset, memmove lowering: | Evan Cheng |
2010-03-30 | Revert Mon Ping's change 99928, since it broke all the llvm-gcc buildbots. | Bob Wilson |
2010-03-30 | Added support for address spaces and added a isVolatile field to memcpy, memm... | Mon P Wang |
2010-03-30 | Funky indentation. | Evan Cheng |
2010-03-29 | Pool allocate SDDbgValue nodes. | Evan Cheng |
2010-03-25 | Change how dbg_value sdnodes are converted into machine instructions. Their p... | Evan Cheng |
2010-03-18 | Define placement new wrappers for BumpPtrAllocator and | Dan Gohman |
2010-03-15 | SIGN_EXTEND from the same type as the dest is valid. | Chris Lattner |
2010-03-15 | sink the call to VT.getSizeInBits() down into its uses, | Chris Lattner |
2010-03-14 | Rename SDDbgValue.h to SDNodeDbgValue.h for consistency. | Evan Cheng |
2010-03-14 | Make default expansion for FP16 <-> FP32 nodes into libcalls | Anton Korobeynikov |
2010-03-14 | change the LabelSDNode to be EHLabelSDNode and make it hold | Chris Lattner |
2010-03-10 | Progress towards shepherding debug info through SelectionDAG. | Dale Johannesen |
2010-03-07 | Use Other as a sentinel instead of iAny. | Chris Lattner |
2010-03-04 | Fix a typo Duncan noticed. | Dan Gohman |
2010-03-03 | Fix a bug in SelectionDAG's ReplaceAllUsesWith in the case where | Dan Gohman |
2010-03-02 | Remove dead parameter passing. | Bill Wendling |
2010-03-01 | remove all but one version of SelectionDAG::MorphNodeTo | Chris Lattner |
2010-03-01 | some trivial microoptimizations. | Chris Lattner |
2010-02-28 | enhance the new isel to handle the 'node already exists' | Chris Lattner |
2010-02-24 | clean up various VT manipulations, patch by Micah Villmow! PR6337 | Chris Lattner |
2010-02-24 | convert cycle checker to smallptrset, add comments and make it | Chris Lattner |
2010-02-24 | revert david's patch which does not even build. | Chris Lattner |
2010-02-24 | Use a SmallPtrSet as suggested by Chris. | David Greene |
2010-02-24 | When forming SSE min and max nodes for UGE and ULE comparisons, it's | Dan Gohman |
2010-02-24 | add node #'s to debug dumps. | Chris Lattner |
2010-02-23 | make selectnodeto set the nodeid to -1. This makes it more akin to | Chris Lattner |
2010-02-23 | Print node ID's in dumps and views if set. | Chris Lattner |
2010-02-23 | Speed up cycle checking significantly by caching results. | David Greene |
2010-02-17 | Make the non-temporal bit "significant" in MemSDNodes so they aren't | David Greene |
2010-02-16 | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands |