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
/
Utils
/
SimplifyLibCalls.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fold strlen(expr ? "str1" : "str2") to x ? len1 : len2. This fires about 330 ...
Nick Lewycky
2014-05-02
1
-0
/
+15
*
[C++] Use 'nullptr'. Transforms edition.
Craig Topper
2014-04-25
1
-150
/
+150
*
[C++11] Add range based accessors for the Use-Def chain of a Value.
Chandler Carruth
2014-03-09
1
-17
/
+11
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-05
1
-46
/
+90
*
Rename many DataLayout variables from TD to DL.
Rafael Espindola
2014-02-21
1
-85
/
+85
*
SimplifyLibCalls: Push TLI through the exp2->ldexp transform.
Benjamin Kramer
2014-02-04
1
-29
/
+29
*
OS X: the correct function is __sincospif_stret, not __sincospi_stretf
Tim Northover
2014-02-04
1
-2
/
+2
*
Add strchr(p, 0) -> p + strlen(p) to SimplifyLibCalls
Kai Nacke
2014-02-04
1
-3
/
+4
*
Enable double to float shrinking optimizations for binary functions like 'fmi...
Yi Jiang
2013-12-16
1
-0
/
+49
*
Resubmit r196544: Apply transformation on OS X 10.9+ and iOS 7.0+: pow(10, x)...
Yi Jiang
2013-12-12
1
-0
/
+6
*
Revert 196544 due to internal bot failures.
Manman Ren
2013-12-08
1
-6
/
+0
*
Apply transformation on OS X 10.9+ and iOS 7.0+: pow(10, x) ―> __exp10(x)
Yi Jiang
2013-12-05
1
-0
/
+6
*
Add the cold attribute to error-reporting call sites
Hal Finkel
2013-11-17
1
-0
/
+72
*
Use type form of getIntPtrType.
Matt Arsenault
2013-11-10
1
-1
/
+1
*
Convert calls to __sinpi and __cospi into __sincospi_stret
Bob Wilson
2013-11-03
1
-0
/
+156
*
Use StringRef::npos for StringRef instead of std::string one
Matt Arsenault
2013-09-10
1
-3
/
+3
*
SimplifyLibCalls: When emitting an overloaded fp function check that it's ava...
Benjamin Kramer
2013-08-31
1
-3
/
+23
*
No functionality change.
Yunzhong Gao
2013-08-21
1
-2
/
+2
*
Adds missing TLI check for library simplification of
Michael Kuperstein
2013-08-19
1
-3
/
+6
*
Fixing a corner-case bug in strchr and strrchr lib call optimizations where
Yunzhong Gao
2013-08-15
1
-2
/
+2
*
Added support for the Builtin attribute.
Michael Gottesman
2013-06-27
1
-1
/
+1
*
Remove the simplify-libcalls pass (finally)
Meador Inge
2013-06-20
1
-0
/
+50
*
Do not optimise fprintf() calls if its return value is used.
Peter Collingbourne
2013-04-17
1
-9
/
+12
*
LibCallSimplifier: optimize speed for short-lived instances
Meador Inge
2013-03-12
1
-177
/
+225
*
Modify {Call,Invoke}Inst::addAttribute to take an AttrKind.
Peter Collingbourne
2013-03-02
1
-2
/
+1
*
For each function that we optimize we initialize a new list of lib functions....
Nadav Rotem
2013-02-27
1
-1
/
+2
*
Implement the NoBuiltin attribute.
Bill Wendling
2013-02-22
1
-0
/
+1
*
Temporarily revert r175470 for more review.
Bill Wendling
2013-02-19
1
-3
/
+0
*
Check to see if the 'no-builtin' attribute is set before simplifying a librar...
Bill Wendling
2013-02-18
1
-0
/
+3
*
[SimplifyLibCalls] Library call simplification doen't work if the call site
Chad Rosier
2013-02-08
1
-1
/
+7
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
1
-6
/
+6
*
Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...
Bill Wendling
2012-12-19
1
-2
/
+2
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-2
/
+2
*
instcombine: Migrate puts optimizations
Meador Inge
2012-11-29
1
-0
/
+27
*
instcombine: Migrate fputs optimizations
Meador Inge
2012-11-29
1
-0
/
+24
*
instcombine: Migrate fwrite optimizations
Meador Inge
2012-11-29
1
-0
/
+35
*
instcombine: Migrate fprintf optimizations
Meador Inge
2012-11-29
1
-0
/
+77
*
instcombine: Migrate sprintf optimizations
Meador Inge
2012-11-27
1
-0
/
+95
*
Fix a comment bug in toascii simplifier
Meador Inge
2012-11-26
1
-1
/
+1
*
instcombine: Migrate printf optimizations
Meador Inge
2012-11-26
1
-0
/
+103
*
instcombine: Migrate toascii optimizations
Meador Inge
2012-11-26
1
-0
/
+16
*
instcombine: Migrate isascii optimizations
Meador Inge
2012-11-26
1
-0
/
+17
*
instcombine: Migrate isdigit optimizations
Meador Inge
2012-11-26
1
-0
/
+18
*
instcombine: Migrate *abs optimizations
Meador Inge
2012-11-26
1
-0
/
+21
*
instcombine: Migrate ffs* optimizations
Meador Inge
2012-11-25
1
-0
/
+46
*
instcombine: Migrate math library call simplifications
Meador Inge
2012-11-13
1
-3
/
+262
*
Normalize memcmp constant folding results.
Meador Inge
2012-11-12
1
-1
/
+8
*
instcombine: Migrate memset optimizations
Meador Inge
2012-11-11
1
-0
/
+21
*
instcombine: Migrate memmove optimizations
Meador Inge
2012-11-11
1
-0
/
+21
*
instcombine: Migrate memcpy optimizations
Meador Inge
2012-11-11
1
-0
/
+21
[next]