remove a buggy test, it is not ok to use -debug in RUN line.
[oota-llvm.git] / lib / CodeGen /
2009-03-13 Evan ChengFix some significant problems with constant pools that...
2009-03-13 Owen AndersonConvert VirtRegMap to a MachineFunctionPass.
2009-03-13 Bill WendlingOops...I committed too much.
2009-03-13 Bill WendlingTemporarily XFAIL this test.
2009-03-12 Dan GohmanFix a typo in a comment.
2009-03-12 Owen AndersonReorganize some #include's.
2009-03-12 Chris LattnerMove 3 "(add (select cc, 0, c), x) -> (select cc, x...
2009-03-12 Evan ChengEnable Chris' value propagation change. It make availab...
2009-03-11 Gabor Greifupdate
2009-03-11 Owen AndersonReorganization: Move the Spiller out of VirtRegMap...
2009-03-11 Evan ChengMy last coalescer fix introduced a subtler one. It...
2009-03-11 Duncan SandsIt makes no sense to have a ODR version of common
2009-03-11 Duncan SandsAdd parentheses to pacify gcc-4.3.
2009-03-11 Chris Lattnerreapply my previous patch (r66358) with a tweak to...
2009-03-11 Bill WendlingPut the assignment back at the top of this method.
2009-03-11 Evan ChengTwo coalescer fixes in one.
2009-03-10 Bill WendlingMake ivars private. Other cleanup. No functionality...
2009-03-10 Bill WendlingJust make the Dwarf timer group static inside of the...
2009-03-10 Bill WendlingDon't put static functions in anonymous namespace.
2009-03-10 Bill WendlingThese should *stop* the timer, not start it again.
2009-03-10 Bill Wendling- Fix misspelled method name.
2009-03-10 Bill Wendling- Create GetOrCreateSourceID from getOrCreateSourceID...
2009-03-10 Bill WendlingRefine the Dwarf writer timers so that they measure...
2009-03-10 Evan ChengRevert 66358 for now. It's breaking povray, 450.soplex...
2009-03-10 Bill WendlingAdd a timer to the DwarfWriter pass that measures the...
2009-03-10 Dan GohmanFix a post-RA scheduling liveness bug. When a basic...
2009-03-10 Chris Lattnerwire up support for emitting "special" values from...
2009-03-09 Chris LattnerFix PR3763 by using proper APInt methods instead of...
2009-03-09 Evan ChengYet another case where the spiller marked two uses...
2009-03-09 Chris Lattnerjust remove the use_empty() check entirely, the only...
2009-03-09 Chris LattnerMake the code generator rip of dead constant expr uses...
2009-03-09 Bill WendlingPass in a std::string when getting the names of debuggi...
2009-03-08 Evan ChengIf a MI uses the same register more than once, only...
2009-03-08 Chris Lattnerimplement an optimization to codegen c ? 1.0 : 2.0...
2009-03-08 Chris Lattnerrandom cleanups.
2009-03-07 Duncan SandsIntroduce new linkage types linkonce_odr, weak_odr...
2009-03-06 Dan GohmanFix ScheduleDAGRRList::CopyAndMoveSuccessors' handling...
2009-03-06 Bill WendlingWhen we split a basic block, there's a default branch...
2009-03-05 Owen Anderson(Hopefully) silence a warning.
2009-03-05 Owen AndersonBe more careful about choosing restore points when...
2009-03-05 Evan ChengFix how livein live intervals are handled. Previously...
2009-03-04 Bob WilsonFix BuildVectorSDNode::isConstantSplat to handle one...
2009-03-04 Owen AndersonAdd a restore folder, which shaves a dozen or so machin...
2009-03-04 Eli FriedmanPR3686: make the legalizer handle bitcast from i80...
2009-03-04 Evan ChengFix PR3701. 1. X86 target renamed eflags register to...
2009-03-04 Bill WendlingThe DAG combiner was performing a BT combine. The BT...
2009-03-02 Bob WilsonGeneralize BuildVectorSDNode::isConstantSplat to use...
2009-03-01 Nate BegemanFix a problem with DAGCombine on 64b targets where...
2009-03-01 Evan ChengMinor optimization:
2009-03-01 Bob WilsonCombine PPC's GetConstantBuildVectorBits and isConstant...
2009-02-28 Evan ChengLast commit accidentially deleted this code.
2009-02-27 Devang PatelIt is possible that subprgoram definition is only encod...
2009-02-27 Rafael EspindolaRefactor TLS code and add some tests. The tests and...
2009-02-27 Evan ChengMachineLICM CSE should match destination register class...
2009-02-26 Owen AndersonEnable stack slot coloring DCE. Evan's spiller fixes...
2009-02-26 Evan ChengThe last commit was overly conservative. It's ok to...
2009-02-26 Evan ChengIf an available register falls through to a succ block...
2009-02-25 Evan ChengRevert BuildVectorSDNode related patches: 65426, 65427...
2009-02-25 Dale JohannesenFix big-endian codegen bug. We're splitting up
2009-02-25 Devang PatelPrint variable's display name in dwarf DIE.
2009-02-25 Evan ChengClean up dwarf writer, part 1. This eliminated the...
2009-02-25 Scott MichelExpand tabs to spaces (overlooked in previous commit)
2009-02-25 Scott MichelRemove all "cached" data from BuildVectorSDNode, prefer...
2009-02-24 Bill WendlingOverhaul my earlier submission due to feedback. It...
2009-02-24 Owen AndersonAdd a debugging option for SSC DCE.
2009-02-24 Bill Wendling- Use the "Fast" flag instead of "OptimizeForSize"...
2009-02-24 Dan GohmanFix a ValueTracking rule: RHS means operand 1, not...
2009-02-24 Devang Patelgdb uses DW_AT_prototyped to identify K&R style in...
2009-02-24 Devang PatelIf there is not any debug info available for any global...
2009-02-22 Scott MichelIntroduce the BuildVectorSDNode class that encapsulates...
2009-02-22 Evan ChengIf a use operand is marked isKill, don't forget to...
2009-02-21 Richard Penningtonbug 3610: Floating point vaarg not softened.
2009-02-21 Anton KorobeynikovDrop bunch of half-working stuff in the ext_weak linkag...
2009-02-21 Evan ChengIf two-address def is dead and the instruction does...
2009-02-20 Dan GohmanFix a bug that David Greene found in the DAGCombiner...
2009-02-20 Bill Wendling- Early exit a nested block.
2009-02-20 Owen AndersonFix a crash in the pre-alloc splitter exposed by recent...
2009-02-20 Owen AndersonAdd a quick pass to the stack slot colorer to eliminate...
2009-02-20 Bill WendlingAdd an accessor method to DwarfWriter to tell of debugg...
2009-02-19 Bill WendlingTemporarily revert r65065. It was causing test failures.
2009-02-19 Bill WendlingPrint out debug info when printing the machine instruction.
2009-02-19 Bill WendlingCheck for -fast here too.
2009-02-19 Bill WendlingGenerate these labels when we're in "fast" mode, not...
2009-02-18 Devang PatelThe subprogram die may not exist while creating "defaul...
2009-02-18 Nate BegemanAdd support to the JIT for true non-lazy operation...
2009-02-18 Dan GohmanEliminate several more unnecessary intptr_t casts.
2009-02-17 Devang PatelThe debugger sometimes lookup dynamically in the runtim...
2009-02-17 Scott MichelRemove trailing whitespace to reduce later commit patch...
2009-02-17 Devang PatelEmit debug info for bitfields.
2009-02-17 Evan ChengA couple of places where reused use operands should...
2009-02-17 Bill Wendling--- Merging (from foreign repository) r64714 into '.':
2009-02-15 Dan GohmanDon't assume that a left-shift of a value with one...
2009-02-15 Evan ChengFix PR3522. It's not safe to sink into landing pad...
2009-02-14 Cedric VenetUnbreak the build on win32.
2009-02-13 Bill WendlingRevert this. It was breaking stuff.
2009-02-13 Bill WendlingTurn off the old way of handling debug information...
2009-02-12 Dale JohannesenArrange to print constants that match "n" and "i" const...
2009-02-12 Dan GohmanAdjust the sizes for a few SmallVectors to reflect...
2009-02-12 Chris Lattnermake fast isel fall back to selectiondags for VLA llvm...
2009-02-12 Evan ChengIt's (currently) not safe to keep certain physical...
next