index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
Transforms
Commit message (
Expand
)
Author
Age
Files
Lines
*
[IRPGO] Centralize the function attribute inliner hint logic. NFC.
Sean Silva
2016-05-28
1
-43
/
+29
*
The patch fixes r271071
Evgeny Stupachenko
2016-05-28
1
-3
/
+4
*
[PM] Port the Sample FDO to new PM (part-2)
Xinliang David Li
2016-05-27
1
-5
/
+17
*
The patch refactors unroll pass.
Evgeny Stupachenko
2016-05-27
2
-204
/
+251
*
[asan] Add option to enable asan-use-after-scope from clang.
Vitaly Buka
2016-05-27
1
-5
/
+10
*
[PM] Port the Sample FDO to new PM (part-1)
Xinliang David Li
2016-05-27
2
-20
/
+38
*
[InstCombine] move and/sext fold to helper function; NFCI
Sanjay Patel
2016-05-27
1
-27
/
+28
*
[LCSSA] Simplify. Suggested by Sanjoy.
Davide Italiano
2016-05-27
1
-1
/
+1
*
[GVN] Preserve !range metadata when PRE'ing loads
Sanjoy Das
2016-05-27
1
-0
/
+2
*
Use StringRef::startswith instead of find(...) == 0.
Benjamin Kramer
2016-05-27
1
-3
/
+3
*
Vectorizer: track non-fast FP instructions through phis when finding reductions.
Tim Northover
2016-05-27
1
-1
/
+1
*
Reapply r270865 -- previous bot failure is unrelated
Xinliang David Li
2016-05-27
1
-1
/
+1
*
Remove sample profile dependency to instcombine, which is not a analysis pass.
Dehao Chen
2016-05-27
1
-8
/
+0
*
Apply clang-tidy's misc-move-constructor-init throughout LLVM.
Benjamin Kramer
2016-05-27
4
-10
/
+14
*
[RewriteStatepointsForGC] All constant should have null base pointer
Igor Laevsky
2016-05-27
1
-8
/
+16
*
Avoid some copies by using const references.
Benjamin Kramer
2016-05-27
2
-5
/
+5
*
Revert: r270973 - [X86][SSE] Replace (V)PMOVSX and (V)PMOVZX integer extensio...
Simon Pilgrim
2016-05-27
1
-0
/
+44
*
[X86][SSE] Replace (V)PMOVSX and (V)PMOVZX integer extension intrinsics with ...
Simon Pilgrim
2016-05-27
1
-44
/
+0
*
Form objc_storeStrong in the presence of bitcasts.
Pete Cooper
2016-05-27
1
-1
/
+2
*
ValueMapper: fix typo in minor optimization on constant mapping (NFC)
Mehdi Amini
2016-05-27
1
-1
/
+2
*
Attach profile summary in IR based instrumentation pass.
Easwaran Raman
2016-05-26
1
-1
/
+8
*
[LoopUnrollAnalyzer] Fix a crash in analyzeLoopUnrollCost.
Michael Zolotukhin
2016-05-26
1
-20
/
+16
*
[MemCpyOpt] Don't perform callslot optimization across may-throw calls
David Majnemer
2016-05-26
1
-1
/
+13
*
[BBVectorize] Don't vectorize selects with a scalar condition and vector oper...
Michael Kuperstein
2016-05-26
1
-1
/
+8
*
Revert 270865 -- unexplained bot failure on linux/ppcle
Xinliang David Li
2016-05-26
1
-1
/
+1
*
Use new interface in Triple /NFC
Xinliang David Li
2016-05-26
1
-1
/
+1
*
[InstCombine] Catch more bswap cases missed due to zext and truncs.
Chad Rosier
2016-05-26
2
-18
/
+76
*
Add auto-exporting of symbols from tools so that plugins work on Windows
John Brawn
2016-05-26
1
-0
/
+2
*
[MergedLoadStoreMotion] Don't transform across may-throw calls
David Majnemer
2016-05-26
1
-24
/
+32
*
[MergedLoadStoreMotion] Small cleanup
David Majnemer
2016-05-26
1
-57
/
+45
*
MemorySSA: Revert r269678 and r268068; replace with special casing in MemorySSA.
Peter Collingbourne
2016-05-26
1
-0
/
+8
*
[X86] Add the AVX storeu intrinsics to InstCombine and LoopStrengthReduce in ...
Craig Topper
2016-05-26
2
-0
/
+19
*
[IRCE] Use C++11 style initializers; NFC
Sanjoy Das
2016-05-26
1
-9
/
+5
*
MemorySSA: Remove argument to createNewAccess function.
Peter Collingbourne
2016-05-26
1
-4
/
+3
*
[IRCE] Optimize conjunctions of range checks
Sanjoy Das
2016-05-26
1
-51
/
+69
*
[IRCE] Refactor out a parseRangeCheckFromCond; NFC
Sanjoy Das
2016-05-26
1
-50
/
+39
*
[PM] Port PartiallyInlineLibCalls to the new pass manager.
Davide Italiano
2016-05-25
2
-39
/
+55
*
Move whole-program virtual call optimization pass after function attribute in...
Peter Collingbourne
2016-05-25
1
-24
/
+27
*
fix typo; NFC
Sanjay Patel
2016-05-25
1
-1
/
+1
*
ValueMaterializer: rename materializeDeclFor() to materialize()
Mehdi Amini
2016-05-25
1
-3
/
+3
*
ValueMaterializer: fuse materializeDeclFor and materializeInitFor (NFC)
Mehdi Amini
2016-05-25
1
-7
/
+1
*
[PM] CorrelatedValuePropagation: pass state to function. NFCI.
Davide Italiano
2016-05-25
1
-29
/
+16
*
Use new triple API to check if comdat is supported
Xinliang David Li
2016-05-25
1
-1
/
+1
*
Clarify that we match BSwap in InstCombine and BitReverse in CGP. NFC.
Chad Rosier
2016-05-25
3
-7
/
+7
*
[ThinLTO] Refactor ODR resolution and internalization (NFC)
Teresa Johnson
2016-05-25
1
-0
/
+77
*
[X86][SSE] Replace (V)CVTDQ2PD(Y) and (V)CVTPS2PD(Y) lossless conversion intr...
Simon Pilgrim
2016-05-25
1
-2
/
+0
*
[X86] Remove the llvm.x86.sse2.storel.dq intrinsic. It hasn't been used in a ...
Craig Topper
2016-05-25
1
-2
/
+0
*
[FunctionAttrs] Volatile loads should disable readonly
David Majnemer
2016-05-25
1
-0
/
+5
*
[PM] Port BDCE to the new pass manager.
Davide Italiano
2016-05-25
2
-34
/
+40
*
[esan|wset] EfficiencySanitizer working set tool fastpath
Derek Bruening
2016-05-25
1
-0
/
+104
[next]