Add the beginnings of infrastructure for range tracking.
[oota-llvm.git] / lib /
2010-08-05 Owen AndersonAdd the beginnings of infrastructure for range tracking.
2010-08-05 Jakob Stoklund OlesenAdd basic verification of LiveIntervals.
2010-08-05 Owen AndersonGive JumpThreading+LVI a long-form cl::opt so that...
2010-08-05 Owen AndersonSplit the tag and value members of LVILatticeVal in...
2010-08-05 Dan GohmanFix memdep's code for reasoning about dependences betwe...
2010-08-05 Gabor Greifremove the private hack from CallInst, it was not suppo...
2010-08-05 Eric ChristopherHandle the memory barrier pseudo that goes to nothing...
2010-08-05 Eric ChristopherSet hasSideEffects on the 64-bit no-sse memory barrier.
2010-08-05 Jim GrosbachFor local variables in functions with a frame pointer...
2010-08-05 Bob WilsonFix indentation.
2010-08-05 Jakob Stoklund OlesenRemove double-def checking from MachineVerifier, so...
2010-08-05 Bob WilsonAdd an ARM RSCrr instruction for disassembly only.
2010-08-05 Eric ChristopherBe a little bit more specific about target for the...
2010-08-05 Eric ChristopherHandle the pseudo in MCInstLower.
2010-08-05 Bob WilsonAdd an ARM RSBrr instruction for disassembly only.
2010-08-05 Jakob Stoklund OlesenAvoid using a live std::multimap iterator while editing...
2010-08-05 Chandler CarruthSilence a GCC warning about && and || without explicit...
2010-08-05 Dan GohmanRevert r110270 for now. It appears to uncover a memdep...
2010-08-05 Bob WilsonARM "rrx" shift operands do not have an immediate....
2010-08-04 Dan GohmanThe trouble with testing for "ModRef" and "NoModRef...
2010-08-04 Bill WendlingThe lower invoke pass needs to have unreachable code...
2010-08-04 Eric ChristopherMake x86-64 membarriers work without sse and clean...
2010-08-04 Dan GohmanThe two-callsite form of AliasAnalysis::getModRefInfo...
2010-08-04 Jim Grosbachand back in. false alarm on the tests from another...
2010-08-04 Eli FriedmanPR7814: Truncates cannot be ignored for signed comparisons.
2010-08-04 Devang PatelImplement target specific getDebugValueLocation().
2010-08-04 Jakob Stoklund OlesenCoalesce stack slot accesses that arise when spilling...
2010-08-04 Jim Grosbachoops. revert for a moment to clean up tests first.
2010-08-04 Jim GrosbachReserve a stack slot if the function adjusts the stack...
2010-08-04 Jakob Stoklund OlesenCheckpoint SplitKit progress.
2010-08-04 Devang PatelImplement target specific getDebugValueLocation().
2010-08-04 Devang PatelUse location entry only of the location described by...
2010-08-04 Bill WendlingThe EH prepare passes really want to be the last passes...
2010-08-04 Torok EdwinUse indirect calls in PowerPC JIT.
2010-08-04 Devang PatelFix typo in comment.
2010-08-04 Dan GohmanFix a minor bug which resulted in intermediate calculations
2010-08-04 Dan GohmanChange this llvm_unreachable to report_fatal_error...
2010-08-04 Devang PatelWhile spilling live registers at the end of block check...
2010-08-04 Devang PatelIf a variable is spilled by code generator then use...
2010-08-04 Owen AndersonExperiments show that we can safely increase our unroll...
2010-08-04 Dale JohannesenRemove switch for disabling ARM tail calls. They
2010-08-04 Devang PatelAdd DEBUG message.
2010-08-04 Dan GohmanFix whitespace.
2010-08-04 Benjamin KramerEnable COFF writer on mingw32 and cygwin.
2010-08-04 Kalle RaiskilaMake SPU backend handle insertelement and
2010-08-04 Benjamin KramerPrint an error message when someone tries -integrated...
2010-08-04 Torok EdwinAdd a missing function.
2010-08-04 Gabor Greifby Alexander Herz:
2010-08-04 Dan GohmanEliminate unnecessary empty string literals.
2010-08-04 Dan GohmanFix a comment.
2010-08-04 Dan GohmanDon't print the filename twice in file-not-found errors.
2010-08-04 Bob WilsonCombine NEON VABD (absolute difference) intrinsics...
2010-08-03 Dan GohmanRemove PointerAccessInfo, which nothing was using.
2010-08-03 Chris Lattnerfix a win64 encoding problem, patch by Cameron Esfahani!
2010-08-03 Dan GohmanThread const correctness through a bunch of AliasAnalys...
2010-08-03 Nate BegemanAdd support for getting & setting the FPSCR application...
2010-08-03 Dan GohmanThe singular of "indices" is "index".
2010-08-03 Dan GohmanDelete an unused function.
2010-08-03 Dan GohmanMake instcombine set explicit alignments on load or...
2010-08-03 Oscar FuentesCMake: Change somme target library names:
2010-08-03 Dan GohmanMake AliasAnalysis::getModRefInfo conservative in the...
2010-08-03 Jakob Stoklund OlesenOops. Don't normalize spill weights twice.
2010-08-03 Chris Lattneravoid undefined behavior negating minint.
2010-08-03 Dan GohmanFix a typo Devang noticed.
2010-08-03 Chris Lattneravoid undef behavior on minint, fixing PR7783.
2010-08-03 Peter CollingbourneAdd an atomic lowering pass
2010-08-03 Dan GohmanUse unary + instead of a separate local variable for...
2010-08-03 Michael J. SpencerMC: Fix symbol fragment offsets in COFF.
2010-08-03 Michael J. SpencerRevert "MC: Fix symbol fragment offsets in COFF."
2010-08-03 Michael J. SpencerMC: Add time travel support to COFF.
2010-08-03 Michael J. SpencerMC: Fix symbol fragment offsets in COFF.
2010-08-03 Michael J. SpencerFix CMake build
2010-08-03 Dan GohmanIntroduce a symbolic constant for ~0u for use with...
2010-08-03 Dan GohmanAdd a convenient form of AliasAnalysis::alias for the...
2010-08-02 Dan GohmanMake SCEVUnknown a CallbackVH, so that it can be notifi...
2010-08-02 Dan GohmanSketch up a preliminary Type-Based Alias Analysis imple...
2010-08-02 Dan GohmanFix visitInvokeInst to call visitTerminatorInst, and...
2010-08-02 Dan GohmanAdd Verifier logic for indirectbr.
2010-08-02 Dan GohmanAdd a lint check for indirectbr with no successors.
2010-08-02 Devang PatelAdd explicit constructors. Patch by Renato Golin.
2010-08-02 Bill WendlingEarly exit and reduce indentation. No functionality...
2010-08-02 Dan GohmanFix namespace polution.
2010-08-02 Devang PatelFree DbgScope created for dead functions.
2010-08-02 Kalle RaiskilaMore SPU v2f32 stuff added: insertelement and shuffle.
2010-08-02 Kalle RaiskilaAdd preliminary v2f32 support for SPU. Like with v2i32...
2010-08-02 Owen AndersonRe-apply the infamous r108614, with a fix pointed out...
2010-08-02 Kalle RaiskilaAdd preliminary v2i32 support for SPU backend. As there...
2010-08-02 Oscar FuentesPrefix `next' iterator operation with `llvm::'.
2010-08-02 Daniel DunbarFix a -Wreorder warning.
2010-08-02 Nick LewyckyWork in progress.
2010-08-02 Eli FriedmanPR7586: Make sure we don't claim that unknown bits...
2010-08-02 Eli FriedmanPR7781: Fix incorrect shifting in PPCTargetLowering...
2010-08-01 Eli FriedmanPR7774: Fix undefined shifts in Alpha backend. As...
2010-08-01 Benjamin KramerPreallocate vector, avoid unnecessary vector growth.
2010-08-01 Bill WendlingReference the personalities. Don't copy them into a...
2010-07-31 Daniel DunbarSilence some -Asserts uninitialized variable warnings.
2010-07-31 Daniel DunbarSpeculatively revert r108614, "Another attempt at getti...
2010-07-31 Michael J. SpencerMC: Remove HasAbsolutizedSet from WindowsX86AsmBackend.
2010-07-31 Bob WilsonMove newlines before inline jumptables from the asm...
2010-07-31 Michael J. SpencerAdd relax all support to the COFF object streamer.
next