index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
test
Commit message (
Expand
)
Author
Age
Files
Lines
*
Generalize target-independent folding rules for sizeof to handle more
Dan Gohman
2010-02-01
2
-36
/
+315
*
fix rdar://7590304, a miscompilation of objc apps on arm. The caller
Chris Lattner
2010-02-01
1
-1
/
+21
*
fix rdar://7590304, an infinite loop in instcombine. In the invoke
Chris Lattner
2010-02-01
1
-0
/
+22
*
Undo r94946 now all the tests are passing again.
Evan Cheng
2010-02-01
1
-1
/
+1
*
Avoid recursive sibcall's.
Evan Cheng
2010-01-31
1
-0
/
+24
*
Remove test which is no longer relevant.
Eli Friedman
2010-01-31
1
-15
/
+0
*
Simplify/generalize the xor+add->sign-extend instcombine.
Eli Friedman
2010-01-31
1
-6
/
+17
*
Add a small transform: transform -(X<<Y) to (-X<<Y) when the shift has a single
Eli Friedman
2010-01-31
1
-0
/
+8
*
Do not mark no-return calls tail calls. It'll screw up special calls like lon...
Evan Cheng
2010-01-31
1
-0
/
+12
*
Fix a gross typo: ARMv6+ may or may not support unaligned memory operations.
Anton Korobeynikov
2010-01-30
1
-4
/
+1
*
Check alignment of loads when deciding whether it is safe to execute them
Bob Wilson
2010-01-30
1
-0
/
+44
*
Allow more tailcall optimization: calls with inputs that are all passed in re...
Evan Cheng
2010-01-30
2
-9
/
+44
*
MC/X86 AsmParser: Handle absolute memory operands correctly. We were doing
Daniel Dunbar
2010-01-30
2
-1
/
+7
*
Remove ARM-specific calling convention from this test. Target data is
Bob Wilson
2010-01-30
1
-1
/
+1
*
MC/X86: Add a nice X86 assembler matcher test case from Kevin Enderby.
Daniel Dunbar
2010-01-29
2
-1
/
+1631
*
Revert my last couple of patches. They appear to have broken bison.
Eric Christopher
2010-01-29
2
-42
/
+0
*
Improve isSafeToLoadUnconditionally to recognize that GEPs with constant
Bob Wilson
2010-01-29
1
-0
/
+16
*
Catch more trivial tail call opportunities: no inputs and output types match.
Evan Cheng
2010-01-29
1
-2
/
+22
*
Make strcpy_chk lower to strcpy if we have a safe size.
Eric Christopher
2010-01-29
1
-0
/
+12
*
Add constant support to object size handling and remove default
Eric Christopher
2010-01-29
1
-0
/
+30
*
Remove the folding rule
Dan Gohman
2010-01-28
1
-0
/
+84
*
Fix PR6165. The bug was that LHSKnownZero was being and'd with DemandedMask
Duncan Sands
2010-01-28
1
-0
/
+19
*
convert the last 3 targets to use EmitFunctionBody() now that
Chris Lattner
2010-01-28
1
-1
/
+1
*
Fix a bug introduced by r94490 where it created a X86ISD::CMP whose output ty...
Evan Cheng
2010-01-28
1
-7
/
+48
*
Give AsmPrinter the most common expected implementation of
Chris Lattner
2010-01-28
1
-1
/
+1
*
emit a 0 byte instead of a noop if a function is empty on darwin.
Chris Lattner
2010-01-28
1
-1
/
+1
*
Avoid creating redundant PHIs in SSAUpdater::GetValueInMiddleOfBlock.
Bob Wilson
2010-01-27
1
-2
/
+7
*
Quick fix to a test that is currently failing on every Linux build bot. No idea
Chandler Carruth
2010-01-27
1
-1
/
+1
*
Revert commit 94666 (ddunbar) [Suppress clang warning about unused arguments].
Duncan Sands
2010-01-27
17
-17
/
+17
*
Suppress clang warning about unused arguments.
Daniel Dunbar
2010-01-27
17
-17
/
+17
*
Perform trivial tail call optimization for callees with "C" ABI. These are done
Evan Cheng
2010-01-27
3
-3
/
+15
*
When converting dbg.declare to dbg.value, attach promoted store's debug metad...
Victor Hernandez
2010-01-27
1
-2
/
+3
*
emit jump table an alias ".set" directives through MCStreamer as
Chris Lattner
2010-01-26
2
-2
/
+3
*
Emit .comm alignment in bytes but .align in powers of 2 for ARM ELF.
Rafael Espindola
2010-01-26
2
-7
/
+7
*
eliminate MCAsmInfo::NeedsSet: we now just use .set on any platform
Chris Lattner
2010-01-26
1
-1
/
+1
*
-disable-output is no longer needed with -analyze.
Dan Gohman
2010-01-26
63
-66
/
+66
*
Fix the the ceiling-division used in computing the MaxBECount so that it doesn't
Dan Gohman
2010-01-26
2
-2
/
+411
*
In mem2reg, for all alloca/stores that get promoted where the alloca has an a...
Victor Hernandez
2010-01-26
1
-0
/
+31
*
Implement cond ? -1 : 0 with sbb.
Evan Cheng
2010-01-26
1
-0
/
+22
*
Generate DEBUG_VALUE comments on x86. The (limited)
Dale Johannesen
2010-01-26
1
-0
/
+55
*
Fix the bitcode reader to deserialize nuw/nsw/etc. bits properly in the case
Dan Gohman
2010-01-25
1
-0
/
+27
*
wirte up .file and .file to the mc asmparser.
Chris Lattner
2010-01-25
1
-2
/
+5
*
Revert r94260 until findDbgDeclare() is made more efficient
Victor Hernandez
2010-01-25
1
-31
/
+0
*
Update test for darwin.
Rafael Espindola
2010-01-25
1
-2
/
+1
*
we removed support for darwin8 tools.
Chris Lattner
2010-01-25
1
-3
/
+1
*
Fix PR6134.
Rafael Espindola
2010-01-25
2
-9
/
+37
*
Attempt to unbreak test on Linux. Chris, please check.
Daniel Dunbar
2010-01-25
1
-3
/
+3
*
just remove this test, it is not reduced, is not clear what its testing for and
Chris Lattner
2010-01-24
1
-2870
/
+0
*
this test has been failing or a long time, just disable it for now to get
Chris Lattner
2010-01-24
1
-5
/
+5
*
fix a parsing problem on instructions like:
Chris Lattner
2010-01-24
1
-0
/
+1
[next]