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
*
Convert comments to proper Doxygen comments.
Dmitri Gribenko
2012-06-09
1
-4
/
+4
*
canonicalize:
Nuno Lopes
2012-06-08
1
-4
/
+5
*
Reapply commit 158073 with a fix (the testcase was already committed). The
Duncan Sands
2012-06-08
1
-123
/
+120
*
BoundsChecking: add support for ConstantPointerNull. fixes a bunch of instrum...
Nuno Lopes
2012-06-08
1
-6
/
+7
*
Revert commit 158073 while waiting for a fix. The issue is that reassociate
Duncan Sands
2012-06-08
1
-111
/
+123
*
Fix a bug in FoldSelectOpOp. Bitcast ops may change the number of vector elem...
Nadav Rotem
2012-06-07
1
-0
/
+6
*
Remove unused private fields found by clang's new -Wunused-private-field.
Benjamin Kramer
2012-06-06
1
-2
/
+0
*
Fix combine of uno && ord -> false so that the ordering of the fcmps doesn't
Chad Rosier
2012-06-06
1
-1
/
+3
*
Grab-bag of reassociate tweaks. Unify handling of dead instructions and
Duncan Sands
2012-06-06
1
-123
/
+111
*
LoopUnroll: always check for NULL LoopPassManager
Andrew Trick
2012-06-05
1
-3
/
+5
*
When gvn decides to replace an instruction with another, we have to patch the
Rafael Espindola
2012-06-04
1
-2
/
+200
*
Fix typos found by http://github.com/lyda/misspell-check
Benjamin Kramer
2012-06-02
7
-7
/
+7
*
PR1255: case ranges.
Stepan Dyatkovskiy
2012-06-02
2
-4
/
+4
*
Register the gcov "writeout" at init time. Don't list this as a d'tor. Instead,
Bill Wendling
2012-06-01
1
-2
/
+22
*
BoundsChecking: fix a bug when the handling of recursive PHIs failed and coul...
Nuno Lopes
2012-06-01
1
-22
/
+39
*
add -bounds-checking-multiple-traps option to make one trap BB per check
Nuno Lopes
2012-05-31
1
-1
/
+5
*
revamp BoundsChecking considerably:
Nuno Lopes
2012-05-31
1
-129
/
+230
*
Enhance the sinking code to handle diamond patterns. Patch by
Duncan Sands
2012-05-31
1
-75
/
+69
*
[asan] instrument cmpxchg and atomicrmw
Kostya Serebryany
2012-05-30
1
-8
/
+30
*
bounds checking:
Nuno Lopes
2012-05-29
1
-13
/
+51
*
ConstantRangesSet renamed to IntegersSubset. CRSBuilder renamed to IntegersSu...
Stepan Dyatkovskiy
2012-05-29
2
-8
/
+8
*
Fix suspicous hasOneUse() check, found by PVS Studio (PR12357).
Benjamin Kramer
2012-05-28
1
-1
/
+1
*
InstCombine: Fix infinite loop when encountering switch on trivial icmp.
Benjamin Kramer
2012-05-28
1
-1
/
+1
*
PR1255: Case Ranges
Stepan Dyatkovskiy
2012-05-28
2
-2
/
+8
*
Implement the indirect counter increment code in a better way. Instead of
Bill Wendling
2012-05-28
1
-53
/
+72
*
switch AttrListPtr::get to take an ArrayRef, simplifying a lot of clients.
Chris Lattner
2012-05-28
4
-27
/
+20
*
PR12967: Don't crash when trying to fold a shift that's larger than the type'...
Benjamin Kramer
2012-05-27
1
-1
/
+1
*
Reimplement the intrinsic verifier to use the same table as Intrinsic::getDef...
Chris Lattner
2012-05-27
1
-1
/
+1
*
Since commit 157467, if reassociate isn't actually going to change an expression
Duncan Sands
2012-05-26
1
-17
/
+20
*
SimplifyCFG: Turn the ad-hoc std::pair that represents switch cases into an e...
Benjamin Kramer
2012-05-26
1
-39
/
+54
*
Add support for branch weight metadata to MDBuilder and use it in various pla...
Benjamin Kramer
2012-05-26
2
-32
/
+23
*
Move this debug statement earlier so it is easy to see the order in
Duncan Sands
2012-05-26
1
-2
/
+2
*
The llvm_gcda_increment_indirect_counter function writes to the arguments that
Bill Wendling
2012-05-25
1
-17
/
+57
*
bounds checking: add support for byval arguments
Nuno Lopes
2012-05-25
1
-1
/
+9
*
boundschecking:
Nuno Lopes
2012-05-25
1
-50
/
+104
*
Make the reassociation pass more powerful so that it can handle expressions
Duncan Sands
2012-05-25
1
-255
/
+405
*
PR1255 related changes (case ranges):
Stepan Dyatkovskiy
2012-05-24
1
-40
/
+18
*
BoundsChecking: add a couple of simple tests and fix a bug in branch emition
Nuno Lopes
2012-05-23
1
-7
/
+19
*
Fix the inliner so that the optsize function attribute don't alter the
Patrik Hägglund
2012-05-23
1
-8
/
+11
*
Use zero-based shadow by default on Android.
Evgeniy Stepanov
2012-05-23
1
-2
/
+7
*
PR1255(case ranges) related changes in Local Transformations.
Stepan Dyatkovskiy
2012-05-23
1
-10
/
+14
*
address some of John Criswell's comments
Nuno Lopes
2012-05-22
1
-31
/
+84
*
hopefully fix the CMake build. sorry for breakage
Nuno Lopes
2012-05-22
1
-0
/
+1
*
add a new pass to instrument loads and stores for run-time bounds checking
Nuno Lopes
2012-05-22
5
-62
/
+286
*
revert my previous patches that introduced an additional parameter to the obj...
Nuno Lopes
2012-05-22
1
-106
/
+60
*
Fix PR12858, a crash due to GVN's PRE not fully removing an instruction from the
Duncan Sands
2012-05-22
1
-6
/
+12
*
Mark an unreachable region of code with llvm_unreachable.
Dan Gohman
2012-05-21
1
-1
/
+1
*
Do not pass an invalid domtree to SimplifyInstruction from
Peter Collingbourne
2012-05-20
1
-2
/
+2
*
Do not eliminate allocas whose alignment exceeds that of the
Peter Collingbourne
2012-05-19
1
-12
/
+35
*
Fix replacing all the users of objc weak runtime routines
Dan Gohman
2012-05-18
1
-2
/
+12
[next]