aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Do not add the SVOffset to the Node CSE ID. The same pointer argument cannot...Nate Begeman2009-09-151-5/+0
* Better solution for tracking both the original alignment of the access, and t...Nate Begeman2009-09-151-22/+19
* Remove incorrect CSE code from r81813.Nate Begeman2009-09-151-2/+0
* Add an "original alignment" field to load and store nodes. This enables theNate Begeman2009-09-151-13/+23
* Recognize more opportunities to use SSE min and max instructions,Dan Gohman2009-09-031-0/+13
* Reapply 79977.Devang Patel2009-08-281-1/+1
* Revert 79977. It causes llvm-gcc bootstrap failures on some platforms.Devang Patel2009-08-261-1/+1
* Get rid of this horrible "benign race" by exploiting ManagedStatic to initializeOwen Anderson2009-08-251-7/+14
* Update DebugInfo interface to use metadata, instead of special named llvm.dbg...Devang Patel2009-08-251-1/+1
* Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner2009-08-231-6/+7
* Record variable debug info at ISel time directly.Devang Patel2009-08-221-2/+0
* Reapply r79708 with the appropriate fix for the case that still requires lock...Owen Anderson2009-08-221-2/+6
* revert r79708 + r79711Chris Lattner2009-08-221-5/+3
* Actually remove unused static. Previous commit removed trailingEric Christopher2009-08-221-1/+0
* Remove unused static.Eric Christopher2009-08-221-20/+20
* Ease contention on this lock by noticing that all writes to the VTs array willOwen Anderson2009-08-221-2/+5
* Add an x86 peep that narrows TEST instructions to forms that useDan Gohman2009-08-191-0/+11
* Needs to check whether unaligned load / store of i64 is legal here.Evan Cheng2009-08-151-4/+3
* Unbreak build. Evan, please make sure my changes are correct.Benjamin Kramer2009-08-151-1/+1
* Allow targets to specify their choice of calling conventions perAnton Korobeynikov2009-08-141-3/+6
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-131-9/+13
* Add contexts to some of the MVT APIs. No functionality change yet, just the ...Owen Anderson2009-08-121-7/+9
* Fix warnings.Owen Anderson2009-08-111-4/+4
* Split EVT into MVT and EVT, the former representing _just_ a primitive type, ...Owen Anderson2009-08-111-77/+78
* Tidy #includes.Dan Gohman2009-08-111-0/+1
* SjLj based exception handling unwinding support. This patch is nasty, brutishJim Grosbach2009-08-111-0/+1
* Rename MVT to EVT, in preparation for splitting SimpleValueType out into its ...Owen Anderson2009-08-101-238/+238
* Start moving TargetLowering away from using full MVTs and towards SimpleValue...Owen Anderson2009-08-101-1/+2
* Major calling convention code refactoring.Dan Gohman2009-08-051-55/+26
* Propogate the Depth argument when callingDan Gohman2009-08-041-1/+2
* Print the target flags as an int instead of a char, as they aren'tDan Gohman2009-08-011-4/+4
* Allow targets to define libcall names for mem(cpy,set,move) intrinsics, rathe...Sanjiv Gupta2009-07-301-3/+6
* Move types back to the 2.5 API.Owen Anderson2009-07-291-6/+5
* Move ConstantFP construction back to the 2.5-ish API.Owen Anderson2009-07-271-1/+1
* Revert the ConstantInt constructors back to their 2.5 forms where possible, t...Owen Anderson2009-07-241-1/+1
* Get rid of the Pass+Context magic.Owen Anderson2009-07-221-1/+1
* Fix some minor MSVC compiler warnings.Daniel Dunbar2009-07-191-2/+2
* Privatize the ConstantFP table. I'm on a roll!Owen Anderson2009-07-161-1/+1
* Move the ConstantInt uniquing table into LLVMContextImpl. This exposed a num...Owen Anderson2009-07-161-1/+1
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Edwin Török2009-07-141-11/+11
* assert(0) -> LLVM_UNREACHABLE.Edwin Török2009-07-111-11/+12
* Make EXTRACT_VECTOR_ELT a bit more flexible in terms of the returned Eli Friedman2009-07-091-5/+8
* As Chris pointed out, we don't actually need to pass the context around here.Owen Anderson2009-07-091-2/+2
* Thread LLVMContext through MVT and related parts of SDISel.Owen Anderson2009-07-091-6/+8
* Make SelectionDAG::getVectorShuffle work properly for VECTOR_SHUFFLEDan Gohman2009-07-091-2/+2
* SelectionDAG::SignBitIsZero doesn't work right for vectors,Chris Lattner2009-07-071-0/+4
* Have scoped mutexes take referenes instead of pointers.Owen Anderson2009-07-071-1/+1
* Add NumFixedArgs attribute to CallSDNode which indicates the number of fixed ...Tilmann Scheller2009-07-031-5/+6
* fix a typo that GCC should have caught that causes crashes with -view-*-dagsChris Lattner2009-06-271-1/+1
* fix a really subtle bug in the cross section of aliases and TLS:Chris Lattner2009-06-261-9/+3