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
/
Analysis
/
ConstantFolding.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Enable constant propagation for more math functions
Erik Schnetter
2015-08-27
1
-37
/
+55
*
Revert 246186; still breaks on some systems
Erik Schnetter
2015-08-27
1
-55
/
+37
*
Enable constant propagation for more math functions
Erik Schnetter
2015-08-27
1
-37
/
+55
*
Revert r246158 since it breaks LLVM.Transforms/ConstProp.calls.ll
Erik Schnetter
2015-08-27
1
-55
/
+37
*
Enable constant propagation for more math functions
Erik Schnetter
2015-08-27
1
-37
/
+55
*
Fix assert when inlining a constantexpr addrspacecast
Matt Arsenault
2015-07-27
1
-2
/
+1
*
[ConstantFolding] Support folding loads from a GlobalAlias
David Majnemer
2015-07-22
1
-0
/
+4
*
Constfold trunc,rint,nearbyint,ceil and floor using APFloat
Karthik Bhat
2015-07-21
1
-4
/
+33
*
Allow constfolding of llvm.sin.* and llvm.cos.* intrinsics
Karthik Bhat
2015-07-08
1
-0
/
+6
*
[ConstantFolding] Fix wrong folding of intrinsic 'convert.from.fp16'.
Andrea Di Biagio
2015-05-14
1
-2
/
+2
*
Convert PHI getIncomingValue() to foreach over incoming_values(). NFC.
Pete Cooper
2015-05-12
1
-2
/
+1
*
Added support for building against Android API-9 SDK
Vince Harron
2015-05-07
1
-1
/
+1
*
[opaque pointer type] API migration for GEP constant factories
David Blaikie
2015-04-02
1
-9
/
+11
*
[opaque pointer type] Change GetElementPtrInst::getIndexedType to take the po...
David Blaikie
2015-03-30
1
-2
/
+3
*
DataLayout is mandatory, update the API to reflect it with references.
Mehdi Amini
2015-03-10
1
-133
/
+116
*
Drop the hacks used for partial C99 math libraries.
Benjamin Kramer
2015-03-09
1
-10
/
+0
*
[PM] Move TargetLibraryInfo into the Analysis library.
Chandler Carruth
2015-01-15
1
-1
/
+1
*
Update SetVector to rely on the underlying set's insert to return a pair<iter...
David Blaikie
2014-11-19
1
-1
/
+1
*
[InstSimplify] Support constant folding to vector of pointers
Bruno Cardoso Lopes
2014-10-22
1
-2
/
+12
*
Add minnum / maxnum intrinsics
Matt Arsenault
2014-10-21
1
-0
/
+15
*
Remove duplicate function names from comments. NFC.
Sanjay Patel
2014-10-02
1
-43
/
+35
*
Make the sqrt intrinsic return undef for a negative input.
Sanjay Patel
2014-10-01
1
-2
/
+8
*
Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needin...
Craig Topper
2014-08-21
1
-1
/
+1
*
Revert "Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoi...
Craig Topper
2014-08-18
1
-1
/
+1
*
Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needin...
Craig Topper
2014-08-17
1
-1
/
+1
*
Look through addrspacecast in IsConstantOffsetFromGlobal
Matt Arsenault
2014-07-14
1
-1
/
+2
*
Remove old fenv.h workaround for a historic clang driver bug
Alp Toker
2014-06-09
1
-9
/
+2
*
Fold FEnv.h into the implementation
Alp Toker
2014-06-09
1
-7
/
+41
*
Add a Constant version of stripPointerCasts.
Rafael Espindola
2014-06-04
1
-1
/
+1
*
Teach the constant folder to look through bitcast constant expressions
Chandler Carruth
2014-05-15
1
-0
/
+50
*
Rename ComputeMaskedBits to computeKnownBits. "Masked" has been
Jay Foad
2014-05-14
1
-2
/
+2
*
[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...
Craig Topper
2014-04-15
1
-53
/
+53
*
Allow constant folding of ceil function whenever feasible
Karthik Bhat
2014-03-24
1
-0
/
+3
*
Allow constant folding of round function whenever feasible
Karthik Bhat
2014-03-07
1
-0
/
+7
*
Allow constant folding of copysign
Karthik Bhat
2014-03-06
1
-0
/
+7
*
ConstantFolding: Also fold the vector overloads of our math intrinsics.
Benjamin Kramer
2014-03-05
1
-34
/
+73
*
Allow constant folding of fma and fmuladd
Matt Arsenault
2014-03-05
1
-0
/
+27
*
Fix duplicate code in ConstantFolding
Matt Arsenault
2014-03-05
1
-54
/
+33
*
[Modules] Move GetElementPtrTypeIterator into the IR library. As its
Chandler Carruth
2014-03-04
1
-1
/
+1
*
Add addrspacecast instruction.
Matt Arsenault
2013-11-15
1
-5
/
+7
*
Fix another constant folding address space place I missed.
Matt Arsenault
2013-11-04
1
-12
/
+19
*
Fix a constant folding address space place I missed.
Matt Arsenault
2013-09-17
1
-3
/
+4
*
Move variable under condition where it is used
Matt Arsenault
2013-09-12
1
-1
/
+2
*
Teach ConstantFolding about pointer address spaces
Matt Arsenault
2013-08-20
1
-33
/
+54
*
Slightly simplify code with helper functions
Matt Arsenault
2013-08-12
1
-14
/
+16
*
Add some braces, and spaces around operators
Matt Arsenault
2013-08-12
1
-26
/
+42
*
ConstantFolding: ComputeMaskedBits wants the scalar size for vectors.
Benjamin Kramer
2013-04-19
1
-1
/
+1
*
Fix a scalability issue with complex ConstantExprs.
Benjamin Kramer
2013-04-13
1
-12
/
+24
*
Constant fold vector bitcasts of halves similarly to how floats and doubles a...
Michael Ilseman
2013-02-26
1
-6
/
+8
*
Formatting.
Chad Rosier
2013-02-20
1
-2
/
+1
[next]