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
/
InstCombine
/
InstructionCombining.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[C++11] Add range based accessors for the Use-Def chain of a Value.
Chandler Carruth
2014-03-09
1
-12
/
+9
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-05
1
-1
/
+1
*
[Modules] Move CFG.h to the IR library as it defines graph traits over
Chandler Carruth
2014-03-04
1
-1
/
+1
*
[Modules] Move ValueHandle into the IR library where Value itself lives.
Chandler Carruth
2014-03-04
1
-1
/
+1
*
[Modules] Move the LLVM IR pattern match header into the IR library, it
Chandler Carruth
2014-03-04
1
-1
/
+1
*
[Modules] Move GetElementPtrTypeIterator into the IR library. As its
Chandler Carruth
2014-03-04
1
-1
/
+1
*
Make DataLayout a plain object, not a pass.
Rafael Espindola
2014-02-25
1
-1
/
+2
*
Rename many DataLayout variables from TD to DL.
Rafael Espindola
2014-02-21
1
-55
/
+55
*
Do more addrspacecast transforms that happen for bitcast.
Matt Arsenault
2014-02-14
1
-6
/
+12
*
Disable most IR-level transform passes on functions marked 'optnone'.
Paul Robinson
2014-02-06
1
-0
/
+3
*
Fix known typos
Alp Toker
2014-01-24
1
-2
/
+2
*
Fix all the remaining lost-fast-math-flags bugs I've been able to find. The ...
Owen Anderson
2014-01-20
1
-2
/
+13
*
Don't use isNullValue to evaluate ConstantExpr
Duncan P. N. Exon Smith
2013-12-06
1
-1
/
+4
*
Make gep i8* X, -(ptrtoint Y) transform work with address spaces
Matt Arsenault
2013-10-03
1
-8
/
+10
*
InstCombine: Canonicalize (gep i8* X, -(ptrtoint Y)) to (sub (ptrtoint X), (p...
Benjamin Kramer
2013-09-20
1
-0
/
+14
*
Consistently use dbgs() in debug printing
Matt Arsenault
2013-09-05
1
-8
/
+8
*
Teach InstCombine visitGetElementPtr about address spaces
Matt Arsenault
2013-08-19
1
-16
/
+21
*
Cleanup visitGetElementPtr to make address space change easier
Matt Arsenault
2013-08-19
1
-11
/
+13
*
Fix always creating GEP with i32 indices
Matt Arsenault
2013-08-14
1
-6
/
+7
*
Use type helper functions instead of cast
Matt Arsenault
2013-08-14
1
-6
/
+5
*
Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ...
Craig Topper
2013-07-04
1
-1
/
+1
*
Add ArrayRef constructor from None, and do the cleanups that this constructor...
Dmitri Gribenko
2013-05-05
1
-1
/
+1
*
This patch breaks up Wrap.h so that it does not have to include all of
Filip Pizlo
2013-05-01
1
-1
/
+0
*
Move C++ code out of the C headers and into either C++ headers
Eric Christopher
2013-04-22
1
-0
/
+1
*
Preserve fast-math flags after reassociation and commutation. Update test cases
Michael Ilseman
2013-02-07
1
-5
/
+20
*
Revert "InstCombine: Clean up weird code that talks about a modulus that's lo...
Benjamin Kramer
2013-01-23
1
-1
/
+6
*
InstCombine: Clean up weird code that talks about a modulus that's long gone.
Benjamin Kramer
2013-01-23
1
-6
/
+1
*
Consider expression "0.0 - X" as the negation of X if
Shuxin Yang
2013-01-09
1
-2
/
+2
*
When code size is the priority (Oz, MinSize attribute), help llvm
Quentin Colombet
2013-01-07
1
-0
/
+69
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
1
-2
/
+2
*
convert a bunch of callers from DataLayout::getIndexedOffset() to GEP::accumu...
Nuno Lopes
2012-12-30
1
-7
/
+5
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-7
/
+7
*
instcombine: Migrate math library call simplifications
Meador Inge
2012-11-13
1
-1
/
+7
*
Add method for replacing instructions to LibCallSimplifier
Meador Inge
2012-11-11
1
-1
/
+19
*
Generalize the transform that boosts GEP indices to the size of a pointer to
Duncan Sands
2012-11-03
1
-2
/
+2
*
Revert the series of commits starting with r166578 which introduced the
Chandler Carruth
2012-11-01
1
-6
/
+6
*
Add in support for getIntPtrType to get the pointer type based on the address...
Micah Villmow
2012-10-24
1
-6
/
+6
*
Fix typo that somehow escaped both testing and code inspection.
Duncan Sands
2012-10-23
1
-1
/
+1
*
Transform code like this
Duncan Sands
2012-10-23
1
-52
/
+301
*
Implement new LibCallSimplifier class
Meador Inge
2012-10-13
1
-0
/
+3
*
Move TargetData to DataLayout.
Micah Villmow
2012-10-08
1
-4
/
+4
*
Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...
Sylvestre Ledru
2012-09-27
1
-2
/
+2
*
Fix a typo 'iff' => 'if'
Sylvestre Ledru
2012-09-27
1
-2
/
+2
*
Make MemoryBuiltins aware of TargetLibraryInfo.
Benjamin Kramer
2012-08-29
1
-7
/
+8
*
Remove tabs.
Bill Wendling
2012-07-19
1
-1
/
+1
*
instcombine: merge the functions that remove dead allocas and dead mallocs/ca...
Nuno Lopes
2012-07-09
1
-50
/
+68
*
teach instcombine to remove allocated buffers even if there are stores, memcp...
Nuno Lopes
2012-07-06
1
-2
/
+25
*
make instcombine produce calls to llvm.donothing instead of a random intrinsic
Nuno Lopes
2012-06-28
1
-7
/
+4
*
improve optimization of invoke instructions:
Nuno Lopes
2012-06-25
1
-1
/
+8
*
Add support for invoke to the MemoryBuiltin analysid.
Nuno Lopes
2012-06-21
1
-0
/
+4
[next]