index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
IPO
Commit message (
Expand
)
Author
Age
Files
Lines
*
Respect llvm.used in Internalize.
Rafael Espindola
2013-07-25
2
-21
/
+23
*
Check that TD isn't NULL before dereferencing it down this path.
Nick Lewycky
2013-07-25
1
-1
/
+1
*
Make these methods const correct.
Rafael Espindola
2013-07-25
1
-2
/
+2
*
Don't crash when llvm.compiler.used becomes empty.
Rafael Espindola
2013-07-20
1
-0
/
+5
*
s/compiler_used/compiler.used/.
Rafael Espindola
2013-07-19
1
-7
/
+7
*
Clean up some of this code a tiny bit, no functionality change.
Nick Lewycky
2013-07-18
1
-13
/
+8
*
Fix comparisons of alloca alignment in inliner merging
Hal Finkel
2013-07-17
1
-3
/
+12
*
When the inliner merges allocas, it must keep the larger alignment
Hal Finkel
2013-07-16
1
-2
/
+16
*
Fix comment
Eli Bendersky
2013-07-08
1
-3
/
+2
*
Fix annotation of unlink. Should fix builder.
Nick Lewycky
2013-07-06
1
-1
/
+1
*
Extend 'readonly' and 'readnone' to work on function arguments as well as
Nick Lewycky
2013-07-06
1
-37
/
+364
*
Tabs to spaces. No functionality change.
Nick Lewycky
2013-07-04
1
-10
/
+10
*
Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ...
Craig Topper
2013-07-04
1
-2
/
+2
*
Added support in FunctionAttrs for adding relevant function/argument attribut...
Michael Gottesman
2013-07-03
1
-0
/
+10
*
Add missing break statements. Noticed by inspection.
Nick Lewycky
2013-07-02
1
-0
/
+2
*
DeadArgumentElimination: keep return value on functions that have a live argu...
Stephen Lin
2013-06-30
1
-28
/
+60
*
Debug Info: clean up usage of Verify.
Manman Ren
2013-06-28
2
-3
/
+11
*
Add a flag to defer vectorization into a phase after the inliner and its
Chandler Carruth
2013-06-24
1
-16
/
+66
*
Revert "FunctionAttrs: Merge attributes once instead of doing it for every ar...
Benjamin Kramer
2013-06-22
1
-46
/
+32
*
FunctionAttrs: Merge attributes once instead of doing it for every argument.
Benjamin Kramer
2013-06-22
1
-32
/
+46
*
Remove the simplify-libcalls pass (finally)
Meador Inge
2013-06-20
1
-5
/
+1
*
Disable vectorization for -Oz.
Nadav Rotem
2013-06-17
1
-1
/
+1
*
Enable the loop vectorizer by default for -Os and -O2.
Nadav Rotem
2013-06-17
1
-7
/
+1
*
PruneEH: Only merge attribute sets when used. No functionality change.
Benjamin Kramer
2013-06-15
1
-7
/
+5
*
Fix DeleteDeadVarargs not to crash on functions referenced by BlockAddresses
Derek Schuff
2013-06-13
1
-2
/
+9
*
Always remove an alias when we rename the target.
Rafael Espindola
2013-06-12
1
-3
/
+1
*
Change how globalopt handles aliases in llvm.used.
Rafael Espindola
2013-06-11
1
-100
/
+156
*
Make DeadArgumentElimination more conservative on variadic functions
Tim Northover
2013-06-09
1
-5
/
+17
*
Jeffrey Yasskin volunteered to benchmark the vectorizer on -O2 or -Os when co...
Nadav Rotem
2013-06-06
1
-1
/
+7
*
Move getRealLinkageName to a common place and remove all the duplicates of it.
Benjamin Kramer
2013-06-01
1
-13
/
+2
*
GlobalOpt: fix an issue where CXAAtExitFn points to a deleted function.
Manman Ren
2013-05-14
1
-3
/
+3
*
Don't replace an alias in llvm.used with its target.
Rafael Espindola
2013-05-09
1
-2
/
+102
*
Fix const merging when an alias of a const is llvm.used.
Rafael Espindola
2013-05-06
1
-4
/
+6
*
This patch breaks up Wrap.h so that it does not have to include all of
Filip Pizlo
2013-05-01
2
-2
/
+0
*
Move C++ code out of the C headers and into either C++ headers
Eric Christopher
2013-04-22
2
-0
/
+10
*
Clarify that llvm.used can contain aliases.
Rafael Espindola
2013-04-22
2
-7
/
+5
*
MergeFunc: Make pointer and integer types generate the same hash.
Benjamin Kramer
2013-04-19
1
-2
/
+11
*
Implement a better fix for PR15185.
Bill Wendling
2013-04-18
1
-6
/
+11
*
We are not able to bitcast a pointer to an integral value.
Bill Wendling
2013-04-15
1
-5
/
+5
*
SLPVectorizer: Make it a function pass and add code for hoisting the vector-g...
Nadav Rotem
2013-04-15
1
-4
/
+2
*
Add an option -vectorize-slp-aggressive for running the BB vectorizer. Make -...
Nadav Rotem
2013-04-15
1
-1
/
+12
*
Rename the slp-vectorizer clang/llvm flags. No functionality change.
Nadav Rotem
2013-04-15
1
-3
/
+3
*
GlobalDCE: Fix an oversight in my last commit that could lead to crashes.
Benjamin Kramer
2013-04-13
1
-2
/
+2
*
Fix a scalability issue with complex ConstantExprs.
Benjamin Kramer
2013-04-13
1
-4
/
+9
*
Use a worklist to avoid a sneaky iterator invalidation.
Bill Wendling
2013-04-02
1
-3
/
+3
*
Move library call prototype attribute inference to functionattrs
Meador Inge
2013-03-21
1
-2
/
+739
*
Use LLVMBool instead of 'bool' in the C API. Based on a patch by Peter Zotov!
Nick Lewycky
2013-03-10
1
-3
/
+3
*
Generalize my previous fix for -print-options.
Andrew Trick
2013-03-06
1
-1
/
+1
*
Give -loop-vectorize an explicit default.
Andrew Trick
2013-03-06
1
-1
/
+1
*
Check isDiscardableIfUnused, rather than hasLocalLinkage, when bumping
Lang Hames
2013-03-04
1
-3
/
+3
[next]