aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/CodeGenPrepare.cpp
Commit message (Expand)AuthorAgeFilesLines
* Remove the very substantial, largely unmaintained legacy PGOChandler Carruth2013-10-021-8/+0
* Push analysis passes to InstSimplify when they're around anyways.Benjamin Kramer2013-09-241-1/+2
* Fix mistake in r190442.Eli Friedman2013-09-101-0/+7
* Remove unused functions.Eli Friedman2013-09-101-5/+0
* Use type helper functions.Matt Arsenault2013-09-061-2/+1
* Teach CodeGenPrepare about address spacesMatt Arsenault2013-09-061-4/+2
* Remove trailing whitespaceStephen Lin2013-07-151-36/+36
* Remove a useless declarations (found by scan-build)Sylvestre Ledru2013-07-051-1/+0
* Access the TargetLoweringInfo from the TargetMachine object instead of cachin...Bill Wendling2013-06-191-4/+6
* Fix a bug in codegenprep where it was losing track of values OptimizeMemoryInstNick Lewycky2013-05-081-5/+2
* Fix a typo in comment.Jim Grosbach2013-04-151-1/+1
* Bypass Slow DividesPreston Gurd2013-03-041-1/+1
* Use AttributeSet accessor methods instead of Attribute accessor methods.Bill Wendling2013-01-181-6/+6
* Sink AddrMode back into TargetLowering, removing one of the mostChandler Carruth2013-01-071-1/+1
* Sink the AddressingModeMatcher helper class into an anonymous namespaceChandler Carruth2013-01-051-1/+623
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-8/+8
* Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling2012-12-301-1/+2
* Every pass deserves a name, even codegenprep.Evan Cheng2012-12-211-0/+2
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-191-7/+7
* Revert EVT->MVT changes, r169836-169851, due to buildbot failures.Patrik Hagglund2012-12-111-1/+1
* Change TargetLowering::getLoadExtAction to take an MVT, instead of EVT.Patrik Hagglund2012-12-111-1/+1
* Set the 'MadeChange' variable if we are deleting blocks.Bill Wendling2012-12-061-0/+1
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-9/+9
* Replace r168930 with a more reasonable patch.Bill Wendling2012-11-301-75/+0
* Handle the situation where CodeGenPrepare removes a reference to a BB that hasBill Wendling2012-11-291-0/+75
* When we delete a dead basic block, see if any of its successors are dead andBill Wendling2012-11-281-3/+13
* CodeGenPrepare: Move ret duplication out of the instruction iteration loop.Benjamin Kramer2012-11-231-6/+8
* Revert the series of commits starting with r166578 which introduced theChandler Carruth2012-11-011-1/+1
* Use TargetTransformInfo to control switch-to-lookup table transformationHans Wennborg2012-10-301-112/+2
* Add in support for getIntPtrType to get the pointer type based on the address...Micah Villmow2012-10-241-1/+1
* Per the C++ standard, we need to include the definition of llvm::Calculate inRichard Smith2012-10-231-0/+1
* Move the Attributes::Builder outside of the Attributes class and into its own...Bill Wendling2012-10-151-2/+2
* Remove the bitwise XOR operator from the Attributes class. Replace it with th...Bill Wendling2012-10-141-2/+4
* Remove the final bits of Attributes being declared in the AttributeBill Wendling2012-10-101-1/+2
* Create enums for the different attributes.Bill Wendling2012-10-091-2/+3
* Move TargetData to DataLayout.Micah Villmow2012-10-081-5/+5
* This patch corrects commit 165126 by using an integer bit width instead of Preston Gurd2012-10-041-2/+3
* Use method to query for attributes.Bill Wendling2012-10-041-1/+1
* Do not delete BBs if their addresses are taken. rdar://12396696Evan Cheng2012-09-281-2/+3
* Remove the `hasFnAttr' method from Function.Bill Wendling2012-09-261-1/+1
* CodeGenPrep: turn lookup tables into switches for some targets.Hans Wennborg2012-09-191-4/+114
* Stylistic and 80-col fixesEvan Cheng2012-09-141-7/+3
* Fix Doxygen issues:Dmitri Gribenko2012-09-131-1/+4
* Generic Bypass Slow DivPreston Gurd2012-09-041-1/+14
* Not all targets have efficient ISel code generation for select instructions.Nadav Rotem2012-09-021-7/+22
* Make MemoryBuiltins aware of TargetLibraryInfo.Benjamin Kramer2012-08-291-1/+1
* revise debug output to avoid dangling pointerMichael Liao2012-08-211-1/+1
* Remove dead flag.Bill Wendling2012-08-151-9/+3
* During the CodeGenPrepare we often lower intrinsics (such as objsize)Nadav Rotem2012-08-141-0/+39
* Teach CodeGenPrep to look past bitcast when it's duplicating return instructionEvan Cheng2012-07-271-3/+14