* Finegrainify namespacification
[oota-llvm.git] / lib / Transforms / Utils /
2003-11-21 Chris LattnerMinor cleanups and simplifications
2003-11-20 Chris LattnerStart using the nicer terminator auto-insertion API
2003-11-20 Chris LattnerSpew symbolic types!
2003-11-11 Brian GaekePut all LLVM code into the llvm namespace, as per bug...
2003-11-10 Chris LattnerReorganize code for locality, improve comments
2003-11-10 Chris LattnerAdjust to new critical edge interface
2003-11-06 Chris LattnerVarious cleanups and efficiency improvements
2003-11-05 Chris LattnerYet more fixes for constant expr shifts
2003-11-05 Chris LattnerFurther fixes for PR93
2003-11-04 John CriswellChecking in Chris's suggestions:
2003-10-27 Chris LattnerFix test: Linker/2003-10-27-LinkOncePromote.ll
2003-10-27 Chris LattnerGet the list of PHI node values before the basic block...
2003-10-21 Chris LattnerFix bug: Linker/2003-10-21-ConflictingTypesTolerance.ll
2003-10-21 Chris LattnerFix message to make more sense and confuse Chris less
2003-10-21 John CriswellAdded LLVM copyright header.
2003-10-20 John CriswellAdded LLVM copyright notice to Makefiles.
2003-10-20 John CriswellAdded LLVM project notice to the top of every C++ sourc...
2003-10-18 Chris LattnerFix PR#50
2003-10-16 Chris LattnerAdd support for 'weak' linkage.
2003-10-15 Chris LattnerCleanup
2003-10-14 Chris LattnerDo not move variable sized allocations to the top of...
2003-10-13 Chris LattnerAdd support to the loop canonicalization pass to make...
2003-10-12 Chris LattnerRename loop preheaders pass to loop simplify
2003-10-12 Chris LattnerFile is renamed to LoopSimplify.cpp
2003-10-12 Chris LattnerFirst step in renaming the preheaders pass to loopsimplify
2003-10-12 Chris LattnerThe preheader insertion pass only depends on the CFG...
2003-10-10 Misha BrukmanFix spelling.
2003-10-07 Chris LattnerBill contributed this major rewrite of the -lowerswitch...
2003-10-06 Chris LattnerAvoid doing pointless work. Amazingly, this makes...
2003-10-05 Chris LattnerThis changes the PromoteMemToReg function to create...
2003-10-05 Chris LattnerChange the interface to PromoteMemToReg to also take...
2003-10-05 Chris LattnerSpeed up the mem2reg transform for allocas which are...
2003-10-05 Chris LattnerInitial checkin of the LLVM->LLVM transform to support...
2003-10-05 Chris LattnerThe first PHI node may be null, scan for the first...
2003-10-05 Chris LattnerThe VersionNumbers vector is only used during PHI place...
2003-10-05 Chris Lattner* Update file header comment
2003-10-05 Chris LattnerSimplify the loop a bit
2003-10-05 Chris LattnerThere is no need for separate WriteSets and PhiNodeBloc...
2003-10-05 Chris LattnerThe PhiNodes 2D vector is only used during PHI node...
2003-10-05 Chris Lattner* Document instance vars better
2003-10-05 Chris LattnerTwo small cleanups/speedups:
2003-10-05 Chris Lattner* Minor cleanups
2003-09-22 Chris LattnerFix bugs in the last change
2003-09-22 Chris LattnerFix bug: Inline/2003-09-22-PHINodesInNormalInvokeDest.ll
2003-09-22 Chris LattnerFix bug: Inline/2003-09-22-PHINodesInExceptionDest.ll
2003-09-20 Chris LattnerRename Function::getEntryNode -> getEntryBlock
2003-09-20 Chris LattnerMinor cleanups, no functional changes
2003-09-15 Chris LattnerFix bug: Inline/2003-09-14-InlineValue.ll
2003-09-11 Chris LattnerRenamed DominatorTree::Node::getNode() -> getBlock()
2003-09-10 Chris LattnerExpand the pass to unify all of the unwind blocks as...
2003-09-09 Misha BrukmanSpell `occurrence' correctly.
2003-09-08 Chris LattnerEliminate support for the llvm.unwind intrinisic, using...
2003-09-08 Chris LattnerShould invokify is always true
2003-08-31 Chris LattnerUse new interface, simplifies code
2003-08-28 Chris LattnerFix bug where we considered function types equivalent...
2003-08-25 Chris LattnerRemove special casing
2003-08-24 Chris LattnerFix bug: Linker/2003-08-23-GlobalVarLinking.ll
2003-08-24 Chris LattnerImplement: Linker/2003-08-24-InheritPtrSize.ll
2003-08-24 Chris LattnerImplement SimplifyCFG/InvokeEliminate.ll
2003-08-24 Chris Lattnerrethrow is really the language independent primitive...
2003-08-24 Chris Lattner*** Implement inlining of Invoke instructions!
2003-08-24 Chris LattnerImplement: Inline/cfg_preserve_test.ll
2003-08-23 Chris LattnerImplement SimplifyCFG/2003-08-17-FoldSwitch.ll:test5
2003-08-23 Chris LattnerFix bug: LowerSwitch/2003-08-23-EmptySwitch.ll
2003-08-23 Chris LattnerDo not consider any types that exist in the global...
2003-08-23 Chris LattnerFix bug: Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll
2003-08-23 Chris LattnerImplement Linker/2003-08-23-GlobalVarLinking.ll, which...
2003-08-22 Chris LattnerFix typeo
2003-08-22 Chris LattnerThe process of linking types can cause their addresses...
2003-08-22 Chris LattnerImplement Linker/2003-08-20-OpaqueTypeResolve.ll
2003-08-21 Misha BrukmanThe word `dependent' has no `a'.
2003-08-18 Chris LattnerFix grammar, add comment
2003-08-18 Misha BrukmanSpell `necessary' correctly.
2003-08-17 Chris LattnerImplement folding of switch instructions.
2003-08-17 Chris LattnerFix bug: SimplifyCFG/2003-08-17-BranchFoldOrdering.ll
2003-08-17 Chris LattnerThe fixme is irrelevant: if that happens, the LLVM...
2003-08-14 Brian GaekeFactory methods for function passes now return type...
2003-08-13 Brian GaekeFactory methods for FunctionPasses now return type...
2003-08-05 Chris LattnerFix bug: SimplifyCFG/2003-08-05-InvokeCrash.ll
2003-06-25 Chris LattnerFix bug: Mem2Reg/2003-06-26-IterativePromote.ll
2003-05-31 Tanya LattnerFixed comment width, changed arg to be const, fixed...
2003-05-30 Tanya LattnerAdded the CloneTrace function which clones traces....
2003-05-29 Chris LattnerEliminate unnecessary ->get calls that are now automati...
2003-05-29 Chris Lattner* Separate all of the grunt work of inlining out into...
2003-05-22 Chris LattnerRemove using declarations
2003-05-20 Misha BrukmanHopefully, the final fix for `[Pp]ropogate'.
2003-05-15 Chris LattnerFix long standing bug
2003-05-15 Chris LattnerFix Bug: Linker/2003-05-15-TypeProblem.ll
2003-05-14 Chris LattnerFix major problem with appending linkage changes
2003-05-13 Chris LattnerImplement linkage of appending global variables!
2003-05-12 Chris LattnerFix bug: LoopPreheaders/2003-05-12-PreheaderExitOfChild.ll
2003-05-01 Chris LattnerFix Bug: LowerSwitch/2003-05-01-PHIProblem.ll
2003-04-25 Chris LattnerFix bug: mem2reg/2003-04-24-MultipleIdenticalSuccessors.ll
2003-04-24 Chris LattnerFix iterator invalidation problem
2003-04-24 Chris LattnerMake sure that the cloned module retains the type symbo...
2003-04-24 Chris LattnerMake sure to preserve endiannes and pointer size when...
2003-04-23 Chris LattnerFix Bug: Linker/2003-04-23-LinkOnceLost.ll
2003-04-23 Chris LattnerRemove unnecesary &*'s
2003-04-23 Chris LattnerNew pass to lower switch instructions to branch instruc...
2003-04-23 Chris LattnerMinor cleanups
next