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
*
Fix the last crasher I've gotten a reproduction for in SROA. This one
Chandler Carruth
2012-09-18
1
-0
/
+2
*
New utility for expanding integer division for targets that don't support it.
Michael Ilseman
2012-09-18
2
-0
/
+307
*
LSR critical edge splitting fix for PR13756.
Andrew Trick
2012-09-18
1
-11
/
+15
*
Fix getCommonType in a different way from the way I fixed it when
Chandler Carruth
2012-09-18
1
-1
/
+1
*
Fix build for compilers that don't understand injected class names properly.
Benjamin Kramer
2012-09-18
1
-2
/
+2
*
SROA: Use CRTP for OpSplitter to get rid of virtual dispatch and the virtual-...
Benjamin Kramer
2012-09-18
1
-8
/
+7
*
SROA: Replace the member function template contraption for recursively splitt...
Benjamin Kramer
2012-09-18
1
-97
/
+105
*
SROA.cpp: Appease msvc.
NAKAMURA Takumi
2012-09-18
1
-1
/
+1
*
LNT builders have picked up new SROA, disable it to get the remaining builder...
Benjamin Kramer
2012-09-18
1
-1
/
+1
*
Fix a warning in release builds and a test case I forgot to update with
Chandler Carruth
2012-09-18
1
-0
/
+1
*
Add a major missing piece to the new SROA pass: aggressive splitting of
Chandler Carruth
2012-09-18
2
-8
/
+221
*
Fix instcombine to obey requested alignment when merging allocas.
Richard Osborne
2012-09-18
1
-3
/
+7
*
Mark unimplemented copy constructors and copy assignment operators as LLVM_DE...
Craig Topper
2012-09-18
1
-3
/
+2
*
PGO: preserve branch-weight metadata when simplifying Switch to a sub, an icmp
Manman Ren
2012-09-18
1
-1
/
+38
*
PGO: preserve branch-weight metadata when simplifying Switch
Manman Ren
2012-09-17
1
-0
/
+15
*
PGO: preserve branch-weight metadata when simplifying SwitchOnSelect.
Manman Ren
2012-09-17
1
-5
/
+28
*
PGO: preserve branch-weight metadata when simplifying two branches with a common
Manman Ren
2012-09-17
1
-0
/
+27
*
s/__llvm_gcov_flush/__gcov_flush/g
Bill Wendling
2012-09-17
1
-4
/
+4
*
NewSROA: Provide a full set of operator< for ByteRanges.
Benjamin Kramer
2012-09-17
1
-2
/
+7
*
Fix a few vars that can end up being used without initialization.
Axel Naumann
2012-09-17
2
-2
/
+2
*
Refactor the SROA visitors for partitioning an alloca and building
Chandler Carruth
2012-09-16
1
-24
/
+29
*
Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments.
Craig Topper
2012-09-15
2
-4
/
+6
*
Disable new sroa now that all buildbots have tested it.
Benjamin Kramer
2012-09-15
1
-1
/
+1
*
Port the SSAUpdater-based promotion logic from the old SROA pass to the
Chandler Carruth
2012-09-15
2
-14
/
+167
*
PGO: preserve branch-weight metadata when simplifying two branches with a common
Manman Ren
2012-09-15
1
-111
/
+42
*
Remove comment.
Bill Wendling
2012-09-14
1
-1
/
+1
*
PGO: preserve branch-weight metadata when simplifying a switch with a single
Manman Ren
2012-09-14
2
-2
/
+33
*
Stylistic and 80-col fixes
Evan Cheng
2012-09-14
2
-8
/
+4
*
Review feedback from Duncan Sands. Alphabetize includes and simplify
Alex Rosenberg
2012-09-14
1
-3
/
+3
*
Try to fix the bots by detecting inconsistant branch-weight metadata.
Manman Ren
2012-09-14
1
-4
/
+10
*
PGO: preserve branch-weight metadata when merging two switches where
Manman Ren
2012-09-14
1
-5
/
+12
*
Fix Doxygen issues:
Dmitri Gribenko
2012-09-14
1
-4
/
+4
*
SROA: Silence unused variable warnings in Release builds.
Benjamin Kramer
2012-09-14
1
-1
/
+8
*
Rework the computation of a sub-structure natural type. There were
Chandler Carruth
2012-09-14
1
-10
/
+20
*
Rely on the recursive check for pointer types rather than adding an
Chandler Carruth
2012-09-14
1
-3
/
+0
*
Be a bit more aggressive in bailing out of this routine. Spotted by
Chandler Carruth
2012-09-14
1
-1
/
+1
*
Add some comments clarifying that the GEP analysis for vector GEPs is
Chandler Carruth
2012-09-14
1
-1
/
+4
*
Move an instance variable to a local variable based on review by Duncan.
Chandler Carruth
2012-09-14
1
-9
/
+16
*
Add a comment about debug intrinsics that I *really* don't want to
Chandler Carruth
2012-09-14
1
-0
/
+2
*
Add two asserts that Duncan thought would help ensure things don't rot
Chandler Carruth
2012-09-14
1
-0
/
+2
*
Actually keep the flag default-off for now. =/ That's what I get for
Chandler Carruth
2012-09-14
1
-1
/
+1
*
Remove some dead, commented out code Duncan spotted in review.
Chandler Carruth
2012-09-14
1
-4
/
+0
*
Wrap the dumping and printing routines in NDEBUG and LLVM_ENABLE_DUMP macros.
Chandler Carruth
2012-09-14
1
-0
/
+6
*
Lots of comment fixes and cleanups from Duncan's review.
Chandler Carruth
2012-09-14
1
-10
/
+12
*
SROA.cpp: Unbreak gcc, sorry!
NAKAMURA Takumi
2012-09-14
1
-2
/
+2
*
SROA.cpp: Appease msvc. LLVM_ATTRIBUTE(s) should come front of "const".
NAKAMURA Takumi
2012-09-14
1
-2
/
+2
*
Speculative change to try to fix older GCC versions that can't handle
Chandler Carruth
2012-09-14
1
-2
/
+2
*
Introduce a new SROA implementation.
Chandler Carruth
2012-09-14
4
-2
/
+2642
*
Handle the new !tbaa.struct metadata tags when converting a memcpy into scalar
Dan Gohman
2012-09-13
1
-0
/
+17
*
Extract code for reducing a type to a single value type into a helper function.
Dan Gohman
2012-09-13
1
-15
/
+21
[next]