aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SjLjEHPrepare.cpp
AgeCommit message (Expand)Author
2013-03-08Revert r176154 in favor of a better approach.Bill Wendling
2013-01-11Split TargetLowering into a CodeGen and a SelectionDAG part.Benjamin Kramer
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-10-08Move TargetData to DataLayout.Micah Villmow
2012-09-03IRBuilderify the SjlLjEHPrepare pass.Benjamin Kramer
2012-06-29Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.hChandler Carruth
2012-03-16Revert r152705, which reapplied r152486 as this appears to be causing failuresChad Rosier
2012-03-14Reapply r152486 with a fix for the nightly testers.Bill Wendling
2012-03-13s/SjLjEHPass/SjLjEHPrepare/Bill Wendling
2012-03-12Revert due to nightly test failures.Bill Wendling
2012-03-10Implement a more intelligent way of spilling uses across an invoke boundary.Bill Wendling
2012-01-27Place the GEP instructions nearer to the instructions which use them.Bill Wendling
2012-01-07Missing raw_ostream.h breaks MSVC build.Andrew Trick
2012-01-06Tracing to help investigate issues with SjLj spill code.Andrew Trick
2011-12-14Reapply r146481 with a fix to create the Builder value in the correct place andBill Wendling
2011-12-14Revert r146481 to review possible miscompilations.Bill Wendling
2011-12-13Avoid using the 'insertvalue' instruction here.Bill Wendling
2011-11-16Record landing pads with a SmallSetVector to avoid multiple entries.Bob Wilson
2011-11-16Update the SP in the SjLj jmpbuf whenever it changes. <rdar://problem/10444602>Bob Wilson
2011-10-24Cleanup. Get rid of the old SjLj EH lowering code. No functionality change.Bill Wendling
2011-10-21Make sure that the landing pads themselves have no PHI instructions in them.Bill Wendling
2011-10-17Now Igor, throw the switch...give my creation life!Bill Wendling
2011-10-08Use the code that lowers the arguments and spills any values which are aliveBill Wendling
2011-10-05Fix comment to reflect the new EH stuff.Bill Wendling
2011-10-04Generic cleanup.Bill Wendling
2011-10-03Don't carry over the dispatchsetup hack from the old system.Bill Wendling
2011-10-03Move the grabbing of the jump buffer into the caller function, eliminating th...Bill Wendling
2011-09-28Have the SjLjEHPrepare pass do some more heavy lifting.Bill Wendling
2011-09-28Bitcast the alloca to an i8* to match the intrinsic's signature.Bill Wendling
2011-09-28Create and use an llvm.eh.sjlj.functioncontext intrinsic.Bill Wendling
2011-09-28In the new EH model, setup the function context and the call site info.Bill Wendling
2011-09-12Introduce a bit of a hack.Bill Wendling
2011-08-27These splits should be done whether they are critical edges or not.Bill Wendling
2011-08-26Split the landing pad block only if it's a critical edge. Also intelligentlyBill Wendling
2011-08-24Add the sentinal "no handle" value to the ResumeInst.Bill Wendling
2011-08-23Don't replace *all* uses with the new stuff.Bill Wendling
2011-08-23Look at the end of the entry block for an invoke.Bill Wendling
2011-08-22Split the landing pad's edge. Then for all uses of a landingpad instruction'sBill Wendling
2011-08-22Some whitespace fixes and #include reordering.Bill Wendling
2011-07-25Convert GetElementPtrInst to use ArrayRef.Jay Foad
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner
2011-07-12Second attempt at de-constifying LLVM Types in FunctionType::get(),Jay Foad
2011-07-12Revert r134893 and r134888 (and related patches in other trees). It was causingBill Wendling
2011-07-11De-constify Types in StructType::get() and TargetData::getIntPtrType().Jay Foad
2011-06-18fix the varargs version of StructType::get to not require an LLVMContext, mak...Chris Lattner
2011-05-11Give the 'eh.sjlj.dispatchsetup' intrinsic call the value coming from the setjmpBill Wendling
2011-04-11The default of the dispatch switch statement was to branch to a BB that executedBill Wendling
2011-04-05Revamp the SjLj "dispatch setup" intrinsic.Bill Wendling
2011-01-07Early exit if we don't have invokes. The 'Unwinds' vector isn't modified unlessBill Wendling