Some compile time improvements resulting in a 1sec speedup in the 5sec
[oota-llvm.git] / lib /
2004-07-22 Alkis EvlogimenosSome compile time improvements resulting in a 1sec...
2004-07-22 Chris LattnerThis is a trivial dead store elimination pass. It...
2004-07-22 Chris LattnerClean up reference counting to stop "leaking" alias...
2004-07-22 Chris LattnerRemove extraneous punctuation
2004-07-22 Chris LattnerUpdate GC intrinsics to take a pointer to the object...
2004-07-22 Chris LattnerUpdates to gc intrinsics, contributed by Tobias Nurmiranta
2004-07-22 Alkis EvlogimenosUse reverse iterators when updating the vector, since...
2004-07-22 Chris LattnerThat funny 2-address lowering pass can also cause multi...
2004-07-21 Chris LattnerMinor cleanups
2004-07-21 Chris LattnerFix cases where we generated horrible code like this:
2004-07-21 Brian GaekeThese files don't need to include <iostream> since...
2004-07-21 Misha Brukman* Add the lost fix to define the second reg of a 2...
2004-07-21 Misha Brukman* Speed up canUseAsImmediateForOpcode() by comparing...
2004-07-21 Chris Lattner* Further cleanup.
2004-07-21 Misha Brukman* Fix printing of signed immediate values (Nate Begeman)
2004-07-21 Misha Brukman* Fix printing of signed immediate values
2004-07-21 Chris LattnerMake cast-cast code a bit more defensive
2004-07-21 Misha BrukmanUse addSImm() instead of addImm() for stack offsets...
2004-07-21 Alkis EvlogimenosFix analysis name.
2004-07-21 Misha BrukmanAdd SUBI instruction
2004-07-21 Alkis EvlogimenosClear spilled list at once. Remove unused vector.
2004-07-21 Alkis EvlogimenosChange std::list into a std::vector for IntervalSets...
2004-07-21 Alkis EvlogimenosImprove file comment.
2004-07-21 Alkis EvlogimenosAdd Iterative scan register allocator.
2004-07-21 Alkis EvlogimenosLinearscan is no longer experimental.
2004-07-21 Chris LattnerAdd capability to remove aliasing aliassets from an AST
2004-07-21 Chris LattnerMake the AST interface a bit richer by returning whethe...
2004-07-21 Chris LattnerRemove special casing of pointers and treat them generi...
2004-07-21 Chris LattnerDo not ignore casts unless they are pointer-pointer...
2004-07-21 Brian GaekeSolaris hack for isinf()
2004-07-21 Brian GaekeEmit NaNs and INFs bit-identically to the bytecode...
2004-07-21 Brian GaekeAdd platform-independent wrapper function for isinf().
2004-07-20 Misha BrukmanShorts are aligned to 2 bytes, bools to 1 byte (in...
2004-07-20 Misha BrukmanTreat external variables similarly to those with weak...
2004-07-20 Misha BrukmanDifferentiate between global and weak symbol loads
2004-07-20 Misha Brukman* Differentiate between global and weak symbol loads
2004-07-20 Misha BrukmanDifferentiate between global and weak symbol loads
2004-07-20 Misha BrukmanDouble alignment in structs is 4 bytes, not 8. Patch...
2004-07-20 Alkis EvlogimenosAdd function to clear all virtual->physical mappings...
2004-07-20 Alkis EvlogimenosRemove unneeded functor. LiveInterval has a < operator.
2004-07-20 Chris LattnerFix a serious code pessimization problem. If an inline...
2004-07-20 Chris LattnerImplement Transforms/InstCombine/IntPtrCast.ll
2004-07-20 Chris LattnerIgnore instructions that are in trivially dead function...
2004-07-20 Misha BrukmanFix stack frame layout in prologue/epilogue. Patch...
2004-07-20 Chris LattnerImplement InstCombine/GEPIdxCanon.ll
2004-07-20 Chris LattnerImplement SimplifyCFG/BrUnwind.ll
2004-07-20 Misha BrukmanMove handing of GlobalValues from getReg() to copyConst...
2004-07-20 Chris LattnerRewrite cast->cast elimination code completely based...
2004-07-20 Misha Brukman* Fn args passed in registers are now recorded as used...
2004-07-20 Misha Brukman* cFP class split into cFP32 and cFP64
2004-07-19 Chris LattnerWhile I'm at it, don't break codegen of mul by 3,5,9.
2004-07-19 Chris LattnerGenerate better code for multiplies by negative constan...
2004-07-19 Alkis EvlogimenosRemove dead code.
2004-07-19 Chris LattnerFix a bug that occurs when the last instruction in...
2004-07-19 Chris LattnerWhen joining intervals, join intervals in deeply nested...
2004-07-19 Chris LattnerSplit joinIntervals into two methods
2004-07-19 Reid Spencerbug 122:
2004-07-19 Chris LattnerInline 4 methods
2004-07-19 Chris LattnerThere is no need to store the MBB along with the MI...
2004-07-19 Chris LattnerSimplify the interface to LiveVariables::addVirtualRegi...
2004-07-19 Chris LattnerRemove the DefBlock element of VarInfo. DefBlock is...
2004-07-19 Chris LattnerErr, fix last checkin
2004-07-19 Chris LattnerFix bugpoint miscompilation support on OS/X
2004-07-19 Chris LattnerTwo changes, both very significant:
2004-07-19 Chris LattnerSee comments. The live intervals were not coming out...
2004-07-19 Chris LattnerFix assertion to not dereference end!
2004-07-19 Chris LattnerAdd some asserts that the list of intervals returned...
2004-07-19 Chris Lattnerremove the mbbi2mbbMap_, which was just keeping track...
2004-07-19 Chris Lattnerfill comment to 80 cols
2004-07-19 Chris Lattnerclassof implementations are now inlined
2004-07-19 Chris LattnerMethod now returns null, dtor is inlined
2004-07-18 Reid SpencerA description of what this library is about, reference...
2004-07-18 Reid SpencerInitiali Makefile for this library.
2004-07-18 Chris LattnerAdd a workaround for a GCC 3.3.2 bug
2004-07-18 Chris LattnerFix a performance regression from the CPR patch, simpli...
2004-07-18 Chris LattnerStrip out and simplify some code. This also fixes...
2004-07-18 Chris LattnerMinor cleanup, no functionality change
2004-07-18 Chris LattnerFix infinite loop
2004-07-18 Reid SpencerRemove an if statement that would never be reached.
2004-07-18 Reid SpencerDelete a redundant if branch.
2004-07-18 Reid SpencerExpand the coercion of constants to include the newly...
2004-07-18 Reid SpencerDelete a no-op loop.
2004-07-18 Reid SpencerExpand the scope to include global values because they...
2004-07-18 Reid SpencerAvoid an unnecessary isa<Constant>.
2004-07-18 Chris LattnerFix infinite loop gccld'ing povray
2004-07-18 Chris LattnerCPR Fixes
2004-07-18 Chris LattnerCPR fixes
2004-07-18 Chris LattnerRemove useless statistic, fix some slightly broken...
2004-07-18 Chris LattnerFix a rather serious bug in previous checkin
2004-07-18 Reid SpencerShrink some code.
2004-07-18 Reid Spencerbug 122:
2004-07-18 Reid Spencerbug 122:
2004-07-18 Reid Spencerbug 122:
2004-07-18 Reid Spencerbug 122:
2004-07-18 Reid Spencerbug 122:
2004-07-18 Reid Spencerbug 122:
2004-07-18 Reid Spencerbug 122:
2004-07-18 Reid Spencerbug 122:
2004-07-18 Reid Spencerbug 122:
2004-07-18 Reid Spencerbug 122:
next