aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/ConstantFolding.cpp
Commit message (Expand)AuthorAgeFilesLines
* ConstantFolding: ComputeMaskedBits wants the scalar size for vectors.Benjamin Kramer2013-04-191-1/+1
* Fix a scalability issue with complex ConstantExprs.Benjamin Kramer2013-04-131-12/+24
* Constant fold vector bitcasts of halves similarly to how floats and doubles a...Michael Ilseman2013-02-261-6/+8
* Formatting.Chad Rosier2013-02-201-2/+1
* Teach the DataLayout aware constant folder to be much more aggressive towardsNick Lewycky2013-02-141-8/+30
* Conditionalize constant folding of math intrinsics on the availability of an ...Owen Anderson2013-02-071-0/+10
* Signficantly generalize our ability to constant fold floating point intrinsic...Owen Anderson2013-02-061-14/+88
* ConstantFolding: Fix a crash when encoutering a truncating inttoptr.Benjamin Kramer2013-02-051-3/+7
* use GEP::accumulateConstantOffset() to replace custom written code to compute...Nuno Lopes2013-02-031-27/+2
* ConstantFolding: Add a missing folding that leads to a miscompile.Benjamin Kramer2013-01-241-4/+4
* ConstantFolding: Tweak r173289, it should evaluate in the intptr type, not th...Benjamin Kramer2013-01-231-18/+15
* ConstantFolding: Evaluate GEP indices in the index type.Benjamin Kramer2013-01-231-2/+11
* Make APFloat constructor require explicit semantics.Tim Northover2013-01-221-1/+1
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-8/+8
* Rename VMCore directory to IR.Chandler Carruth2013-01-021-7/+7
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-6/+6
* llvm/ConstantFolding.cpp: Make ReadDataFromGlobal() and FoldReinterpretLoadFr...NAKAMURA Takumi2012-11-081-9/+19
* ConstantFolding.cpp: Whitespace.NAKAMURA Takumi2012-11-051-100/+100
* Revert the majority of the next patch in the address space series:Chandler Carruth2012-11-011-7/+5
* Revert the series of commits starting with r166578 which introduced theChandler Carruth2012-11-011-124/+117
* Add some cleanup to the DataLayout changes requested by Chandler.Micah Villmow2012-10-241-2/+1
* Add in support for getIntPtrType to get the pointer type based on the address...Micah Villmow2012-10-241-115/+123
* Resubmit the changes to llvm core to update the functions to support differen...Micah Villmow2012-10-151-5/+7
* Revert 165732 for further review.Micah Villmow2012-10-111-7/+5
* Add in the first iteration of support for llvm/clang/lldb to allow variable p...Micah Villmow2012-10-111-5/+7
* Move TargetData to DataLayout.Micah Villmow2012-10-081-17/+17
* Dont cast away const needlessly. Found by gcc48 -Wcast-qual.Roman Divacky2012-09-061-1/+2
* When constant folding GEP expressions, keep the address space information of ...Nadav Rotem2012-07-301-3/+19
* When folding a load from a global constant, if the load started in the middleDuncan Sands2012-07-251-5/+8
* Reapply r155682, making constant folding more consistent, with a fix to workDan Gohman2012-04-271-7/+20
* Revert r155682, "Use ConstantExpr::getExtractElement when constant-folding ve...NAKAMURA Takumi2012-04-271-14/+4
* Use ConstantExpr::getExtractElement when constant-folding vectorsDan Gohman2012-04-271-4/+14
* Fix a crash on valid (if UB) bitcode that is produced for some globalChandler Carruth2012-04-241-3/+11
* Convert assert(0) to llvm_unreachableCraig Topper2012-02-071-2/+2
* Remove some dead code and tidy things up now that vectors use ConstantDataVectorChris Lattner2012-02-061-18/+14
* reapply the patches reverted in r149470 that reenable ConstantDataArray,Chris Lattner2012-02-051-3/+3
* Revert Chris' commits up to r149348 that started causing VMCoreTests unit tes...Argyrios Kyrtzidis2012-02-011-3/+3
* Change ConstantArray::get to form a ConstantDataArray when possible,Chris Lattner2012-01-311-3/+3
* Add r149110 back with a fix for when the vector and the int have the sameRafael Espindola2012-01-271-0/+38
* Revert r149110 and add a testcase that was crashing since that revision.Rafael Espindola2012-01-271-38/+0
* enhance constant folding to be able to constant fold bitcast of Chris Lattner2012-01-271-0/+38
* progress making the world safe to ConstantDataVector. WhileChris Lattner2012-01-261-39/+45
* use Constant::getAggregateElement to simplify a bunch of code.Chris Lattner2012-01-251-73/+24
* Use the right method to get the # elements in a CDS.Chris Lattner2012-01-251-2/+2
* Split the interesting bits of ConstantFoldLoadThroughGEPConstantExprChris Lattner2012-01-241-43/+56
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-201-2/+0
* Switch llvm.cttz and llvm.ctlz to accept a second i1 parameter whichChandler Carruth2011-12-121-4/+8
* Add support for vectors of pointers.Nadav Rotem2011-12-051-1/+2
* Add support for constant folding the pow intrinsic.Chad Rosier2011-12-031-3/+6
* Abuse of mass replace isn't warranted even when the build is failing. ThanksChad Rosier2011-12-011-25/+29