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
/
Analysis
/
InstructionSimplify.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
1
-3
/
+3
*
Nuke some dead code that snuck in some how. I thought I had already
Chandler Carruth
2012-12-28
1
-5
/
+0
*
Teach instsimplify to use the constant folder where appropriate for
Chandler Carruth
2012-12-28
1
-8
/
+29
*
Add entry points to instsimplify for simplifying calls. The entry points
Chandler Carruth
2012-12-28
1
-5
/
+30
*
Rename isPowerOfTwo to isKnownToBeAPowerOfTwo.
Rafael Espindola
2012-12-13
1
-2
/
+2
*
The TargetData is not used for the isPowerOfTwo determination. It has never
Rafael Espindola
2012-12-12
1
-2
/
+2
*
Have SimplifyBinOp call the new FAdd/FSub/FMul helpers, with fast-math flags off
Michael Ilseman
2012-12-12
1
-0
/
+8
*
Added a slew of SimplifyInstruction floating-point optimizations, many of whi...
Michael Ilseman
2012-12-12
1
-10
/
+109
*
Holding my nose and moving the accumulation routine to GEPOperator
Chandler Carruth
2012-12-11
1
-34
/
+1
*
Reorganize FastMathFlags to be a wrapper around unsigned, and streamline some...
Michael Ilseman
2012-12-09
1
-2
/
+2
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-5
/
+5
*
Fast-math optimization: fold multiply by zero
Michael Ilseman
2012-11-27
1
-0
/
+39
*
Make this easier to understand, as suggested by Chandler.
Duncan Sands
2012-11-16
1
-1
/
+6
*
InstructionSimplify should be able to simplify A+B==B+A to 'true'
Duncan Sands
2012-11-16
1
-2
/
+14
*
Revert the majority of the next patch in the address space series:
Chandler Carruth
2012-11-01
1
-8
/
+3
*
Revert the series of commits starting with r166578 which introduced the
Chandler Carruth
2012-11-01
1
-2
/
+4
*
Add some cleanup to the DataLayout changes requested by Chandler.
Micah Villmow
2012-10-24
1
-3
/
+1
*
Add in support for getIntPtrType to get the pointer type based on the address...
Micah Villmow
2012-10-24
1
-1
/
+1
*
Resubmit the changes to llvm core to update the functions to support differen...
Micah Villmow
2012-10-15
1
-3
/
+8
*
Revert 165732 for further review.
Micah Villmow
2012-10-11
1
-8
/
+3
*
Add in the first iteration of support for llvm/clang/lldb to allow variable p...
Micah Villmow
2012-10-11
1
-3
/
+8
*
Move TargetData to DataLayout.
Micah Villmow
2012-10-08
1
-34
/
+34
*
Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...
Sylvestre Ledru
2012-09-27
1
-11
/
+11
*
Fix a typo 'iff' => 'if'
Sylvestre Ledru
2012-09-27
1
-11
/
+11
*
Fix PR13412, a nasty miscompile due to the interleaved
Chandler Carruth
2012-08-07
1
-11
/
+17
*
Remove extraneous ';'.
Bill Wendling
2012-05-17
1
-1
/
+1
*
Revert r153521 as it's causing large regressions on the nightly testers.
Chad Rosier
2012-03-28
1
-15
/
+0
*
Reapply r153423; the original commit was fine. The failing test, distray, had
Chad Rosier
2012-03-27
1
-0
/
+15
*
Revert r153423 as this is causing failures on our internal nightly testers.
Chad Rosier
2012-03-26
1
-15
/
+0
*
Use the new range metadata in computeMaskedBits and add a new optimization to
Rafael Espindola
2012-03-26
1
-0
/
+15
*
Teach instsimplify how to simplify comparisons of pointers which are
Chandler Carruth
2012-03-25
1
-1
/
+45
*
Switch the pointer-difference simplification logic to only work with
Chandler Carruth
2012-03-25
1
-1
/
+1
*
Try to harden the recursive simplification still further. This is again
Chandler Carruth
2012-03-24
1
-7
/
+8
*
Don't add the instruction about to be RAUW'ed and erased to the
Chandler Carruth
2012-03-24
1
-2
/
+4
*
Refactor the interface to recursively simplifying instructions to be tad
Chandler Carruth
2012-03-24
1
-47
/
+71
*
Teach instsimplify to gracefully degrade in the presence of instructions
Chandler Carruth
2012-03-21
1
-0
/
+6
*
Type sizes and fields offsets inside structs are unsigned. This is a highly
Duncan Sands
2012-03-15
1
-4
/
+2
*
Generalize the "trunc(ptrtoint(x)) - trunc(ptrtoint(y)) ->
Duncan Sands
2012-03-13
1
-14
/
+34
*
Uniformize the InstructionSimplify interface by ensuring that all routines
Duncan Sands
2012-03-13
1
-336
/
+277
*
Fix regression from r151466: an we can't replace uses of an instruction reach...
Eli Friedman
2012-03-13
1
-3
/
+7
*
Address some review comments from Duncan. This moves the iterative
Chandler Carruth
2012-03-13
1
-32
/
+23
*
Teach instsimplify how to constant fold pointer differences.
Chandler Carruth
2012-03-12
1
-0
/
+122
*
As Duncan pointed out, pointers tend not to be in floating point format...for...
Bill Wendling
2012-03-10
1
-6
/
+6
*
Make this transformation slightly less agressive and more correct.
Bill Wendling
2012-03-10
1
-8
/
+18
*
Refactor some methods to look through bitcasts and GEPs on pointers into
Chandler Carruth
2012-03-10
1
-25
/
+3
*
Reinstate the optimization from r151449 with a fix to not turn 'gep %x' into
Nick Lewycky
2012-02-26
1
-11
/
+51
*
Don't call dominates on unreachable instructions.
Rafael Espindola
2012-02-26
1
-1
/
+2
*
Roll these back to r151448 until I figure out how they're breaking
Nick Lewycky
2012-02-25
1
-42
/
+10
*
An argument and a local identified object (eg. a noalias call) could turn out
Nick Lewycky
2012-02-25
1
-12
/
+13
*
Fix five-letter typo in comment.
Nick Lewycky
2012-02-25
1
-1
/
+1
[next]