aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/LowerInvoke.cpp
AgeCommit message (Expand)AuthorFilesLines
2022-11-23[NFC] Replaced BB->getInstList().{erase(),pop_front(),pop_back()} with eraseF...Vasileios Porpodas1-1/+1
2022-03-01Cleanup includes: TransformsUtilsserge-sans-paille1-2/+0
2020-12-29[Transforms/Utils] Construct SmallVector with iterator ranges (NFC)Kazu Hirata1-1/+1
2020-04-27[IR] Replace all uses of CallBase::getCalledValue() with getCalledOperand().Craig Topper1-1/+1
2019-11-13Sink all InitializePasses.h includesReid Kleckner1-0/+1
2019-02-01[opaque pointer types] Pass function types to CallInst creation.James Y Knight1-1/+2
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-05-09Support a funclet operand bundle in LowerInvokeHeejin Ahn1-2/+4
2018-03-28Transforms: Introduce Transforms/Utils.h rather than spreading the declaratio...David Blaikie1-1/+1
2016-08-12[PM] Port LowerInvoke to the new pass managerMichael Kuperstein1-17/+32
2016-06-26Apply clang-tidy's modernize-loop-convert to most of lib/Transforms.Benjamin Kramer1-4/+4
2016-04-18[NFC] Header cleanupMehdi Amini1-2/+1
2015-10-13TransformUtils: Remove implicit ilist iterator conversions, NFCDuncan P. N. Exon Smith1-1/+1
2014-04-22[Modules] Fix potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-1/+2
2014-03-20Remove LowerInvoke's obsolete "-enable-correct-eh-support" optionMark Seaborn1-507/+8
2014-03-09[C++11] Add range based accessors for the Use-Def chain of a Value.Chandler Carruth1-7/+6
2014-03-05[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper1-3/+3
2013-10-01Remove several unused variables.Rafael Espindola1-1/+0
2013-06-19Access the TargetLoweringInfo from the TargetMachine object instead of cachin...Bill Wendling1-11/+9
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-6/+6
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-4/+4
2012-10-19revert r166264 because the LTO build is still failingNadav Rotem1-19/+13
2012-10-19recommit the patch that makes LSR and LowerInvoke use the TargetTransform int...Nadav Rotem1-13/+19
2012-10-18Temporarily revert the TargetTransform changes.Bob Wilson1-19/+13
2012-10-10Add a new interface to allow IR-level passes to access codegen-specific infor...Nadav Rotem1-13/+19
2012-02-06[unwind removal] We no longer have 'unwind' instructions being generated, soBill Wendling1-27/+1
2011-08-25When inserting new instructions, use getFirstInsertionPt instead ofBill Wendling1-4/+4
2011-08-12switch to use the new api for structtypes.Chris Lattner1-1/+1
2011-08-09There is only one instance of this placeholder being created. Just use thatBill Wendling1-6/+6
2011-08-09Remove an instance where the 'unwind' instruction was created.Bill Wendling1-2/+10
2011-07-25Convert GetElementPtrInst to use ArrayRef.Jay Foad1-6/+3
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner1-3/+3
2011-07-15Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad1-5/+3
2011-07-09Land the long talked about "type system rewrite" patch. ThisChris Lattner1-15/+7
2010-10-19Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson1-1/+3
2010-10-18Transfer debug loc to lowered call.Devang Patel1-0/+2
2010-10-07Now with fewer extraneous semicolons!Owen Anderson1-1/+1
2010-09-24Get rid of pop_macro warnings on MSVC.Michael J. Spencer1-9/+10
2010-08-23Now that PassInfo and Pass::ID have been separated, move the rest of the pass...Owen Anderson1-2/+3
2010-08-06Eliminate PromoteMemoryToRegisterID; just use addPreserved("mem2reg")Dan Gohman1-1/+1
2010-08-06Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson1-2/+2
2010-08-06Revert r110396 to fix buildbots.Owen Anderson1-2/+2
2010-08-05Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson1-2/+2
2010-06-30lowerinvoke needs to handle aggregate function args like sjlj eh does.Jim Grosbach1-4/+4
2010-06-01Remove unused codeJim Grosbach1-64/+0
2010-06-01fix think-oJim Grosbach1-6/+2
2010-06-01Simplify things a bit more. Fix prototype to use SmallVectorImpl andJim Grosbach1-17/+17
2010-06-01mirror of r105280 changes for LowerInvoke, which uses the same basic logic hereJim Grosbach1-10/+27
2010-06-01Use SmallVector instead of std::vector.Jim Grosbach1-12/+13
2010-04-26Fix a problem that lower invoke has with allocas (PR6694), and Chris Lattner1-10/+38