index
:
external_llvm.git
replicant-6.0
Android's llvm
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Transforms
Commit message (
Expand
)
Author
Age
Files
Lines
*
InstCombine: Defensively avoid undefined shifts by limiting the amount to the...
Benjamin Kramer
2012-08-28
1
-2
/
+2
*
InstCombine: Guard the transform introduced in r162743 against large ints and...
Benjamin Kramer
2012-08-28
1
-10
/
+10
*
Make sure that we don't call getZExtValue on values > 64 bits.
Nadav Rotem
2012-08-28
1
-8
/
+8
*
Teach InstCombine to canonicalize [SU]div+[AL]shl patterns.
Nadav Rotem
2012-08-28
1
-0
/
+20
*
Don't use for loops for code that is only intended to execute once. No
Dan Gohman
2012-08-27
1
-6
/
+6
*
[asan/tsan] rename FunctionBlackList* to BlackList* as this class is not limi...
Kostya Serebryany
2012-08-24
5
-17
/
+17
*
[asan/tsan] extend the functionality of FunctionBlackList to globals and modu...
Kostya Serebryany
2012-08-24
2
-55
/
+89
*
GVN: Fix quadratic runtime on the number of switch cases.
Benjamin Kramer
2012-08-24
1
-2
/
+10
*
SimplifyLibCalls: Give all safely-shrinkable libcalls the same treatment.
Benjamin Kramer
2012-08-22
1
-5
/
+5
*
Add a few float shrinking optimizations to SimplifyLibCalls. Unsafe
Chad Rosier
2012-08-22
1
-36
/
+99
*
Add a new helper function, AddOpt(F1, F1, Opt), as part of PR13574. No
Chad Rosier
2012-08-22
1
-14
/
+15
*
MaximumSpanningTree::EdgeWeightCompare: Make this comparator actually be a
Richard Smith
2012-08-21
1
-25
/
+28
*
Don't bind a reference to a dereferenced null pointer (for return value of We...
Richard Smith
2012-08-21
1
-1
/
+2
*
Port the global copy optimization from the SROA pass to InstCombine.
Chandler Carruth
2012-08-21
2
-179
/
+171
*
[asan] add code to detect global initialization fiasco in C/C++. The sub-pass...
Kostya Serebryany
2012-08-21
1
-63
/
+171
*
revise debug output to avoid dangling pointer
Michael Liao
2012-08-21
1
-1
/
+1
*
InstCombine: Fix a crasher when encountering a function pointer.
Benjamin Kramer
2012-08-18
1
-1
/
+1
*
Remove overly conservative hasOneUse check, this always expands into a single...
Benjamin Kramer
2012-08-18
1
-1
/
+1
*
InstCombine: Add a couple of fabs identities for comparing with 0.0.
Benjamin Kramer
2012-08-18
1
-0
/
+39
*
SimplifyLibcalls: Add fabs and trunc to the list of libcalls that are safe to...
Benjamin Kramer
2012-08-18
1
-0
/
+4
*
Fix undefined behavior (binding a reference to a dereferenced null pointer) if
Richard Smith
2012-08-17
1
-1
/
+1
*
Teach GVN to reason about edges dominating uses. This allows it to handle cases
Rafael Espindola
2012-08-16
1
-47
/
+48
*
Remove dead flag.
Bill Wendling
2012-08-15
1
-9
/
+3
*
[asan] implement --asan-always-slow-path, which is a part of the improvement ...
Kostya Serebryany
2012-08-15
1
-2
/
+5
*
fix infinite loop in instcombine with more than 4GB memcpy
Michael Liao
2012-08-15
1
-6
/
+4
*
[asan] insert crash basic blocks inline as opposed to inserting them at the e...
Kostya Serebryany
2012-08-14
1
-30
/
+27
*
Change greater than to greater than or equal so that an identical sized store...
Craig Topper
2012-08-14
1
-1
/
+1
*
During the CodeGenPrepare we often lower intrinsics (such as objsize)
Nadav Rotem
2012-08-14
1
-0
/
+39
*
LICM uses AliasSet information to hoist and sink instructions. However, other...
Nadav Rotem
2012-08-13
1
-0
/
+5
*
[asan] remove the code for --asan-merge-callbacks as it appears to be a bad i...
Kostya Serebryany
2012-08-13
1
-78
/
+8
*
Constify some basic blocks, no functionality change.
Rafael Espindola
2012-08-10
1
-8
/
+8
*
Fix crash when when do lto on Bullet. Dynamic GEPs in SROA were incorrectly ...
Pete Cooper
2012-08-10
1
-3
/
+8
*
isAllocLikeFn is allowed to return true for functions which read memory; make
Eli Friedman
2012-08-08
1
-2
/
+9
*
Avoid recomputing the unique exit blocks and their insert points when doing
Dan Gohman
2012-08-08
1
-11
/
+26
*
Fix a serious typo in InstCombine's optimization of comparisons.
Bob Wilson
2012-08-07
1
-1
/
+1
*
Move the "findUsedStructTypes" functionality outside of the Module class.
Bill Wendling
2012-08-03
1
-2
/
+3
*
remove tabs from my previous commit.
Nuno Lopes
2012-08-01
1
-2
/
+2
*
(hopefuly) fix the remaining cases where null wasnt expected (PR13497).
Nuno Lopes
2012-08-01
1
-0
/
+4
*
Teach CodeGenPrep to look past bitcast when it's duplicating return instruction
Evan Cheng
2012-07-27
2
-7
/
+34
*
fix infinite loop in instcombine in the presence of a (malformed) self-refere...
Nuno Lopes
2012-07-27
1
-0
/
+4
*
Simplify demanded bits of select sources where the condition is a constant ve...
Pete Cooper
2012-07-26
2
-0
/
+34
*
Teach SimplifyDemandedBits how to look through fpext and fptrunc to simplify ...
Pete Cooper
2012-07-26
1
-0
/
+6
*
do null checks for a few more Emit*() functions.
Nuno Lopes
2012-07-26
1
-17
/
+15
*
Stop reassociate from looking through expressions of arbitrary complexity. This
Duncan Sands
2012-07-26
1
-0
/
+2
*
It's not safe to blindly remove invoke instructions. This happens when we
Nick Lewycky
2012-07-25
1
-1
/
+2
*
revert r160742: it's breaking CMake build
Nuno Lopes
2012-07-25
1
-4
/
+1
*
MemoryBuiltins: add support to determine the size of strdup'ed non-constant s...
Nuno Lopes
2012-07-25
1
-1
/
+4
*
add EmitStrNLen()
Nuno Lopes
2012-07-25
1
-0
/
+27
*
make all Emit*() functions consult the TargetLibraryInfo information before c...
Nuno Lopes
2012-07-25
4
-63
/
+126
*
Don't delete one more instruction than we're allowed to. This should fix the
Nick Lewycky
2012-07-24
1
-1
/
+3
[next]