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
...
*
Reformat partially, where I touched for whitespace changes.
NAKAMURA Takumi
2014-10-28
3
-9
/
+11
*
LoopRerollPass.cpp: Use range-based loop. NFC.
NAKAMURA Takumi
2014-10-28
1
-11
/
+9
*
Untabify and whitespace cleanups.
NAKAMURA Takumi
2014-10-28
5
-36
/
+35
*
[asan] experimental tracing for indirect calls, llvm part.
Kostya Serebryany
2014-10-27
1
-4
/
+44
*
InstCombine: Fix a combine assuming that icmp operands were integers
David Majnemer
2014-10-27
1
-0
/
+4
*
Add an option to the LTO code generator to disable vectorization during LTO
Arnold Schwaighofer
2014-10-26
1
-1
/
+1
*
LSR: Minor cleanup after Daniel's patch.
Andrew Trick
2014-10-25
1
-4
/
+2
*
Fix LSR compile time.
Andrew Trick
2014-10-25
1
-0
/
+5
*
[SeparateConstOffsetFromGEP] Fixed a bug related to unsigned modulo
Jingyue Wu
2014-10-25
1
-6
/
+6
*
Clean up assume intrinsic pattern matching, no need to check that the argumen...
Benjamin Kramer
2014-10-25
1
-1
/
+1
*
[SeparateConstOffsetFromGEP] Fixed a bug in rebuilding OR expressions
Jingyue Wu
2014-10-25
1
-2
/
+7
*
InstCombine: Remove overzealous asserts
David Majnemer
2014-10-25
1
-12
/
+19
*
[msan] Make -msan-check-constant-shadow a bit stronger.
Evgeniy Stepanov
2014-10-24
1
-3
/
+10
*
If requested, apply function merging at -O0 too. It's useful there to reduce ...
Nick Lewycky
2014-10-23
1
-6
/
+10
*
Make getDISubprogram(const Function *F) available in LLVM
Timur Iskhodzhanov
2014-10-23
1
-24
/
+1
*
Handle sqrt() shrinking in SimplifyLibCalls like any other call
Sanjay Patel
2014-10-23
2
-41
/
+14
*
Assert that ValueHandleBase::ValueIsRAUWd doesn't change the tracked Value type.
Frederic Riss
2014-10-23
1
-3
/
+9
*
[msan] Emit checks for constant shadow values under an experimental flag.
Evgeniy Stepanov
2014-10-23
1
-3
/
+12
*
LoopVectorize: Simplify code. No functionality change.
Benjamin Kramer
2014-10-22
1
-19
/
+7
*
Shorten auto iterators for function basic blocks.
Diego Novillo
2014-10-22
1
-37
/
+36
*
Use auto iteration in lib/Transforms/Scalar/SampleProfile.cpp. No functional ...
Diego Novillo
2014-10-22
1
-18
/
+15
*
Preserving 'nonnull' metadata in SimplifyCFG
Philip Reames
2014-10-22
1
-1
/
+4
*
Shrinkify libcalls: use float versions of double libm functions with fast-mat...
Sanjay Patel
2014-10-22
2
-10
/
+24
*
Change error to warning when a profile cannot be found.
Diego Novillo
2014-10-22
1
-1
/
+3
*
Support using sample profiles with partial debug info.
Diego Novillo
2014-10-22
1
-12
/
+29
*
[msan] Handle param-tls overflow.
Evgeniy Stepanov
2014-10-22
1
-14
/
+34
*
Revert "Teach the load analysis to allow finding available values which requi...
Hans Wennborg
2014-10-21
2
-6
/
+5
*
LTO: respect command-line options that disable vectorization.
JF Bastien
2014-10-21
1
-2
/
+4
*
Add minnum / maxnum intrinsics
Matt Arsenault
2014-10-21
2
-0
/
+86
*
Teach combineMetadata how to merge 'nonnull' metadata.
Philip Reames
2014-10-21
1
-0
/
+4
*
Preserve 'nonnull' when changing type of the load.
Philip Reames
2014-10-21
1
-0
/
+1
*
InstCombine: Simplify FoldICmpCstShrCst
David Majnemer
2014-10-21
1
-48
/
+16
*
Teach the load analysis to allow finding available values which require
Chandler Carruth
2014-10-21
2
-5
/
+6
*
Do not attribute static allocas to the call site's DebugLoc.
Paul Robinson
2014-10-21
1
-0
/
+6
*
Introduce enum values for previously defined metadata types. (NFC)
Philip Reames
2014-10-21
2
-7
/
+3
*
IR: Replace DataLayout::RoundUpAlignment with RoundUpToAlignment
David Majnemer
2014-10-20
1
-4
/
+4
*
Fix a somewhat subtle pair of issues with JumpThreading I introduced in
Chandler Carruth
2014-10-20
1
-3
/
+6
*
Teach the load analysis driving core instcombine logic and other bits of
Chandler Carruth
2014-10-20
2
-2
/
+12
*
Do a better and more complete job of preserving metadata when combining
Chandler Carruth
2014-10-19
1
-8
/
+58
*
InstCombine: (sub (or A B) (xor A B)) --> (and A B)
David Majnemer
2014-10-19
1
-0
/
+9
*
InstCombine: Optimize icmp eq/ne (shl Const2, A), Const1
David Majnemer
2014-10-19
2
-1
/
+50
*
Fix a long-standing miscompile in the load analysis that was uncovered
Chandler Carruth
2014-10-19
1
-1
/
+5
*
Preserve AA metadata when combining (cast (load (...))) -> (load (cast
Chandler Carruth
2014-10-18
1
-0
/
+3
*
[InstCombine] Do an about-face on how LLVM canonicalizes (cast (load
Chandler Carruth
2014-10-18
1
-72
/
+43
*
[SROA] Change how SROA does vector-based promotion of allocas to handle
Chandler Carruth
2014-10-18
1
-44
/
+128
*
[msan] Fix handling of byval arguments with large alignment.
Evgeniy Stepanov
2014-10-17
1
-1
/
+2
*
Revert "TRE: make TRE a bit more aggressive"
Rafael Espindola
2014-10-17
1
-2
/
+8
*
[DSE] Remove no-data-layout-only type-based overlap checking
Hal Finkel
2014-10-17
1
-8
/
+1
*
[SROA] Switch the common variable name for the 'AllocaSlices' class to
Chandler Carruth
2014-10-16
1
-40
/
+42
*
[SROA] More range-based cleanups to SROA, these brought to you by
Chandler Carruth
2014-10-16
1
-25
/
+12
[prev]
[next]