When extracting a basic block that ends in an 'invoke' instruction, we need to
[oota-llvm.git] / lib / Transforms /
2011-09-20 Bill WendlingWhen extracting a basic block that ends in an 'invoke...
2011-09-20 Bill WendlingUse ArrayRef instead of an explicit 'const std::vector &'.
2011-09-20 Devang PatelIf simple ownership works then friendship is not required.
2011-09-20 Bill WendlingUse ArrayRef instead of 'const std::vector' to pass...
2011-09-20 Devang PatelUpdate GCOVLines to provide interfaces to write line...
2011-09-20 Bill WendlingFix comments.
2011-09-20 Devang PatelUpdate comment.
2011-09-20 Devang PatelUse StringRef instead of std::string.
2011-09-20 Devang PatelEliminate unnecessary copy of FileName from GCOVLines.
2011-09-20 Devang PatelThere is no need to write a local utility routine to...
2011-09-19 Bill WendlingRevert r140083 and r140084 until buildbots can be fixed.
2011-09-19 Bill WendlingIf we are extracting a basic block that ends in an...
2011-09-19 Eli FriedmanFix an infinite loop where a transform in InstCombiner...
2011-09-19 Andrew Trick[indvars] Fix PR10946: SCEV cannot handle Vector IVs.
2011-09-15 Andrew TrickReapply r139759. Disable IV rewriting by default. See...
2011-09-15 Eli FriedmanMake demanded-elt simplification for shufflevector...
2011-09-14 Dan GohmanDon't mark objc_retainBlock as nounwind. It calls user...
2011-09-14 Dan Gohmanobjc_retainBlock is not NoModRef because it can update...
2011-09-13 Andrew Trick[indvars] Revert r139579 until 401.bzip -arch i386...
2011-09-13 Andrew TrickDisable IV rewriting by default. See PR10916.
2011-09-13 Andrew Trick[indvars] Fix bugs in floating point IV range checks...
2011-09-13 Eli FriedmanAdd comment to clarify the behavior of a helper in...
2011-09-13 Eli FriedmanCorrect grammar.
2011-09-12 Eli FriedmanChange a bunch of isVolatile() checks to check for...
2011-09-12 Andrew TrickRename -disable-iv-rewrite to -enable-iv-rewrite=false...
2011-09-10 Andrew Trick[disable-iv-rewrite] Allow WidenIV to handle NSW/NUW...
2011-09-09 Andrew TrickComment formatting.
2011-09-06 Andrew TrickAdd -verify-indvars for imperfect SCEV trip count verif...
2011-09-06 Devang PatelUse IRBuilder.
2011-09-06 Owen AndersonTry again at r138809 (make DSE more aggressive in remov...
2011-09-06 Duncan SandsSplit the init.trampoline intrinsic, which currently...
2011-09-05 Duncan SandsDelete trivial landing pads that just continue unwindin...
2011-09-04 Bill WendlingUse Duncan's patch to delete the instructions in revers...
2011-09-02 Bill WendlingUpdate comments to reflect reality.
2011-09-02 Andrew TrickEnable SCEV-based unrolling by default.
2011-09-02 Jakub StaszakCompare type size instead of type _store_ size to make...
2011-09-01 Bill WendlingReduce indentation. No functionality change.
2011-09-01 Bill WendlingChange worklist driven deletion to be an iterative...
2011-09-01 Eli FriedmanFix an issue with the IR sink pass found by inspection...
2011-09-01 Bill WendlingResubmit with fix. Properly remove the instructions...
2011-09-01 Bill WendlingSubmitted this too early.
2011-09-01 Bill WendlingDon't DCE the landingpad instruction.
2011-08-31 Bill WendlingMake sure we aren't deleting the landingpad instruction.
2011-08-30 Rafael EspindolaRemove the old tail duplication pass. It is not used...
2011-08-30 Owen AndersonSpeculatively revert r138809 in an attempt to fix Drago...
2011-08-30 Owen AndersonWhen walking backwards to eliminate final stores to...
2011-08-29 Nadav RotemFixes following the CR by Chris and Duncan:
2011-08-28 Nadav RotemBitcasts are transitive. Bitcast-Bitcast-X becomes...
2011-08-26 Bill WendlingDon't sink landingpad instructions during ind-var simpl...
2011-08-26 Benjamin KramerAddress review comments.
2011-08-26 Benjamin KramerSimplifyCFG: If we have a PHI node that can evaluate...
2011-08-25 Bill WendlingLSR wants to split the landing pad's critical edge...
2011-08-25 Bill WendlingWhen inserting new instructions, use getFirstInsertionP...
2011-08-24 Bill WendlingSkip the landingpad instruction when determining the...
2011-08-24 Bill WendlingUse getFirstInsertionPt instead of getFirstNonPHI so...
2011-08-24 Rafael EspindolaFix a crashing bug in SplitBlock when it is called...
2011-08-22 Dan GohmanAdd a comment.
2011-08-22 Dan GohmanConstant pointers to objects don't need reference counting.
2011-08-19 Bill WendlingIf we're splitting the landing pad block and assigning...
2011-08-19 Bill WendlingThe landingpad instruction isn't dead simply because...
2011-08-19 Benjamin KramerMake a bunch of symbols private.
2011-08-19 Benjamin KramerC API functions must be able to see their extern "C...
2011-08-19 Dan GohmanTrack a retain+release nesting level independently...
2011-08-19 Bill WendlingIntelligently split the landing pad block.
2011-08-19 Bill WendlingAdd SplitLandingPadPredecessors().
2011-08-18 Bill WendlingUse 'getFirstInsertionPt' when trying to insert new...
2011-08-18 Dan GohmanMake it clear that this code is iterating in reverse...
2011-08-18 Bill WendlingRevert r137871. The loop simplify pass should require...
2011-08-18 Bill WendlingSplit out the updating of PHI nodes after splitting...
2011-08-18 Bill WendlingUse this fantzy ArrayRef thing to pass in the list...
2011-08-18 Nick LewyckyThe edge from DISubprogram to DICompileUnit has been...
2011-08-18 Bill WendlingUse static instead of anonymous namespace.
2011-08-18 Bill WendlingSplit out the analysis updating code into a helper...
2011-08-18 Devang PatelDramatically speedup codegen prepare by a) avoiding...
2011-08-17 Devang PatelDo not use DebugInfoFinder. Extract debug info directly...
2011-08-17 Eli FriedmanAtomic load/store handling for the passes using memdep...
2011-08-17 Bill WendlingDisable PRE for landing pads.
2011-08-17 Bill WendlingIncrement the insertion iterator to beyond the landingp...
2011-08-17 Bill WendlingDon't optimize the landing pad exit block.
2011-08-17 Bill WendlingAssert that we aren't trying to split the critical...
2011-08-17 Bill WendlingRevert r137655. There is some question about whether...
2011-08-17 Eli FriedmanSilly mistake from r137777; restore significant isStruc...
2011-08-16 Eli FriedmanA bunch of misc fixes to SCCPSolver::ResolvedUndefsIn...
2011-08-16 Eli FriedmanMinor bug in SCCP found by inspection. (I don't think...
2011-08-16 Bill WendlingUse the getFirstInsertionPt() method instead of getFirs...
2011-08-16 Bill WendlingI think there was some confusion about what I meant...
2011-08-16 David ChisnallAdd a mechanism for optimisation plugins to register...
2011-08-16 Bill WendlingA few places where we want to skip the landingpad instr...
2011-08-16 Eli FriedmanRevert a bit of r137667; the logic in question can...
2011-08-16 Eli FriedmanAfter talking with Bill, it seems like the LandingPad...
2011-08-16 Eli FriedmanMinor comment fixes.
2011-08-15 Eli FriedmanUpdate SimplifyCFG for atomic operations.
2011-08-15 Eli FriedmanAdd comments and test for atomic load/store and mem2reg.
2011-08-15 Bill WendlingIn places where it's using "getFirstNonPHI", skip the...
2011-08-15 Bill WendlingDon't sink the instruction to before a landingpad instr...
2011-08-15 Eli FriedmanUpdate inter-procedural optimizations for atomic load...
2011-08-15 Eli FriedmanUpdate instcombine for atomic load/store.
2011-08-15 Bill WendlingDuncan pointed out that the LandingPadInst might read...
2011-08-15 Eli FriedmanFix llvm::CloneModule to correctly clone globals. ...
2011-08-15 Eli FriedmanAtomic load/store support in LICM.
next