change TimerGroup to keep a linked list of active timers
[oota-llvm.git] / lib / Transforms / Utils /
2010-03-25 Gabor Greifrename pred_const_iterator to const_pred_iterator for...
2010-03-25 Gabor Greifrename use_const_iterator to const_use_iterator for...
2010-03-24 Eric ChristopherTemporarily revert this, it's causing an issue with...
2010-03-24 Gabor GreifFinally land the InvokeInst operand reordering.
2010-03-24 Gabor Greifcache result of UI.getOperandNo() instead of calling...
2010-03-23 Chris Lattneradd some accessors to callsite/callinst/invokeinst...
2010-03-23 Evan ChengTeach simplify libcall to transform __strcpy_chk to...
2010-03-22 Evan ChengFix 80 col violation.
2010-03-22 Gabor Greifbacking out r99170 because it still fails on clang...
2010-03-22 Gabor GreifNow that hopefully all direct accesses to InvokeInst...
2010-03-19 Gabor Greifback out r98957, it broke smooshlab.apple.com:8010...
2010-03-19 Gabor GreifRecommit r80858 again (which has been backed out in...
2010-03-15 Devang PatelSkip debug info intrinsics.
2010-03-14 Bill WendlingMake returns more consistent with others.
2010-03-12 Benjamin KramerAdd a virtual destructor and give vtable a home.
2010-03-12 Benjamin KramerFactor checked library call optimization into a common...
2010-03-11 Benjamin Kramerstpcpy is so similar to strcpy, it doesn't deserve...
2010-03-11 Eric ChristopherLower stpcpy_chk when possible.
2010-03-11 Eric ChristopherFix typo.
2010-03-11 Eric ChristopherAdd strncpy libcall creator. Use it when it should...
2010-03-10 Dan GohmanAdd a DominatorTree argument to isLCSSA so that it...
2010-03-10 Dan GohmanFix a comment.
2010-03-08 Devang PatelAvoid using DIDescriptor.isNull().
2010-03-08 Devang PatelRevert r97947.
2010-03-08 Devang PatelAvoid using DIDescriptor.isNull().
2010-03-05 Ted KremenekUpdate CMake build.
2010-03-05 Eric ChristopherMove SimplifyLibCalls's LibCall builders to a separate...
2010-03-01 Dan GohmanAdd some debug output to LoopSimplify.
2010-02-25 Dan GohmanMake LoopSimplify change conditional branches in loop...
2010-02-16 Bob WilsonRename SuccessorNumber to GetSuccessorNumber.
2010-02-16 Bob WilsonRefactor to share code to find the position of a basic...
2010-02-16 Duncan SandsThere are two ways of checking for a given type, for...
2010-02-15 Chris Lattnerfix PR6305 by handling BlockAddress in a helper function
2010-02-15 Duncan SandsUniformize the names of type predicates: rather than...
2010-02-13 Chris LattnerSpeed up codegen prepare from 3.58s to 0.488s.
2010-02-13 Chris LattnerPHINode::getBasicBlockIndex is O(n) in the number of...
2010-02-13 Chris Lattneriterate over preds using PHI information when available...
2010-02-05 Jakob Stoklund OlesenTeach SimplifyCFG about magic pointer constants.
2010-02-05 Dan GohmanUse a SmallSetVector instead of a SetVector; this code...
2010-02-01 Bob WilsonFix pr6198 by moving the isSized() check to an outer...
2010-01-30 Bob WilsonCheck alignment of loads when deciding whether it is...
2010-01-29 Bob WilsonUse uint64_t instead of unsigned for offsets and sizes.
2010-01-29 Bob WilsonImprove isSafeToLoadUnconditionally to recognize that...
2010-01-29 Victor Hernandezmem2reg erases the dbg.declare intrinsics that it conve...
2010-01-27 Bob WilsonAvoid creating redundant PHIs in SSAUpdater::GetValueIn...
2010-01-27 Benjamin KramerDon't bother with sprintf, just pass the Twine through.
2010-01-27 Chris Lattnersome cleanups.
2010-01-27 Chris Lattnerno need to check for null
2010-01-27 Victor HernandezWhen converting dbg.declare to dbg.value, attach promot...
2010-01-26 Victor HernandezAvoid extra calls to MD->getNumOperands()
2010-01-26 Victor HernandezSwitch AllocaDbgDeclares to SmallVector and don't leak...
2010-01-26 Victor HernandezIn mem2reg, for all alloca/stores that get promoted...
2010-01-25 Victor HernandezRevert r94260 until findDbgDeclare() is made more efficient
2010-01-24 Chris Lattnermake -fno-rtti the default unless a directory builds...
2010-01-23 Victor HernandezIn mem2reg, for all alloca/stores that get promoted...
2010-01-22 Victor HernandezKeep ignoring pointer-to-pointer bitcasts
2010-01-22 Chris LattnerStop building RTTI information for *most* llvm librarie...
2010-01-21 Victor HernandezNo need to look through bitcasts for DbgInfoIntrinsic
2010-01-21 Victor HernandezDbgInfoIntrinsic no longer appear in an instruction...
2010-01-21 Victor HernandezDbgInfoIntrinsics no longer appear in an instruction...
2010-01-21 Chris LattnerIt turns out that this #include is needed because otherwise
2010-01-21 Chris Lattnerunbreak the build, apparently without this transformuti...
2010-01-21 Chris Lattnertidy up
2010-01-21 Victor HernandezDon't need to include IntrinsicInst.h any more
2010-01-21 Victor HernandezNo need to map NULL operands of metadata
2010-01-20 Victor HernandezSwitch Elts from vector to SmallVector
2010-01-20 Victor HernandezMap operands of all function-local metadata, not just...
2010-01-18 Devang PatelWhile mapping llvm.dbg.declare intrinsic manually map...
2010-01-15 Bob WilsonFix a comment typo.
2010-01-12 Chris Lattneradd a helper function.
2010-01-10 Julien LerougeFix nondeterministic behavior.
2010-01-09 Julien LerougeFix nondeterministic behavior.
2010-01-05 Benjamin KramerConvert a ton of simple integer type equality tests...
2010-01-05 Dan GohmanNick Lewycky pointed out that this code makes changes...
2010-01-05 Dan GohmanUse do+while instead of while for loops which obviously...
2010-01-05 Dan GohmanMake RecursivelyDeleteTriviallyDeadInstructions,
2010-01-05 Benjamin KramerAvoid going through the LLVMContext for type equality...
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 Devang PatelRemove dead debug info intrinsics.
2009-12-31 Chris Lattnerfix Analysis/DebugInfo.h to not include Metadata.h...
2009-12-31 Chris Lattnerrename "elements" of metadata to "operands". "Elements...
2009-12-29 Benjamin KramerUse an array instead of a SmallVector.
2009-12-29 Chris Lattnerprune #includes.
2009-12-29 Chris LattnerFinal step in the metadata API restructuring: move the
2009-12-29 Chris Lattnerremove useless argument.
2009-12-28 Chris LattnerThis is a major cleanup of the instruction metadata...
2009-12-28 Chris Lattnerrename getMDKind -> getMDKindID, make it autoinsert...
2009-12-21 Chris Lattnerimprove indentation avoid a pointless conversion from...
2009-12-21 Chris Lattnerrevert r89298, which was committed without a testcase...
2009-12-21 Chris Lattnerfix PR5837 by having SSAUpdate reuse phi nodes for the
2009-12-18 Dan GohmanAdd Loop contains utility methods for testing whether...
2009-12-18 Dan GohmanUpdate a comment.
2009-12-15 Chris LattnerRemove isPod() from DenseMapInfo, splitting it out...
next