aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
AgeCommit message (Expand)Author
2010-01-05Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer
2010-01-05Delete renaming use of dead dbg intrinsics.Devang Patel
2010-01-05Change errs() to dbgs().David Greene
2010-01-04Use a pointer type rather than MVT::Other for the ExternalSymbol node usedDan Gohman
2010-01-02Teach codegen to handle:Chris Lattner
2010-01-01Fix a warning on gcc 4.4.Mikhail Glushenkov
2010-01-01Trailing whitespace, 80-col violations.Mikhail Glushenkov
2010-01-01Teach codegen to lower llvm.powi to an efficient (but not optimal) Chris Lattner
2009-12-29remove a bunch of unneeded functions.Chris Lattner
2009-12-28This is a major cleanup of the instruction metadata interfaces thatChris Lattner
2009-12-28rename getMDKind -> getMDKindID, make it autoinsert if an MD KindChris Lattner
2009-12-24handle equality memcmp of 8 bytes on x86-64 with two unaligned loads and a Chris Lattner
2009-12-24move an optimization for memcmp out of simplifylibcalls and into Chris Lattner
2009-12-23Use more sensible type for flags in asms. PR 5570.Dale Johannesen
2009-12-23Update objectsize intrinsic and associated dependencies. FixEric Christopher
2009-12-23Remove superfluous SDNode ordering.Bill Wendling
2009-12-23Remove node ordering from inline asm nodes. It's not needed.Bill Wendling
2009-12-23Remove node ordering from VA nodes. It's not needed.Bill Wendling
2009-12-22Assign ordering to SDNodes in PromoteNode. Also fixing a subtle bug where BSWAPBill Wendling
2009-12-22Allow 0 as an order number. Don't assign an order to formal arguments.Bill Wendling
2009-12-22Report an error for bad inline assembly, where the value passed for anBob Wilson
2009-12-22Add more plumbing. This time in the LowerArguments and "get" functions whichBill Wendling
2009-12-22Add SDNode ordering to inlined asm and VA functions.Bill Wendling
2009-12-22Adding more assignment of ordering to SDNodes. This time in the "call" andBill Wendling
2009-12-22Add ordering of SDNodes to LowerCallTo.Bill Wendling
2009-12-22Now add ordering to SDNodes created by the massive intrinsic lowering function.Bill Wendling
2009-12-22To make things interesting, I added MORE code to set the ordering ofBill Wendling
2009-12-21Add more plumbing to assign ordering to SDNodes. Have the "getValue" methodBill Wendling
2009-12-21More ordering plumbing. This time for GEP. I need to remember to assignBill Wendling
2009-12-21Another incremental check-in for assigning ordering to SDNodes. This time forBill Wendling
2009-12-21Assign ordering to more instructions. Incremental check-in.Bill Wendling
2009-12-21- Add a bit more plumbing assigning an order to SDNodes.Bill Wendling
2009-12-21First wave of plumbing for assigning an ordering to SDNodes. This takes care ofBill Wendling
2009-12-18Changes from review:Bill Wendling
2009-12-18Handle ARM inline asm "w" constraints with 64-bit ("d") registers.Bob Wilson
2009-12-17Fix a comment grammaro.Bob Wilson
2009-12-16Reapply r91392, it was only unmasking the bug, and since TOT is still broken ...Daniel Dunbar
2009-12-16Revert "Initial work on disabling the scheduler. This is a work in progress, andDaniel Dunbar
2009-12-15Initial work on disabling the scheduler. This is a work in progress, and thisBill Wendling
2009-12-11Fix the result type of SELECT nodes lowered from Select instructions withDan Gohman
2009-11-23Rename SelectionDAGLowering to SelectionDAGBuilder, and renameDan Gohman