aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms
AgeCommit message (Expand)Author
2011-09-06Split the init.trampoline intrinsic, which currently combines GCC'sDuncan Sands
2011-09-05Delete trivial landing pads that just continue unwinding the caughtDuncan Sands
2011-09-04Use Duncan's patch to delete the instructions in reverse order (minus the lan...Bill Wendling
2011-09-02Update comments to reflect reality.Bill Wendling
2011-09-02Enable SCEV-based unrolling by default.Andrew Trick
2011-09-02Compare type size instead of type _store_ size to make sure that BitCastInstJakub Staszak
2011-09-01Reduce indentation. No functionality change.Bill Wendling
2011-09-01Change worklist driven deletion to be an iterative process.Bill Wendling
2011-09-01Fix an issue with the IR sink pass found by inspection. (I'm not sure anyone...Eli Friedman
2011-09-01Resubmit with fix. Properly remove the instructions except for landingpad, wh...Bill Wendling
2011-09-01Submitted this too early.Bill Wendling
2011-09-01Don't DCE the landingpad instruction.Bill Wendling
2011-08-31Make sure we aren't deleting the landingpad instruction.Bill Wendling
2011-08-30Remove the old tail duplication pass. It is not used and is unable to updateRafael Espindola
2011-08-30Speculatively revert r138809 in an attempt to fix DragonEgg.Owen Anderson
2011-08-30When walking backwards to eliminate final stores to allocas at the end of a f...Owen Anderson
2011-08-29Fixes following the CR by Chris and Duncan:Nadav Rotem
2011-08-28Bitcasts are transitive. Bitcast-Bitcast-X becomes Bitcast-X.Nadav Rotem
2011-08-26Don't sink landingpad instructions during ind-var simplification.Bill Wendling
2011-08-26Address review comments.Benjamin Kramer
2011-08-26SimplifyCFG: If we have a PHI node that can evaluate to NULL and do a load or...Benjamin Kramer
2011-08-25LSR wants to split the landing pad's critical edge. Let it do it, but use theBill Wendling
2011-08-25When inserting new instructions, use getFirstInsertionPt instead ofBill Wendling
2011-08-24Skip the landingpad instruction when determining the insertion point.Bill Wendling
2011-08-24Use getFirstInsertionPt instead of getFirstNonPHI so that it skips to the properBill Wendling
2011-08-24Fix a crashing bug in SplitBlock when it is called on a block with noRafael Espindola
2011-08-22Add a comment.Dan Gohman
2011-08-22Constant pointers to objects don't need reference counting.Dan Gohman
2011-08-19If we're splitting the landing pad block and assigning it only one predecessor,Bill Wendling
2011-08-19The landingpad instruction isn't dead simply because it's value isn't used.Bill Wendling
2011-08-19Make a bunch of symbols private.Benjamin Kramer
2011-08-19C API functions must be able to see their extern "C" definitions, or it will ...Benjamin Kramer
2011-08-19Track a retain+release nesting level independently of theDan Gohman
2011-08-19Intelligently split the landing pad block.Bill Wendling
2011-08-19Add SplitLandingPadPredecessors().Bill Wendling
2011-08-18Use 'getFirstInsertionPt' when trying to insert new instructions during LICM.Bill Wendling
2011-08-18Make it clear that this code is iterating in reverse order through the array.Dan Gohman
2011-08-18Revert r137871. The loop simplify pass should require all exits from a loop thatBill Wendling
2011-08-18Split out the updating of PHI nodes after splitting the BB into a separateBill Wendling
2011-08-18Use this fantzy ArrayRef thing to pass in the list of predecessors.Bill Wendling
2011-08-18The edge from DISubprogram to DICompileUnit has been removed in recent versionsNick Lewycky
2011-08-18Use static instead of anonymous namespace.Bill Wendling
2011-08-18Split out the analysis updating code into a helper function. No intendedBill Wendling
2011-08-18Dramatically speedup codegen prepare by a) avoiding use of dominator tree and...Devang Patel
2011-08-17Do not use DebugInfoFinder. Extract debug info directly from llvm.dbg.cu name...Devang Patel
2011-08-17Atomic load/store handling for the passes using memdep (GVN, DSE, memcpyopt).Eli Friedman
2011-08-17Disable PRE for landing pads.Bill Wendling
2011-08-17Increment the insertion iterator to beyond the landingpad instruction.Bill Wendling
2011-08-17Don't optimize the landing pad exit block.Bill Wendling
2011-08-17Assert that we aren't trying to split the critical edge of a landing pad. DoingBill Wendling