summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/CodeExtractor.cpp
AgeCommit message (Expand)AuthorFilesLines
2012-10-10Have 'addFnAttr' take the attribute enum value. Then have it build the attrib...Bill Wendling1-1/+1
2012-06-22Fixed r158979.Stepan Dyatkovskiy1-1/+2
2012-05-04Teach the code extractor how to extract a sequence of blocks fromChandler Carruth1-7/+32
2012-05-04Factor the computation of input and output sets into a public interfaceChandler Carruth1-35/+34
2012-05-04Rather than trying to gracefully handle input sequences with repeatedChandler Carruth1-1/+1
2012-05-04Fix a goof with my previous commit by completely returning when weChandler Carruth1-1/+1
2012-05-04Hoist a safety assert from the extraction method into the constructionChandler Carruth1-9/+13
2012-05-04Move the CodeExtractor utility to a dedicated header file / source file,Chandler Carruth1-161/+107
2012-05-03Factor the logic for testing whether a basic block is viable for codeChandler Carruth1-14/+21
2012-03-08Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:Stepan Dyatkovskiy1-1/+2
2012-02-01SwitchInst refactoring.Stepan Dyatkovskiy1-3/+3
2011-09-20Use ArrayRef instead of an explicit 'const std::vector &'.Bill Wendling1-3/+3
2011-09-20Use ArrayRef instead of 'const std::vector' to pass around the list of basic ...Bill Wendling1-8/+10
2011-09-20Fix comments.Bill Wendling1-4/+4
2011-09-19Revert r140083 and r140084 until buildbots can be fixed.Bill Wendling1-8/+1
2011-09-19If we are extracting a basic block that ends in an invoke call, we must alsoBill Wendling1-1/+8
2011-07-25Convert GetElementPtrInst to use ArrayRef.Jay Foad1-5/+4
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-1/+1
2011-07-12Second attempt at de-constifying LLVM Types in FunctionType::get(),Jay Foad1-3/+3
2011-07-12Revert r134893 and r134888 (and related patches in other trees). It was causingBill Wendling1-3/+3
2011-07-11De-constify Types in StructType::get() and TargetData::getIntPtrType().Jay Foad1-1/+1
2011-07-11De-constify Types in FunctionType::get().Jay Foad1-2/+2
2011-04-15Fix a ton of comment typos found by codespell. Patch byChris Lattner1-1/+1
2011-03-30Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad1-3/+2
2011-03-30(Almost) always call reserveOperandSpace() on newly created PHINodes.Jay Foad1-3/+4
2010-09-10typoesGabor Greif1-2/+2
2010-04-07rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner1-1/+1
2010-01-10Fix nondeterministic behavior.Julien Lerouge1-9/+3
2010-01-09Fix nondeterministic behavior.Julien Lerouge1-6/+7
2010-01-05Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer1-1/+1
2010-01-05Change errs() to dbgs().David Greene1-7/+7
2009-10-25Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky1-1/+0
2009-10-25Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky1-1/+1
2009-08-25Comment-ify.Owen Anderson1-0/+3
2009-08-25Switch to SmallVector.Owen Anderson1-2/+2
2009-08-25Pull out this predicate loop into a helper function.Owen Anderson1-11/+15
2009-08-25Handle a corner case when extracing code regions where one of the immediate s...Owen Anderson1-2/+20
2009-08-24When extracting SEME regions of code, the extractor needs to update the domin...Owen Anderson1-2/+18
2009-08-23eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner1-7/+8
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson1-23/+31
2009-08-05Privatize the StructType table, which unfortunately involves routing contexts...Owen Anderson1-2/+2
2009-07-31Move a few more APIs back to 2.5 forms. The only remaining ones left to chan...Owen Anderson1-10/+6
2009-07-29Move types back to the 2.5 API.Owen Anderson1-5/+4
2009-07-24Revert the ConstantInt constructors back to their 2.5 forms where possible, t...Owen Anderson1-7/+7
2009-07-24Switch to getNameStr().Daniel Dunbar1-4/+4
2009-07-22Get rid of the Pass+Context magic.Owen Anderson1-19/+19
2009-07-15Revert yesterday's change by removing the LLVMContext parameter to AllocaInst...Owen Anderson1-3/+2
2009-07-14Move EVER MORE stuff over to LLVMContext.Owen Anderson1-2/+3
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin1-1/+3