summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/SROA.cpp
Commit message (Expand)AuthorAge
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* Add IRBuilder::CreateVectorSplat and use it to simplify code.Benjamin Kramer2013-01-01
* SROA: Clean up unused assignment warnings from clang's analyzer.Benjamin Kramer2013-01-01
* convert a bunch of callers from DataLayout::getIndexedOffset() to GEP::accumu...Nuno Lopes2012-12-30
* SROA: Replace calls to getScalarSizeInBits to DataLayout's API becauseNadav Rotem2012-12-18
* Fix another SROA crasher, PR14601.Chandler Carruth2012-12-17
* Teach the rewriting of memcpy calls to support subvector copies.Chandler Carruth2012-12-17
* Fix a secondary bug I introduced while fixing the first part of PR14478.Chandler Carruth2012-12-17
* Hoist a convertValue call to the two paths where it is needed.Chandler Carruth2012-12-17
* Hoist the insertVector helper to be a static helper.Chandler Carruth2012-12-17
* Lift the extractVector helper all the way out to a static helper function.Chandler Carruth2012-12-17
* Factor the vector load rewriting into a more generic form.Chandler Carruth2012-12-17
* Fix the first part of PR14478: memset now works.Chandler Carruth2012-12-17
* Extract the logic for inserting a subvector into a vector alloca.Chandler Carruth2012-12-17
* Lift the integer splat computation into a helper function.Chandler Carruth2012-12-17
* Relax an overly aggressive assert to fix PR14572.Chandler Carruth2012-12-15
* Add a new visitor for walking the uses of a pointer value.Chandler Carruth2012-12-10
* Fix PR14548: SROA was crashing on a mixture of i1 and i8 loads and stores.Chandler Carruth2012-12-10
* Switch SROA to pop Uses off the back of its visitors' queues.Chandler Carruth2012-12-09
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Remove some buggy and apparantly unnecessary code from SROA.Chandler Carruth2012-12-03
* SROA: Avoid struct and array types early to avoid creating an overly large in...Benjamin Kramer2012-12-01
* Move the InstVisitor utility into VMCore where it belongs. It heavilyChandler Carruth2012-11-30
* PR14055: Implement support for sub-vector operations in SROA.Chandler Carruth2012-11-21
* Use LLVM_ENABLE_DUMP for the variables used in printing as well as theChandler Carruth2012-11-20
* Fix PR14132 and handle OOB loads speculated throuh PHI nodes.Chandler Carruth2012-11-20
* Add a comment to associate a FIXME with a PR where it is matters.Chandler Carruth2012-11-20
* Rework the rewriting of loads and stores for vector and integer allocasChandler Carruth2012-11-20
* Teach SROA rewriteVectorizedStoreInst to handle cases when the loaded value i...Evan Cheng2012-11-17
* Revert the majority of the next patch in the address space series:Chandler Carruth2012-11-01
* Revert the series of commits starting with r166578 which introduced theChandler Carruth2012-11-01
* Don't insert and erase load instruction. Simply create (new) and delete it.Jakub Staszak2012-11-01
* Fix PR14212: For some strange reason I treated vectors differently fromChandler Carruth2012-10-30
* Teach SROA how to split whole-alloca integer loads and stores intoChandler Carruth2012-10-25
* Add some cleanup to the DataLayout changes requested by Chandler.Micah Villmow2012-10-24
* Back out r166591, not sure why this made it through since I cancelled the com...Micah Villmow2012-10-24
* Delete a directory that wasn't supposed to be checked in yet.Micah Villmow2012-10-24
* SROA: Simplify code. No functionality change.Benjamin Kramer2012-10-20
* Refactor insert and extract of sub-integers into static helpers thatChandler Carruth2012-10-18
* This FIXME was fixed some time ago. =]Chandler Carruth2012-10-18
* This just in, it is a *bad idea* to use 'udiv' on an offset ofChandler Carruth2012-10-17
* Fix a really annoying "bug" introduced in r165941. The change from thatChandler Carruth2012-10-17
* Resubmit the changes to llvm core to update the functions to support differen...Micah Villmow2012-10-15
* Update the memcpy rewriting to fully support widened int rewriting. ThisChandler Carruth2012-10-15
* Follow-up fix to r165928: handle memset rewriting for widened integers,Chandler Carruth2012-10-15
* First major step toward addressing PR14059. This teaches SROA to handleChandler Carruth2012-10-15
* Hoist the canConvertValue predicate and the convertValue transform outChandler Carruth2012-10-15
* Teach SROA to cope with wrapper aggregates. These show up a lot in ABIChandler Carruth2012-10-13
* Speculatively harden the conversion logic. I have no idea if this willChandler Carruth2012-10-13
* Silence a warning in -assert builds.Chandler Carruth2012-10-13