oota-llvm.git
2008-12-03 Chris Lattnerfix assertion.
2008-12-03 Chris Lattnerdon't spew tons of stuff to the output. This testcase...
2008-12-03 Chris LattnerRename DeleteBlockIfDead to DeleteDeadBlock and make it
2008-12-03 Chris LattnerFactor some code out of SimplifyCFG, forming a new
2008-12-03 Dan GohmanMark x86's V_SET0 and V_SETALLONES with isSimpleLoad...
2008-12-03 Bill WendlingChange label to 'carry' for unsigned adds.
2008-12-03 Dan GohmanAdd a sanity-check to tablegen to catch the case where...
2008-12-03 Dan GohmanFix a missing #include.
2008-12-03 Dan GohmanAdd an explicit keyword.
2008-12-03 Dan GohmanReplace a #include with a forward-declaration.
2008-12-03 Dan GohmanFix this comment to reflect that it applies to types...
2008-12-03 Dan GohmanFix byval arguments in the fastcc calling convention...
2008-12-03 Dan GohmanAdd nounwind attributes to this test.
2008-12-03 Dale Johannesentestcases for recent dag combiner changes
2008-12-02 Chris LattnerFix isIntN to work with APInts > 64 bits. This method...
2008-12-02 Evan ChengRemove a (what appears to be) overly strict assertion...
2008-12-02 Dale JohannesenMinor rewrite per review feedback.
2008-12-02 Scott MichelNon-functional change: make custom lowering for truncat...
2008-12-02 Scott MichelCellSPU:
2008-12-02 Dan GohmanFix a typo in a comment.
2008-12-02 Owen AndersonAdd support for folding spills into preceding defs...
2008-12-02 Dale JohannesenOne more transformation.
2008-12-02 Dale JohannesenMake the code do what the comment says it does.
2008-12-02 Chris LattnerComment typeo fix, thanks Duncan!
2008-12-02 Tilmann Schellermake it possible to custom lower TRUNCATE (needed for...
2008-12-02 Chris LattnerImplement PRE of loads in the GVN pass with a pretty...
2008-12-02 Nick LewyckyAdd a new SCEV representing signed division.
2008-12-02 Mon P WangRemoved some unnecessary code in widening.
2008-12-02 Chris Lattneradd a little helper function that does PHI translation.
2008-12-02 Chris Lattneradd a note
2008-12-02 Bill WendlingRemove some errors that crept in. No functionality...
2008-12-02 Bill WendlingMerge two if-statements into one.
2008-12-02 Bill WendlingMore styalistic changes. No functionality change.
2008-12-02 Chris Lattneradd densemap range insertion method.
2008-12-02 Bill Wendling- Remove the buggy -X/C -> X/-C transform. This isn...
2008-12-02 Bill WendlingImprove comment.
2008-12-02 Bill Wendling- Reduce nesting.
2008-12-02 Chris Lattnersome random comment improvements.
2008-12-02 Owen AndersonAdd a test for my previous PRE fix.
2008-12-02 Owen AndersonFix an issue that Chris noticed, where local PRE was...
2008-12-02 Evan ChengFix PR3124: overly strict assert.
2008-12-02 Dale JohannesenAdd a few more transformations.
2008-12-02 Bill WendlingSecond stab at target-dependent lowering of everyone...
2008-12-02 Bill WendlingReapply r60382. This time, don't mark "ADC" nodes with...
2008-12-01 Bill WendlingTemporarily revert r60382. It caused CodeGen/X86/i2k...
2008-12-01 Bill Wendling- Have "ADD" instructions return an implicit EFLAGS.
2008-12-01 Bill WendlingExpand getVTList, getNodeValueTypes, and SelectNodeTo...
2008-12-01 Chris LattnerAdd rdar reference, make this actually fail when the...
2008-12-01 Dale JohannesenConsider only references to an IV within the loop when
2008-12-01 Chris Lattnerreenable array_pod_sort, this time hopefully happy...
2008-12-01 Bill WendlingDon't rebuild RHSNeg. Just use the one that's already...
2008-12-01 Bill WendlingDocument what this check is doing. Also, no need to...
2008-12-01 Bill WendlingUse a simple comparison. Overflow on integer negation...
2008-12-01 Chris Lattnerdon't #include <algorithm> into the llvm namespace.
2008-12-01 Scott MichelCellSPU:
2008-12-01 Chris Lattnerswitch to std::sort until I have time to sort this...
2008-12-01 Chris Lattnercleanups suggested by duncan, thanks!
2008-12-01 Chris Lattnerdefine array_pod_sort in terms of operator< instead...
2008-12-01 Duncan SandsThere are no longer any places that require a
2008-12-01 Duncan SandsChange the interface to the type legalization method
2008-12-01 Bill WendlingGeneralize the FoldOrWithConstant method to fold for...
2008-12-01 Bill WendlingReduce copy-and-paste code by splitting out the code...
2008-12-01 Bill WendlingUse m_Specific() instead of double matching.
2008-12-01 Bill WendlingMove pattern check outside of the if-then statement...
2008-12-01 Chris LattnerRename some variables, only increment BI once at the...
2008-12-01 Chris Lattnerpull the predMap densemap out of the inner loop of...
2008-12-01 Chris Lattnerswitch a couple more calls to use array_pod_sort.
2008-12-01 Chris Lattnerdon't assume iterators implicitly convert to pointers.
2008-12-01 Chris LattnerIntroduce a new array_pod_sort function and switch...
2008-12-01 Chris LattnerEliminate use of setvector for the DeadInsts set, just...
2008-12-01 Chris LattnerDeleteTriviallyDeadInstructions is always passed the
2008-12-01 Chris Lattnersimplify DeleteTriviallyDeadInstructions again, unlike...
2008-12-01 Chris Lattnersimplify these patterns using m_Specific. No need...
2008-12-01 Chris LattnerTeach jump threading to clean up after itself, DCE...
2008-12-01 Chris LattnerThe PreVerifier pass preserves everything. In practice...
2008-12-01 Chris LattnerChange instcombine to use FoldPHIArgGEPIntoPHI to fold...
2008-12-01 Chris LattnerTeach inst combine to merge GEPs through PHIs. This...
2008-12-01 Chris Lattnertestcase for my previous commit.
2008-12-01 Chris LattnerMake GVN be more intelligent about redundant load
2008-12-01 Chris LattnerReimplement the non-local dependency data structure...
2008-12-01 Bill WendlingImplement ((A|B)&1)|(B&-2) -> (A&1) | B transformation...
2008-12-01 Eli FriedmanFix bogus assertion using getSExtValue for legitimate...
2008-12-01 Chris LattnerCache analyses in ivars and add some useful DEBUG output.
2008-11-30 Chris Lattnerimprove indentation, do cheap checks before expensive...
2008-11-30 Chris LattnerEliminate the DepResultTy abstraction. It is now compl...
2008-11-30 Eli FriedmanMinor cleanup: use getTrue and getFalse where appropria...
2008-11-30 Eli FriedmanSome minor cleanups to instcombine; no functionality...
2008-11-30 Chris LattnerCache TargetData/AliasAnalysis in the pass instead...
2008-11-30 Chris Lattneradd the rest of the comparison routines.
2008-11-30 Bill WendlingAdd instruction combining for ((A&~B)|(~A&B)) -> A...
2008-11-30 Bill WendlingImplement (A&((~A)|B)) -> A&B transformation in the...
2008-11-30 Bill WendlingForgot one remaining call to getSExtValue().
2008-11-30 Bill WendlinggetSExtValue() doesn't work for ConstantInts with bitwi...
2008-11-30 Eli FriedmanOptimize memmove and memset into the LLVM builtins...
2008-11-30 Eli FriedmanA couple small cleanups, plus a new potential optimization.
2008-11-30 Eli FriedmanMoving potential optimizations out of PR2330 into lib...
2008-11-30 Eli FriedmanFollowup to r60283: optimize arbitrary width signed...
2008-11-30 Eli FriedmanFix for PR2164: allow transforming arbitrary-width...
2008-11-30 Bill WendlingDon't make TwoToExp signed by default.
2008-11-30 Bill WendlingFrom Hacker's Delight:
next