aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/SimplifyCFG.cpp
AgeCommit message (Expand)Author
2010-08-16Instead, teach SimplifyCFG to trim non-address-taken blocks fromDan Gohman
2010-08-14Teach SimplifyCFG how to simplify indirectbr instructions.Dan Gohman
2010-07-22pass dereferenced iterator to dyn_castGabor Greif
2010-07-15Remove unneeded check, and correct style.Owen Anderson
2010-07-14Extend SimplifyCFG's common-destination folding heuristic to allow a singleOwen Anderson
2010-07-12cache dereferenced iteratorsGabor Greif
2010-07-09cache result of operator*Gabor Greif
2010-03-30Fix a grammaro.Dan Gohman
2010-03-30fix two cases where the arguments were extracted from the wrong range out of ...Gabor Greif
2010-03-14Make returns more consistent with others.Bill Wendling
2010-02-16There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands
2010-02-15Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands
2010-02-05Teach SimplifyCFG about magic pointer constants.Jakob Stoklund Olesen
2010-01-05Convert a ton of simple integer type equality tests to the new predicate.Benjamin Kramer
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
2010-01-05Remove dead debug info intrinsics.Devang Patel
2009-12-02Move EliminateDuplicatePHINodes() from SimplifyCFG.cpp to Local.cppJim Grosbach
2009-11-19Make EliminateDuplicatePHINodes() available as a utility functionJim Grosbach
2009-11-10refactor TryToSimplifyUncondBranchFromEmptyBlock out of SimplifyCFG.Chris Lattner
2009-11-06remove a bunch of extraneous LLVMContext argumentsChris Lattner
2009-10-30Add a comment about a missed opportunity.Dan Gohman
2009-10-30Teach SimplifyCFG how to eliminate duplicate PHI nodes within a block.Dan Gohman
2009-10-13change simplifycfg to not duplicate 'unwind' instructions. HopefullyChris Lattner
2009-09-27Instruction::clone does not need to take an LLVMContext&. Remove that andNick Lewycky
2009-08-25Rename Instruction::isIdenticalTo to Instruction::isIdenticalToWhenDefined,Dan Gohman
2009-08-23Fix -Asserts warnings.Daniel Dunbar
2009-08-23eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner
2009-08-16Fix for PR3016: detect the tricky case, where there are Eli Friedman
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson
2009-08-12Remove a bunch more now-unnecessary Context arguments.Dan Gohman
2009-07-30Move more code back to 2.5 APIs.Owen Anderson
2009-07-26Remove Value::getName{Start,End}, the last of the old Name APIs.Daniel Dunbar
2009-07-25More migration to raw_ostream, the water has dried up around the iostream hole.Daniel Dunbar
2009-07-24Revert the ConstantInt constructors back to their 2.5 forms where possible, t...Owen Anderson
2009-07-22Get rid of the Pass+Context magic.Owen Anderson
2009-07-17Replace isTrapping with a new, similar method called Eli Friedman
2009-07-13Move more functionality over to LLVMContext.Owen Anderson
2009-07-09This started as a small change, I swear. Unfortunately, lots of things call ...Owen Anderson
2009-07-06"LLVMContext* " --> "LLVMContext *"Owen Anderson
2009-07-06Thread LLVMContext through the constant folding APIs, which touches a lot of ...Owen Anderson
2009-07-05More LLVMContext-ification.Owen Anderson
2009-06-27Teach LoopSimplify how to merge multiple loop exits into a single exit,Dan Gohman
2009-06-15Fix the crash in this test. This is basically the sameDale Johannesen
2009-06-04Split the Add, Sub, and Mul instruction opcodes into separateDan Gohman
2009-05-14Reuse existing getUnderlyingObject instead ofDale Johannesen
2009-05-13Handle some additonal cases of external weak globals.Dale Johannesen
2009-05-13Don't generate a select whose operand is load of a weakDale Johannesen
2009-05-06Simplify code by using SmallVector's pop_back_val() instead ofDan Gohman
2009-03-19Fix comment typo.Dale Johannesen