aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/CodeExtractor.cpp
AgeCommit message (Expand)Author
2013-02-09Remove #includes from the commonly used LoopInfo.h.Jakub Staszak
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-10Have 'addFnAttr' take the attribute enum value. Then have it build the attrib...Bill Wendling
2012-06-22Fixed r158979.Stepan Dyatkovskiy
2012-05-04Teach the code extractor how to extract a sequence of blocks fromChandler Carruth
2012-05-04Factor the computation of input and output sets into a public interfaceChandler Carruth
2012-05-04Rather than trying to gracefully handle input sequences with repeatedChandler Carruth
2012-05-04Fix a goof with my previous commit by completely returning when weChandler Carruth
2012-05-04Hoist a safety assert from the extraction method into the constructionChandler Carruth
2012-05-04Move the CodeExtractor utility to a dedicated header file / source file,Chandler Carruth
2012-05-03Factor the logic for testing whether a basic block is viable for codeChandler Carruth
2012-03-08Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:Stepan Dyatkovskiy
2012-02-01SwitchInst refactoring.Stepan Dyatkovskiy
2011-09-20Use ArrayRef instead of an explicit 'const std::vector &'.Bill Wendling
2011-09-20Use ArrayRef instead of 'const std::vector' to pass around the list of basic ...Bill Wendling
2011-09-20Fix comments.Bill Wendling
2011-09-19Revert r140083 and r140084 until buildbots can be fixed.Bill Wendling
2011-09-19If we are extracting a basic block that ends in an invoke call, we must alsoBill 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-15Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad
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-07-11De-constify Types in FunctionType::get().Jay Foad
2011-04-15Fix a ton of comment typos found by codespell. Patch byChris Lattner
2011-03-30Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad
2011-03-30(Almost) always call reserveOperandSpace() on newly created PHINodes.Jay Foad
2010-09-10typoesGabor Greif
2010-04-07rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner
2010-01-10Fix nondeterministic behavior.Julien Lerouge
2010-01-09Fix nondeterministic behavior.Julien Lerouge
2010-01-05Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer
2010-01-05Change errs() to dbgs().David Greene
2009-10-25Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky
2009-10-25Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky
2009-08-25Comment-ify.Owen Anderson
2009-08-25Switch to SmallVector.Owen Anderson
2009-08-25Pull out this predicate loop into a helper function.Owen Anderson
2009-08-25Handle a corner case when extracing code regions where one of the immediate s...Owen Anderson
2009-08-24When extracting SEME regions of code, the extractor needs to update the domin...Owen Anderson
2009-08-23eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson
2009-08-05Privatize the StructType table, which unfortunately involves routing contexts...Owen Anderson
2009-07-31Move a few more APIs back to 2.5 forms. The only remaining ones left to chan...Owen Anderson
2009-07-29Move types back to the 2.5 API.Owen Anderson
2009-07-24Revert the ConstantInt constructors back to their 2.5 forms where possible, t...Owen Anderson
2009-07-24Switch to getNameStr().Daniel Dunbar
2009-07-22Get rid of the Pass+Context magic.Owen Anderson