Use 'static const char' instead of 'static const int'.
[oota-llvm.git] / lib / Transforms / Utils /
2007-05-02 Devang PatelUse 'static const char' instead of 'static const int'.
2007-05-01 Devang PatelDo not use typeinfo to identify pass in pass manager.
2007-04-25 Devang PatelMem2Reg does not need TargetData.
2007-04-25 Devang PatelRemove unused function argument.
2007-04-21 Owen AndersonFix a comment.
2007-04-20 Jeff CohenComment out usage of write() for now.
2007-04-20 Devang PatelAvoid recursion.
2007-04-20 Owen AndersonMove more passes to using ETForest instead of Dominator...
2007-04-18 Evan ChengRevert Owen's last check-in. This is breaking Mac OS...
2007-04-18 Owen AndersonUse new ETForest accessor.
2007-04-18 Owen AndersonUse ETForest instead of DominatorTree.
2007-04-17 Chris Lattnerremove use of BasicBlock::getNext
2007-04-17 Chris Lattnerremove use of Instruction::getNext
2007-04-16 Anton KorobeynikovRemoved tabs everywhere except autogenerated & external...
2007-04-15 Chris LattnerFix PR1335 and Transforms/Inline/2007-04-15-InlineEH.ll
2007-04-15 Owen AndersonRemove ImmediateDominator analysis. The same informati...
2007-04-14 Chris Lattneravoid copying sets and vectors around.
2007-04-12 Lauro Ramos VenancioImplement the "thread_local" keyword.
2007-04-09 Owen AndersonRe-constify things that don't break the build. Last...
2007-04-09 Owen AndersonUnconst-ify stuff that broke the build.
2007-04-09 Owen AndersonConst-ify some parameters, and some cosmetic cleanups...
2007-04-09 Owen AndersonTabs -> Spaces
2007-04-09 Owen AndersonImprove some _slow_ behavior introduced in my patches...
2007-04-09 Owen AndersonCleanup some from my DomSet-removal changes. Add a new
2007-04-08 Nick LewyckyRemove DominatorSet usage from LoopSimplify. Patch...
2007-04-07 Owen AndersonAdd DomSet back, and revert the changes to LoopSimplify...
2007-04-07 Owen AndersonCompletely purge DomSet from LoopSimplify. This is...
2007-04-07 Owen AndersonBreakCriticalEdges does still preserve DominatorTree.
2007-04-07 Owen AndersonExpunge DomSet from BreakCriticalEdges. This is part...
2007-04-07 Owen AndersonExpunge DomSet from CodeExtractor. This is part of...
2007-04-07 Owen AndersonExpunge a bunch of uses of DomSet from LoopSimplify...
2007-04-02 Chris Lattnerreduce use of std::set
2007-03-26 Devang PatelReduce malloc/free traffic.
2007-03-22 Dan GohmanChange uses of Function::front to Function::getEntryBlo...
2007-03-20 Devang PatelLoopSimplify::FindPHIToPartitionLoops()
2007-03-12 Jeff CohenUnbreak VC++ build. Do not use identifiers starting...
2007-03-10 Anton KorobeynikovUse range tests in LowerSwitch, where possible
2007-03-09 Devang PatelRemove dead comments.
2007-03-09 Devang PatelAvoid recursion. Use iterative algorithm for RenamePass().
2007-03-02 Reid SpencerMake sure debug code is not evaluated in non-debug...
2007-03-02 Reid Spencer1. Sort switch cases using APInt safe comparison.
2007-03-02 Reid SpencerUse APInt safe isOne() method on ConstantInt instead...
2007-03-02 Reid SpencerMake sorting of ConstantInt be APInt clean through...
2007-03-02 Chris Lattnerswitch the inliner from being recursive to being iterative.
2007-02-23 Chris Lattnerfix an obscure and tricky bug the inliner can hit somet...
2007-02-22 Jim LaskeyRevert changes for a simplier solution.
2007-02-21 Jim LaskeyItanium ABI exception handing support.
2007-02-20 Dan GohmanFix typos in comments.
2007-02-19 Chris Lattnereliminate use of deprecated apis
2007-02-15 Reid SpencerFor PR1195:
2007-02-13 Chris LattnerEliminate use of ctors that take vectors.
2007-02-12 Chris Lattnerstop using methods that take vectors.
2007-02-11 Chris Lattnersimplify code by using Value::takeName
2007-02-07 Chris Lattnerredesign the primary datastructure used by mem2reg...
2007-02-05 Chris LattnerWith the last change, we no longer need both directions...
2007-02-05 Reid SpencerApply the VISIBILITY_HIDDEN field to the remaining...
2007-02-05 Chris LattnerSimplify use of DFBlocks, this makes no noticable perfo...
2007-02-05 Chris LattnerSwitch InsertedPHINodes back to SmallPtrSet now that...
2007-02-05 Chris Lattnerswitch a SmallPtrSet back to an std::set for now, this...
2007-02-05 Chris Lattnerswitch an std::set over to a SmallPtrSet, speeding...
2007-02-05 Chris Lattnerswitch an std::set over to SmallPtrSet, speeding up...
2007-02-05 Chris Lattnereliminate some malloc traffic, this speeds up mem2reg...
2007-02-05 Reid SpencerFor PR411:
2007-02-05 Reid SpencerFor PR1177:
2007-02-05 Owen AndersonUse DenseMap for pointer->pointer maps.
2007-02-04 Reid SpencerFor PR1163:
2007-02-03 Chris LattnerSwitch inliner over to use DenseMap instead of std...
2007-02-01 Chris LattnerFix bugs in the inliner having to do with single-entry...
2007-01-31 Chris Lattnereliminate temporary vectors
2007-01-30 Chris LattnerAdjust #includes to match movement of constant folding...
2007-01-30 Chris Lattnermove a bunch of constant folding code f rom Transforms...
2007-01-30 Chris Lattnerremove now-dead code.
2007-01-30 Chris LattnerThe inliner/cloner can now optionally take TargetData...
2007-01-30 Chris LattnerChange constant folding APIs to take an optional Target...
2007-01-30 Reid SpencerFor PR1136: Rename GlobalVariable::isExternal as isDecl...
2007-01-26 Reid SpencerFor PR761:
2007-01-25 Devang PatelInherit BasicBlockPass directly from Pass.
2007-01-19 Reid SpencerFor PR1043:
2007-01-15 Chris Lattnerrename Type::isIntegral to Type::isInteger, eliminating...
2007-01-15 Chris LattnerEliminate calls to isInteger, generalizing code and...
2007-01-15 Chris LattnerFix Analysis/Dominators/2006-10-02-BreakCritEdges.ll
2007-01-14 Chris LattnerFix PR1110 and Analysis/Dominators/2007-01-14-BreakCrit...
2007-01-12 Reid SpencerImplement review feedback for the ConstantBool->Constan...
2007-01-11 Reid SpencerRename BoolTy as Int1Ty. Patch by Sheng Zhou.
2007-01-11 Zhou ShengFor PR1043:
2007-01-07 Chris LattnerChange the interface to Module::getOrInsertFunction...
2007-01-07 Chris Lattnerprepare for adjustment to getOrInsertFunction method
2007-01-06 Reid SpencerFor PR411:
2006-12-31 Reid SpencerFor PR950:
2006-12-23 Reid SpencerFor PR950:
2006-12-19 Chris Lattnerswitch more statistics over to STATISTIC, eliminating...
2006-12-17 Bill WendlingAdded an automatic cast to "std::ostream*" etc. from...
2006-12-13 Reid SpencerReplace CastInst::createInferredCast calls with more...
2006-12-12 Reid SpencerFix the casting for the computation of the Malloc size.
2006-12-12 Reid SpencerChange inferred getCast into specific getCast. Passes...
2006-12-07 Bill WendlingChanged llvm_ostream et all to OStream. llvm_cerr,...
2006-12-06 Chris LattnerDetemplatize the Statistic class. The only type it...
2006-11-27 Reid SpencerFor PR950:
2006-11-26 Bill WendlingRemove #include <iostream> and use llvm_* streams instead.
2006-11-18 Chris LattnerDo not convert massive blocks on phi nodes into select...
next