summaryrefslogtreecommitdiff
path: root/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
Commit message (Expand)AuthorAge
* [C++] Use 'nullptr'. Transforms edition.Craig Topper2014-04-25
* Handle addrspacecast when looking at memcpys from globalsMatt Arsenault2014-04-24
* [Modules] Fix potential ODR violations by sinking the DEBUG_TYPEChandler Carruth2014-04-22
* [Modules] Sink all the DEBUG_TYPE defines for InstCombine out of theChandler Carruth2014-04-21
* [InstCombine] Don't fold bitcast into store if it would need addrspacecastRichard Osborne2014-03-25
* Reuse earlier variables to make it clear the types involved in the cast.Richard Osborne2014-03-25
* Fix a bug in InstCombine where we would incorrectly attempt to construct aOwen Anderson2014-03-13
* [C++11] Add range based accessors for the Use-Def chain of a Value.Chandler Carruth2014-03-09
* Rename many DataLayout variables from TD to DL.Rafael Espindola2014-02-21
* Update optimization passes to handle inalloca argumentsReid Kleckner2014-01-28
* Fix assert with copy from global through addrspacecastMatt Arsenault2013-12-07
* InstCombine: Don't allow turning vector-of-pointer loads into vector-of-integer.Benjamin Kramer2013-09-19
* Revert the load slicing done in r190870.Quentin Colombet2013-09-17
* [InstCombiner] Slice a big load in two loads when the elements are next to eachQuentin Colombet2013-09-17
* Teach InstCombineLoadCast about address spaces.Matt Arsenault2013-09-03
* Use type form of getIntPtrType in alloca visitor.Matt Arsenault2013-09-03
* Fix always creating GEP with i32 indicesMatt Arsenault2013-08-14
* Use array initializer, space around operatorMatt Arsenault2013-08-14
* Tidy up a bit. No functional change.Jim Grosbach2013-04-05
* switch from pointer equality comparison to MDNode::getMostGenericTBAA Chris Lattner2013-01-05
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* teach instcombine to preserve TBAA tag when merging two stores, part ofChris Lattner2012-12-31
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Get rid of the getPointeeAlignment helper function fromEli Friedman2012-11-26
* Don't try to calculate the alignment of an unsigned type. Fixes PR14371!Nick Lewycky2012-11-18
* Revert the series of commits starting with r166578 which introduced theChandler Carruth2012-11-01
* Add in support for getIntPtrType to get the pointer type based on the address...Micah Villmow2012-10-24
* Move TargetData to DataLayout.Micah Villmow2012-10-08
* Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru2012-09-27
* Fix a typo 'iff' => 'if'Sylvestre Ledru2012-09-27
* Add missing check for presence of target data.Richard Osborne2012-09-24
* Fix instcombine to obey requested alignment when merging allocas.Richard Osborne2012-09-18
* Port the global copy optimization from the SROA pass to InstCombine.Chandler Carruth2012-08-21
* instcombine: merge the functions that remove dead allocas and dead mallocs/ca...Nuno Lopes2012-07-09
* Replacing zero-sized alloca's with a null pointer is too aggressive, insteadDuncan Sands2012-06-26
* Teach InstCombine to nuke a common alloca pattern -- an alloca which hasChandler Carruth2012-04-08
* Revert r152907.Bill Wendling2012-03-16
* The alignment of the pointer part of the store instruction may have anBill Wendling2012-03-16
* Use the getFirstInsertionPt() method instead of getFirstNonPHI + an 'isa<>'Bill Wendling2011-08-16
* A few places where we want to skip the landingpad instruction for insertion.Bill Wendling2011-08-16
* Update instcombine for atomic load/store.Eli Friedman2011-08-15
* Convert GetElementPtrInst to use ArrayRef.Jay Foad2011-07-25
* Convert IRBuilder::CreateGEP and IRBuilder::CreateInBoundsGEP to useJay Foad2011-07-22
* Fix an MSVC warning, caused by a case I missed when convertingJay Foad2011-07-22
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* Final step of instcombine debuginfo; switch a couple more places over to Inse...Eli Friedman2011-05-27
* More instcombine cleanup, towards improving debug line info.Eli Friedman2011-05-18
* Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad2011-03-30
* This case is solved by Scalar Replacement of Aggregates (DT) andJin-Gu Kang2011-03-14
* Add comment as following:Jin-Gu Kang2011-03-13