aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
Commit message (Expand)AuthorAgeFilesLines
* Respect llvm.used in Internalize.Rafael Espindola2013-07-253-21/+41
* Check that TD isn't NULL before dereferencing it down this path.Nick Lewycky2013-07-251-1/+1
* Make these methods const correct.Rafael Espindola2013-07-251-2/+2
* TRE: Move class into anonymous namespace.Benjamin Kramer2013-07-241-4/+6
* Fix a problem I introduced in r187029 where we would over-eagerlyChandler Carruth2013-07-241-3/+9
* Fix PR16687 where we were incorrectly promoting an alloca that hadChandler Carruth2013-07-241-12/+29
* Fix spellingMatt Arsenault2013-07-231-1/+1
* Remove extraneous null statement. No functionality change!Nick Lewycky2013-07-221-1/+1
* Use switch instead of if. No functionality change.Jakub Staszak2013-07-221-14/+17
* Remove trailing spaces.Jakub Staszak2013-07-221-37/+37
* When we vectorize across multiple basic blocks we may vectorize PHINodes that...Nadav Rotem2013-07-221-3/+31
* OldPtr is llvm::Instruction. Remove unneeded cast<>.Jakub Staszak2013-07-221-1/+1
* Change tabs to spaces.Jakub Staszak2013-07-221-2/+2
* Fix spelling and grammarMatt Arsenault2013-07-221-12/+12
* Fix an obvious typo in the loop vectorizer where the cost model uses the wron...Nadav Rotem2013-07-221-2/+2
* Delete unused helper functions.Nadav Rotem2013-07-221-32/+0
* mem2reg: Minor STL usage cleanup. No functionality change.Benjamin Kramer2013-07-211-11/+8
* Make the mem2reg interface use an ArrayRef as it keeps a copy of theseChandler Carruth2013-07-211-5/+6
* Revert a part of r186420. Don't forbid multiple store chains that merge.Nadav Rotem2013-07-211-3/+1
* Hoist the rest of the logic for promoting single-store allocas into theChandler Carruth2013-07-211-23/+31
* Hoist the rest of the logic for fully promoting allocas with all uses inChandler Carruth2013-07-211-55/+33
* Remove a method made dead by the prior refactoring.Chandler Carruth2013-07-211-5/+0
* Hoist the two trivial promotion routines out of the big class thatChandler Carruth2013-07-201-161/+158
* Hoist the AllocaInfo struct to the top of the file.Chandler Carruth2013-07-201-59/+57
* Sink a typedef and comparator down to the function that actually uses them.Chandler Carruth2013-07-201-8/+10
* Don't crash when llvm.compiler.used becomes empty.Rafael Espindola2013-07-201-0/+5
* Don't allocate the DIBuilder on the heap and remove all the complexityChandler Carruth2013-07-201-16/+8
* Rename constructor parameters to follow the common member-shadowingChandler Carruth2013-07-201-3/+3
* Reformat the implementation of mem2reg with clang-format so that myChandler Carruth2013-07-201-344/+360
* Remove a DenseMapInfo specialization for std::pair -- we have one ofChandler Carruth2013-07-201-20/+0
* Update mem2reg's comments to conform to the new doxygen standards. NoChandler Carruth2013-07-201-74/+58
* SROA: Microoptimization: Remove dead entries first, then sort.Benjamin Kramer2013-07-201-9/+4
* InstCombine: call FoldOpIntoSelect for all floating binops, not just fmulStephen Lin2013-07-202-3/+23
* fix an 80-col line.Nadav Rotem2013-07-191-2/+2
* Use LLVMs ADTs that improve the compile time of this pass.Nadav Rotem2013-07-191-2/+2
* SLPVectorizer: Improve the compile time of isConsecutive by reordering the co...Nadav Rotem2013-07-191-22/+19
* s/compiler_used/compiler.used/.Rafael Espindola2013-07-191-7/+7
* Cleanup the stats counters for the new implementation. These actuallyChandler Carruth2013-07-191-12/+36
* Fix another assert failure very similar to PR16651's test case. ThisChandler Carruth2013-07-191-0/+2
* Try to move to a more reasonable set of naming conventions given the newChandler Carruth2013-07-191-322/+305
* A long overdue cleanup in SROA to use 'DL' instead of 'TD' for theChandler Carruth2013-07-191-123/+123
* Fix PR16651, an assert introduced in my recent re-work of the innards ofChandler Carruth2013-07-191-9/+3
* Remove DIBuilder cache of variable TheCU and change the fewEric Christopher2013-07-191-3/+3
* Clean up some of this code a tiny bit, no functionality change.Nick Lewycky2013-07-181-13/+8
* Revert "Remove DIBuilder cache of variable TheCU and change the few"Eric Christopher2013-07-181-3/+3
* Remove DIBuilder cache of variable TheCU and change the fewEric Christopher2013-07-181-3/+3
* Handle constants without going through SCEV.Nadav Rotem2013-07-181-0/+6
* SLPVectorizer: Speedup isConsecutive by manually checking GEPs with multiple ...Nadav Rotem2013-07-181-4/+12
* Reapply r186316 with a fix for one bug where the code could walk off theChandler Carruth2013-07-181-1255/+976
* SLPVectorizer: Speedup isConsecutive (that checks if two addresses are consec...Nadav Rotem2013-07-181-12/+31