aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/SROA.cpp
Commit message (Expand)AuthorAgeFilesLines
* Don't insert and erase load instruction. Simply create (new) and delete it.Jakub Staszak2012-11-011-2/+2
* Fix PR14212: For some strange reason I treated vectors differently fromChandler Carruth2012-10-301-4/+3
* Teach SROA how to split whole-alloca integer loads and stores intoChandler Carruth2012-10-251-4/+117
* Add some cleanup to the DataLayout changes requested by Chandler.Micah Villmow2012-10-241-4/+4
* Back out r166591, not sure why this made it through since I cancelled the com...Micah Villmow2012-10-241-2/+2
* Delete a directory that wasn't supposed to be checked in yet.Micah Villmow2012-10-241-2/+2
* SROA: Simplify code. No functionality change.Benjamin Kramer2012-10-201-9/+2
* Refactor insert and extract of sub-integers into static helpers thatChandler Carruth2012-10-181-68/+84
* This FIXME was fixed some time ago. =]Chandler Carruth2012-10-181-3/+0
* This just in, it is a *bad idea* to use 'udiv' on an offset ofChandler Carruth2012-10-171-3/+3
* Fix a really annoying "bug" introduced in r165941. The change from thatChandler Carruth2012-10-171-3/+3
* Resubmit the changes to llvm core to update the functions to support differen...Micah Villmow2012-10-151-4/+10
* Update the memcpy rewriting to fully support widened int rewriting. ThisChandler Carruth2012-10-151-8/+26
* Follow-up fix to r165928: handle memset rewriting for widened integers,Chandler Carruth2012-10-151-30/+25
* First major step toward addressing PR14059. This teaches SROA to handleChandler Carruth2012-10-151-53/+93
* Hoist the canConvertValue predicate and the convertValue transform outChandler Carruth2012-10-151-44/+52
* Teach SROA to cope with wrapper aggregates. These show up a lot in ABIChandler Carruth2012-10-131-3/+33
* Speculatively harden the conversion logic. I have no idea if this willChandler Carruth2012-10-131-0/+11
* Silence a warning in -assert builds.Chandler Carruth2012-10-131-0/+1
* Clean up how we rewrite loads and stores to the whole alloca. When theseChandler Carruth2012-10-131-5/+49
* Revert 165732 for further review.Micah Villmow2012-10-111-10/+4
* Add in the first iteration of support for llvm/clang/lldb to allow variable p...Micah Villmow2012-10-111-4/+10
* Fix PR14034, an infloop / heap corruption / crash bug in the new SROA.Chandler Carruth2012-10-091-0/+2
* Move TargetData to DataLayout.Micah Villmow2012-10-081-23/+23
* SROA.cpp: Fix a warning, [-Wunused-variable]NAKAMURA Takumi2012-10-051-0/+1
* Teach the new SROA a new trick. Now we zap any memcpy or memmoves whichChandler Carruth2012-10-051-42/+93
* Lift the speculation visitor above all the helpers that are targeted atChandler Carruth2012-10-051-281/+283
* Fix PR13969, a mini-phase-ordering issue with the new SROA pass.Chandler Carruth2012-10-041-23/+50
* Teach the integer-promotion rewrite strategy to be endianness aware.Chandler Carruth2012-10-041-9/+29
* Fix an issue where we failed to adjust the alignment constraint onChandler Carruth2012-10-031-0/+6
* Try to use a better set of abstractions for computing the alignmentChandler Carruth2012-10-031-16/+28
* Switch the SetVector::remove_if implementation to use partition whichChandler Carruth2012-10-031-1/+3
* Teach the new SROA to handle cases where an alloca that has already beenChandler Carruth2012-10-021-0/+4
* Fix another crasher in SROA, reported by Joel.Chandler Carruth2012-10-021-9/+32
* Fix a silly coding error on my part. The whole point of the speculatorChandler Carruth2012-10-021-16/+28
* Make this plural. Spotted by Duncan in review (and a very old typo, thisChandler Carruth2012-10-011-1/+1
* Prune some unnecessary includes.Chandler Carruth2012-10-011-4/+0
* Fix several issues with alignment. We weren't always accounting for typeChandler Carruth2012-10-011-31/+32
* Factor the PHI and select speculation into a separate rewriter. ThisChandler Carruth2012-10-011-263/+294
* Refactor the PartitionUse structure to actually use the Use* instead ofChandler Carruth2012-10-011-85/+79
* Fix a somewhat surprising miscompile where code relying on an ABIChandler Carruth2012-09-291-3/+13
* Analogous fix to memset and memcpy rewriting. Don't have a test caseChandler Carruth2012-09-261-0/+16
* When rewriting the pointer operand to a load or store which hasChandler Carruth2012-09-261-0/+6
* Teach all of the loads, stores, memsets and memcpys created by theChandler Carruth2012-09-261-32/+49
* Revert the business end of r164636 and try again. I'll come in again. ;]Chandler Carruth2012-09-261-8/+8
* Don't drop the alignment on a memcpy intrinsic when producing a store. This isNick Lewycky2012-09-251-2/+3
* Revert the business end of r164634, and replace it with a different fix. TheNick Lewycky2012-09-251-7/+4
* Don't try to promote the same alloca twice. Fixes PR13916!Nick Lewycky2012-09-251-0/+6
* Fix a case where SROA did not correctly detect dead PHI or selects dueChandler Carruth2012-09-251-5/+10
* Fix a crash in SROA. This was reported independently by Takumi andChandler Carruth2012-09-251-12/+7