aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/CodeGenPrepare.cpp
AgeCommit message (Expand)Author
2013-03-04Bypass Slow DividesPreston Gurd
2013-01-18Use AttributeSet accessor methods instead of Attribute accessor methods.Bill Wendling
2013-01-07Sink AddrMode back into TargetLowering, removing one of the mostChandler Carruth
2013-01-05Sink the AddressingModeMatcher helper class into an anonymous namespaceChandler Carruth
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth
2012-12-30Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling
2012-12-21Every pass deserves a name, even codegenprep.Evan Cheng
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling
2012-12-11Revert EVT->MVT changes, r169836-169851, due to buildbot failures.Patrik Hagglund
2012-12-11Change TargetLowering::getLoadExtAction to take an MVT, instead of EVT.Patrik Hagglund
2012-12-06Set the 'MadeChange' variable if we are deleting blocks.Bill Wendling
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-11-30Replace r168930 with a more reasonable patch.Bill Wendling
2012-11-29Handle the situation where CodeGenPrepare removes a reference to a BB that hasBill Wendling
2012-11-28When we delete a dead basic block, see if any of its successors are dead andBill Wendling
2012-11-23CodeGenPrepare: Move ret duplication out of the instruction iteration loop.Benjamin Kramer
2012-11-01Revert the series of commits starting with r166578 which introduced theChandler Carruth
2012-10-30Use TargetTransformInfo to control switch-to-lookup table transformationHans Wennborg
2012-10-24Add in support for getIntPtrType to get the pointer type based on the address...Micah Villmow
2012-10-23Per the C++ standard, we need to include the definition of llvm::Calculate inRichard Smith
2012-10-15Move the Attributes::Builder outside of the Attributes class and into its own...Bill Wendling
2012-10-14Remove the bitwise XOR operator from the Attributes class. Replace it with th...Bill Wendling
2012-10-10Remove the final bits of Attributes being declared in the AttributeBill Wendling
2012-10-09Create enums for the different attributes.Bill Wendling
2012-10-08Move TargetData to DataLayout.Micah Villmow
2012-10-04This patch corrects commit 165126 by using an integer bit width instead of Preston Gurd
2012-10-04Use method to query for attributes.Bill Wendling
2012-09-28Do not delete BBs if their addresses are taken. rdar://12396696Evan Cheng
2012-09-26Remove the `hasFnAttr' method from Function.Bill Wendling
2012-09-19CodeGenPrep: turn lookup tables into switches for some targets.Hans Wennborg
2012-09-14Stylistic and 80-col fixesEvan Cheng
2012-09-13Fix Doxygen issues:Dmitri Gribenko
2012-09-04Generic Bypass Slow DivPreston Gurd
2012-09-02Not all targets have efficient ISel code generation for select instructions.Nadav Rotem
2012-08-29Make MemoryBuiltins aware of TargetLibraryInfo.Benjamin Kramer
2012-08-21revise debug output to avoid dangling pointerMichael Liao
2012-08-15Remove dead flag.Bill Wendling
2012-08-14During the CodeGenPrepare we often lower intrinsics (such as objsize)Nadav Rotem
2012-07-27Teach CodeGenPrep to look past bitcast when it's duplicating return instructionEvan Cheng
2012-07-25make all Emit*() functions consult the TargetLibraryInfo information before c...Nuno Lopes
2012-07-24Clean whitespaces.Nadav Rotem
2012-06-29CodeGenPrepare: Don't crash when TLI is not available.Benjamin Kramer
2012-06-29Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.hChandler Carruth
2012-05-06Switch the select to branch transformation on by default.Benjamin Kramer
2012-05-05CodeGenPrepare: Add a transform to turn selects into branches in some cases.Benjamin Kramer
2012-03-24Refactor the interface to recursively simplifying instructions to be tadChandler Carruth
2012-03-13Target override to allow CodeGenPrepare to sink address operands to intrinsic...Pete Cooper
2012-03-04Do trivial CSE of dead BBs during codegen preparation.Bill Wendling
2012-01-20Extend Attributes to 64 bitsKostya Serebryany
2011-12-01Propagate TargetLibraryInfo throughout ConstantFolding.cpp and Chad Rosier