aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
AgeCommit message (Expand)Author
2013-03-07ArrayRefize some code. No functionality change.Benjamin Kramer
2013-03-01Fix PR10475Michael Liao
2013-02-25Fix spelling noticed by Duncan.Chandler Carruth
2013-02-25Fix the root cause of PR15348 by correctly handling alignment 0 onChandler Carruth
2013-02-20Move the SplatByte helper to APInt and generalize it a bit.Benjamin Kramer
2013-02-04SelectionDAG: Teach FoldConstantArithmetic how to deal with vectors.Benjamin Kramer
2013-01-31When lowering memcpys to loads and stores, make sure we don't promote alignmentsLang Hames
2013-01-22Make APFloat constructor require explicit semantics.Tim Northover
2013-01-20Revert 172708.Nadav Rotem
2013-01-17Optimization for the following SIGN_EXTEND pairs:Elena Demikhovsky
2013-01-10PR14896: Handle memcpy from constant string where the memcpy size is larger t...Evan Cheng
2013-01-07Move TargetTransformInfo to live under the Analysis library. This noChandler Carruth
2013-01-05Funnel the actual TargetTransformInfo pass from the SelectionDAGISelChandler Carruth
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth
2013-01-02Resort the #include lines in include/... and lib/... with theChandler Carruth
2012-12-30Support ppcf128 in SelectionDAG::getConstantFPHal Finkel
2012-12-30Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling
2012-12-12Fix a logic bug in inline expansion of memcpy / memset with an overlappingEvan Cheng
2012-12-12Sorry about the churn. One more change to getOptimalMemOpType() hook. Did IEvan Cheng
2012-12-12- Rename isLegalMemOpType to isSafeMemOpType. "Legal" is a very overloade term.Evan Cheng
2012-12-12Avoid using lossy load / stores for memcpy / memset expansion. e.g.Evan Cheng
2012-12-11Replace TargetLowering::isIntImmLegal() withEvan Cheng
2012-12-10Some enhancements for memcpy / memset inline expansion.Evan Cheng
2012-12-06Replace r169459 with something safer. Rather than having computeMaskedBits toEvan Cheng
2012-12-06Let targets provide hooks that compute known zero and ones for any_extendEvan Cheng
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-11-01Revert the majority of the next patch in the address space series:Chandler Carruth
2012-11-01Revert the series of commits starting with r166578 which introduced theChandler Carruth
2012-10-29In various places throughout the code generator, there were specialUlrich Weigand
2012-10-24Add in support for getIntPtrType to get the pointer type based on the address...Micah Villmow
2012-10-15Resubmit the changes to llvm core to update the functions to support differen...Micah Villmow
2012-10-11Revert 165732 for further review.Micah Villmow
2012-10-11Add in the first iteration of support for llvm/clang/lldb to allow variable p...Micah Villmow
2012-10-09Create enums for the different attributes.Bill Wendling
2012-10-08Move TargetData to DataLayout.Micah Villmow
2012-09-30Use dyn_cast instead of isa and cast.Jakub Staszak
2012-09-27Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru
2012-09-27Fix a typo 'iff' => 'if'Sylvestre Ledru
2012-09-26Remove the `hasFnAttr' method from Function.Bill Wendling
2012-09-12Fix PR11985Michael Liao
2012-09-12Fix constant folding through bitcasts by no longer relying on undefined behav...Kristof Beyls
2012-09-10Fold multiply by 0 or 1 when in UnsafeFPMath mode in SelectionDAG::getNode().Michael Ilseman
2012-09-10whitespaceMichael Ilseman
2012-09-10Fix an assertion failure when optimising a shufflevector incorrectly into con...James Molloy
2012-09-06Add a new optimization pass: Stack Coloring, that merges disjoint static allo...Nadav Rotem
2012-08-28Remove extra MayLoad/MayStore flags from atomic_load/store.Jakob Stoklund Olesen
2012-08-24Fix integer undefined behavior due to signed left shift overflow in LLVM.Richard Smith
2012-08-13Add a roundToIntegral method to APFloat, which can be parameterized over vari...Owen Anderson
2012-08-07Add SelectionDAG::getTargetIndex.Jakob Stoklund Olesen