Refactor the grammar a bit to implement TableGen/ForwardRef.td
[oota-llvm.git] / lib /
2005-09-30 Chris Lattnerpass extra args
2005-09-30 Chris Lattnerthese methods get extra args
2005-09-30 Chris LattnerPass extra regclasses into spilling code
2005-09-30 Chris LattnerChange this code ot pass register classes into the...
2005-09-30 Chris LattnerUse the 32-bit version for now
2005-09-29 Chris LattnerAdd a bunch of patterns for F64 FP ops, add some more...
2005-09-29 Chris LattnerRemove code for patterns that are autogenerated
2005-09-29 Andrew Lenharthbegining alpha subtarget support
2005-09-29 Chris Lattnertblgen autogens this pattern now
2005-09-29 Andrew Lenharthcopy and paste error
2005-09-29 Chris Lattnernow that tblgen is smarter, this pattern is not needed...
2005-09-29 Chris LattnerInsert stores after phi nodes in the normal dest. ...
2005-09-29 Chris Lattnerconsistency with other cases, no functionality change
2005-09-29 Chris LattnerMake the JIT default to the DAG isel instead of the...
2005-09-29 Chris LattnerFix two bugs in my patch earlier today that broke int...
2005-09-29 Chris LattnerFold isascii into a simple comparison. This speeds...
2005-09-29 Chris Lattnerremove a bunch of unneeded stuff, or self evident comments
2005-09-29 Chris LattnerImplement a couple of memcmp folds from the todo list
2005-09-29 Jeff CohenSilence VC++ redeclaration warnings.
2005-09-29 Chris LattnerNever rely on ReplaceAllUsesWith when selecting, use...
2005-09-28 Chris LattnerCodegen ADD X, IMM -> addis/addi if needed.
2005-09-28 Chris LattnerAutogen MUL, move FP cases together
2005-09-28 Chris Lattnerdisentangle FP from INT versions of div/mul
2005-09-28 Chris LattnerUse the autogenerated matcher for ADD/SUB
2005-09-28 Chris Lattneradd a patter for SUBFIC
2005-09-28 Chris LattnerMark int binops as int-only, add FP binops. Mark FADD...
2005-09-28 Chris Lattnerwrap a long line
2005-09-28 Chris LattnerAdd FP versions of the binary operators, keeping the...
2005-09-28 Chris LattnerAdd FP versions of the binary operators, keeping the...
2005-09-28 Chris LattnerAdd FP versions of the binary operators, keeping the...
2005-09-28 Chris LattnerMark associative nodes as associative
2005-09-28 Chris LattnerNate pointed out that mulh[us] are commutative as well...
2005-09-28 Chris Lattnerexpose commutativity information
2005-09-28 Chris LattnerAll (xor *) cases are autogenerated now
2005-09-28 Chris Lattneradd support for missed eqv tests
2005-09-28 Chris LattnerImplement PowerPC/eqv-andc-orc-nor.ll:EQV3
2005-09-28 Chris Lattnerlearn to codegen not as NOR instead of xoris/xori
2005-09-28 Chris LattnerThese nodes are all autogenerated
2005-09-28 Chris LattnerConstant fold llvm.sqrt
2005-09-27 Chris Lattneradd a note about a way to improve this code further...
2005-09-27 Chris LattnerFix a regression in my previous patch, fixing GlobalOpt...
2005-09-27 Chris LattnerDarwin, like many BSD systems, has a setjmp/longjmp...
2005-09-27 Chris LattnerIf the target prefers it, use _setjmp/_longjmp should...
2005-09-27 Chris Lattnerinitialize new flag
2005-09-27 Chris LattnerAvoid spilling stack slots... to stack slots.
2005-09-27 Chris LattnerCompletely rewrite 'correct' eh support. This changes...
2005-09-27 Chris LattnerMake the pass name simpler
2005-09-27 Chris Lattnerfix CBackend/2005-09-27-VolatileFuncPtr.ll
2005-09-27 Chris Lattnerallow demotion to volatile values, add support for...
2005-09-27 Chris LattnerMake sure to clear the CodeGenMap after each basic...
2005-09-27 Jim LaskeyRemove some redundancies.
2005-09-27 Chris LattnerSplit SimpleConstantVal up into its components, so...
2005-09-27 Chris LattnerAdd support for external calls that we know how to...
2005-09-27 Chris LattnerFix a bug where we would evaluate stores into linkonce...
2005-09-27 Chris LattnerImplement support for static constructors with calls...
2005-09-27 Chris LattnerRefactor this code a bit, no functionality changes.
2005-09-27 Chris LattnerMove the post-lsr simplify cfg pass after lowereh,...
2005-09-26 Chris Lattnerminor pattern shuffling
2005-09-26 Jim LaskeyAddition of a simple two pass scheduler. This version...
2005-09-26 Chris LattnerRemove some dead code. ctor evaluation subsumes empty...
2005-09-26 Chris LattnerAdd support for alloca, implementing ctor-list-opt...
2005-09-26 Chris LattnerAdd a debug printout, fix a crash on kc++
2005-09-26 Chris LattnerImplement loads/stores through GEP's of globals. This...
2005-09-26 Chris LattnerReplace TraverseGEPInitializer with ConstantFoldLoadThr...
2005-09-26 Chris LattnerEliminate GetGEPGlobalInitializer in favor of the more...
2005-09-26 Chris LattnerFactor the GetGEPGlobalInitializer out of this pass...
2005-09-26 Chris LattnerMove the ConstantFoldLoadThroughGEPConstantExpr functio...
2005-09-26 Chris Lattneradd a comment
2005-09-26 Chris LattnerAdd support for getelementptr, load, and correctly...
2005-09-26 Chris LattnerAdd support for br/brcond/switch and phi
2005-09-26 Chris LattnerAdd a simple interpreter to this code, allowing us...
2005-09-26 Chris Lattnerfactor some code into a InstallGlobalCtors method,...
2005-09-26 Chris LattnerMake the global opt optimizer work on modules with...
2005-09-26 Chris LattnerFactor this code out into a few methods.
2005-09-25 Chris LattnerFix some logic I broke that caused a regression on
2005-09-24 Chris LattnerMove MaskedValueIsZero up.
2005-09-24 Chris LattnerSimplify this code a bit by relying on recursive simpli...
2005-09-24 Chris LattnerAdd support for a marker byte that indicates that we...
2005-09-24 Chris LattnerTeach the dag isel generator how to construct arbitrary...
2005-09-23 Chris Lattnerremove some debugging code
2005-09-23 Chris LattnerFold two consequtive branches that share a common desti...
2005-09-23 Chris Lattnersimplify some logic further
2005-09-23 Chris Lattnerpull a bunch of logic out of SimplifyCFG into a helper fn
2005-09-23 Chris Lattnerspeed up Archive::isBytecodeArchive in the case when...
2005-09-23 Chris LattnerTurn (X^C1) == C2 into X == C1^C2 iff X&~C1 = 0 (and...
2005-09-21 Chris LattnerExpose the LiveInterval interfaces as public headers.
2005-09-20 Chris LattnerStart threading across blocks with code in them, so...
2005-09-20 Chris LattnerImplement merging of blocks with the same condition...
2005-09-19 Chris LattnerReject a case we don't handle yet
2005-09-19 Chris Lattnerremove debugging code :-/
2005-09-19 Chris LattnerImplement SimplifyCFG/branch-phi-thread.ll, the most...
2005-09-19 Nate BegemanStub out the rest of the DAG Combiner. Just need to...
2005-09-19 Chris LattnerTeach the local spiller to turn stack slot loads into...
2005-09-19 Chris LattnerImplement the isLoadFromStackSlot interface
2005-09-18 Chris LattnerRefactor this code a bit and make it more general....
2005-09-18 Chris LattnerCompile
2005-09-18 Chris LattnerGeneralize this transform, using MaskedValueIsZero...
2005-09-18 Chris Lattnerfix typeo
2005-09-18 Chris LattnerRemove unintentionally committed code
2005-09-18 Chris Lattnerimplement shift.ll:test25. This compiles:
next