C++ version of llvm-native-gcc.
[oota-llvm.git] / lib /
2004-02-26 John CriswellFixes for PR258 and PR259.
2004-02-26 Chris LattnerBe a good little compiler and handle direct calls effic...
2004-02-26 Alkis EvlogimenosUncomment assertions that register# != 0 on calls to
2004-02-26 Chris LattnerSince LLVM uses structure type equivalence, it isn...
2004-02-26 Chris LattnerUse a map instead of annotations
2004-02-26 Chris Lattnerremove obsolete comment
2004-02-26 Chris LattnerMake sure that at least one virtual method is defined...
2004-02-26 Chris Lattnerturn things like:
2004-02-26 Chris LattnerNo need to clear the map here, it will always be empty
2004-02-26 Chris LattnerFix typo
2004-02-26 Chris LattnerThe node doesn't have to be _no_ node flags, it just...
2004-02-26 Chris LattnerAdd _more_ functions
2004-02-26 Chris LattnerFix some warnings, some of which were spurious, and...
2004-02-26 Misha BrukmanInstructions to call and return from functions.
2004-02-25 Chris LattnerTwo changes:
2004-02-25 Chris LattnerWhen building local graphs, clone the initializer for...
2004-02-25 Alkis EvlogimenosFix bugs found with recent addition of assertions in
2004-02-25 Chris LattnerSimplify the dead node elimination stuff
2004-02-25 Chris LattnerAdd a bunch more functions
2004-02-25 Chris LattnerTry harder to get symbol info
2004-02-25 Brian GaekeRepresent va_list in interpreter as a (ec-stack-depth...
2004-02-25 Brian GaekeGreat sparc renaming fallout IV: Sparc --> SparcV9.
2004-02-25 Alkis EvlogimenosRemove asssert since it is breaking cases that it shoul...
2004-02-25 Alkis EvlogimenosAdd DenseMap template and actually use it for for mappi...
2004-02-25 Chris LattnerMy faith in programmers has been found to be totally...
2004-02-25 Misha BrukmanSparcV8 regs are really 32-bit, not 64! Thanks, Chris.
2004-02-25 Misha BrukmanClean up the tablegen descriptions for SparcV8.
2004-02-25 Misha BrukmanFix the SparcV8 register definitions that were imported...
2004-02-25 Misha BrukmanSparcV8 has different types of instructions, but F1...
2004-02-25 Chris LattnerAdd an assertion
2004-02-25 Chris LattnerFix failures in 099.go due to the cfgsimplify pass...
2004-02-25 Brian GaekeSparcV8 skeleton
2004-02-25 Brian GaekeGreat renaming part II: Sparc --> SparcV9 (also include...
2004-02-25 Brian GaekeGreat renaming: Sparc --> SparcV9
2004-02-25 Chris LattnerAdd a bunch more functions used by perlbmk
2004-02-25 Chris LattnerFix incorrect debug code
2004-02-25 Chris LattnerTeach the instruction selector how to transform 'array...
2004-02-25 Chris Lattner* Make the previous patch more efficient by not allocat...
2004-02-25 Chris LattnerAdd a helper to create an addressing mode given all...
2004-02-25 Chris Lattneradd an inefficient way of folding structure and constan...
2004-02-25 Chris LattnerImplement special case for storing an immediate into...
2004-02-24 Chris LattnerAdd support for 'rename'
2004-02-24 Chris LattnerMake the verifier a little more explicit about this...
2004-02-24 Chris LattnerAdd support for remove, fwrite, and fread
2004-02-24 Brian GaekeFunctionLiveVarInfo.h moved: include/llvm/CodeGen ...
2004-02-24 Chris LattnerFix some unexpected fallout from the config.h changes...
2004-02-24 Chris LattnerFix a faulty optimization on FP values
2004-02-24 Chris LattnerIf a block is made dead, make sure to promptly remove it.
2004-02-24 Alkis EvlogimenosMove machine code rewriter and spiller outside the...
2004-02-24 Chris LattnerImplement SimplifyCFG/switch_switch_fold.ll
2004-02-24 Alkis EvlogimenosAdd predicates for checking if a virtual register has...
2004-02-24 Chris LattnerRearrange code a bit
2004-02-24 Chris LattnerImplement: test/Regression/Transforms/SimplifyCFG/switc...
2004-02-23 Alkis EvlogimenosMake enum private as it is an implementation detail.
2004-02-23 Alkis EvlogimenosRemove '4Virt' from member function names as it is...
2004-02-23 Alkis EvlogimenosRefactor VirtRegMap out of RegAllocLinearScan as the...
2004-02-23 Alkis EvlogimenosInclude Config/config.h for SHLIBEXT.
2004-02-23 Chris LattnerGenerate much more efficient code in programs like...
2004-02-23 Chris LattnerFix a small typeo in my checkin last night that broke...
2004-02-23 Chris LattnerFix InstCombine/2004-02-23-ShiftShiftOverflow.ll
2004-02-23 Alkis EvlogimenosAdd number of spilled registers statistic.
2004-02-23 Chris LattnerFix bugs in finegrainification
2004-02-23 Chris LattnerFinegrainify namespacification
2004-02-23 Alkis EvlogimenosUse MachineBasicBlock::getParent().
2004-02-23 Alkis EvlogimenosRemove implementation of default constructor as it...
2004-02-23 Alkis EvlogimenosRefactor rewinding code for finding the first terminato...
2004-02-23 Chris LattnerSimplify code a bit, don't go off the end of the block...
2004-02-23 Chris LattnerWe were forgetting to add FP_REG_KILL instructions...
2004-02-23 Chris LattnerImplement cast.ll::test14/15
2004-02-23 Chris LattnerRefactor some code. In the mul - setcc folding case...
2004-02-23 Alkis EvlogimenosImproved PhysRegTracker interface. RegAlloc lazily...
2004-02-23 Chris LattnerImplement mul.ll:test11
2004-02-23 Chris LattnerImplement "strength reduction" of X <= C and X >= C
2004-02-23 Chris LattnerImplement InstCombine/mul.ll:test10, which is a case...
2004-02-23 Alkis EvlogimenosSimplify iterator usage now that we have next(). Also...
2004-02-23 Chris LattnerWork around a gas bug. Print '-9223372036854775808...
2004-02-23 Chris LattnerImplement cast fp -> bool
2004-02-23 Chris LattnerStop passing iterators around by reference now that...
2004-02-23 Alkis EvlogimenosSome code cleanups from Chris
2004-02-23 Alkis EvlogimenosFix comments in PhysRegTracker and rename isPhysRegAvai...
2004-02-23 Chris LattnerAdd a new cmove instruction
2004-02-23 Alkis EvlogimenosMove LiveIntervals.h up to be the first included header
2004-02-23 Alkis EvlogimenosPull PhysRegTracker out of RegAllocLinearScan as it...
2004-02-23 Alkis EvlogimenosMove LiveIntervals.h to lib/CodeGen since it shouldn...
2004-02-22 Chris LattnerOnly insert FP_REG_KILL instructions in MachineBasicBlo...
2004-02-22 Chris LattnerAnother bug fix for empty MBB's
2004-02-22 Alkis EvlogimenosMove MOTy::UseType enum into MachineOperand. This elimi...
2004-02-22 Chris LattnerFix a bug where we were implicitly assuming that there...
2004-02-22 Chris LattnerReduce the number of pointless copies inserted due...
2004-02-22 Chris LattnerFix bug in previous checkout: leave the iterator at...
2004-02-22 Chris LattnerCompletely rewrite how getelementptr instructions are...
2004-02-22 Alkis EvlogimenosWhen folding memory operands in machine instructions...
2004-02-22 Chris LattnerFix a soon-to-be-missing #include
2004-02-22 Chris LattnerGet all instruction definitions
2004-02-22 Chris LattnerWow this is out of date. When we have _real_ code...
2004-02-22 Alkis EvlogimenosPrint basic block boundaries in machine instruction...
2004-02-22 Chris LattnerImplement Transforms/InstCombine/cast.ll:test13, a...
2004-02-22 Chris LattnerThe two address pass cannot handle two addr instruction...
2004-02-22 Alkis EvlogimenosAbstract merging of ranges away from number of slots...
2004-02-22 Chris LattnerUse isNull instead of getNode() to test for existence...
next