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
/
Scalar
/
SCCP.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[Constants] If we already have a ConstantInt*, prefer to use isZero/isOne/isM...
Craig Topper
2017-07-06
1
-1
/
+1
*
[SCCP] Simplify the code a bit. NFCI.
Davide Italiano
2017-06-16
1
-7
/
+3
*
[SCCP] Clarify a comment about unhandled instructions.
Davide Italiano
2017-06-16
1
-2
/
+3
*
[SCCP] Remove redundant instruction visitors.
Davide Italiano
2017-06-16
1
-11
/
+0
*
[InstSimplify] Don't constant fold or DCE calls that are marked nobuiltin
Andrew Kaylor
2017-06-09
1
-2
/
+2
*
[SCCP] Use the `hasAddressTaken()` version defined in `Function`.
Davide Italiano
2017-05-23
1
-1
/
+2
*
[IR] Redesign the case iterator in SwitchInst to actually be an iterator
Chandler Carruth
2017-04-12
1
-5
/
+5
*
[SCCP] Resolve indirect branch target when possible.
Xin Tong
2017-04-10
1
-8
/
+71
*
[SCCP] Merge markOverdefined and markAnythingOverdefined.
Davide Italiano
2017-03-08
1
-23
/
+17
*
[SCCP] Remove manual folding of terminator instructions.
Xin Tong
2017-02-26
1
-26
/
+3
*
[IPSCCP] Restore the old behaviour (pre r293799).
Davide Italiano
2017-02-02
1
-6
/
+1
*
[IPSCCP] Don't propagate return values of functions marked as noinline.
Davide Italiano
2017-02-01
1
-1
/
+6
*
[IPSCCP] Teach how to not propagate return values of naked functions.
Davide Italiano
2017-02-01
1
-1
/
+4
*
[SCCP] Teach the pass how to handle `div` with overdefined operands.
Davide Italiano
2017-01-19
1
-0
/
+6
*
[SCCP] Update comment in visitBinaryOp() after recent changes.
Davide Italiano
2017-01-19
1
-3
/
+4
*
[SCCP] Unknown instructions are sent to overdefined anyway. NFCI.
Davide Italiano
2017-01-08
1
-18
/
+0
*
[SCCP] Debug diagnostic goes under DEBUG(). NFCI.
Davide Italiano
2016-12-13
1
-1
/
+1
*
[SCCP] Use the appropriate helper function. NFCI.
Davide Italiano
2016-12-11
1
-2
/
+2
*
[SCCP] Teach the pass about `mul %x 0` even if %x is overdefined.
Davide Italiano
2016-12-09
1
-2
/
+5
*
[SCCP] Make sure SCCP and ConstantFolding agree on undef >> a.
Davide Italiano
2016-12-08
1
-2
/
+2
*
Revert "[SCCP] Remove manual folding of terminator instructions."
Davide Italiano
2016-12-06
1
-2
/
+27
*
[SCCP] Remove manual folding of terminator instructions.
Davide Italiano
2016-12-05
1
-27
/
+2
*
[SCCP] Switch over to DEBUG() and drop an #ifdef.
Davide Italiano
2016-12-01
1
-6
/
+2
*
[SCCP] Prefer `auto` when the type is obvious. NFCI.
Davide Italiano
2016-12-01
1
-27
/
+27
*
[SCCP] Remove code in visitBinaryOperator (and add tests).
Davide Italiano
2016-11-22
1
-11
/
+3
*
[SCCP] Don't delete side-effecting instructions
Sanjoy Das
2016-08-24
1
-17
/
+6
*
Use range algorithms instead of unpacking begin/end
David Majnemer
2016-08-11
1
-2
/
+1
*
Consistently use ModuleAnalysisManager
Sean Silva
2016-08-09
1
-1
/
+1
*
Consistently use FunctionAnalysisManager
Sean Silva
2016-08-09
1
-1
/
+1
*
[SCCP] Zap multiple return values.
Davide Italiano
2016-07-20
1
-9
/
+41
*
[SCCP] Improve assert messages. NFCI.
Davide Italiano
2016-07-19
1
-4
/
+6
*
[SCCP] Merge two conditions into one. NFCI.
Davide Italiano
2016-07-15
1
-3
/
+1
*
[SCCP] Pass the Solver by reference, copies are expensive ...
Davide Italiano
2016-07-14
1
-2
/
+2
*
[SCCP] Pass a Value * instead of templating this function. NFC.
Davide Italiano
2016-07-14
1
-9
/
+8
*
[IPSCCP] Constant fold struct argument/instructions when all the lattice valu...
Davide Italiano
2016-07-14
1
-10
/
+3
*
[SCCP] Generalize tryToReplaceInstWithConstant to work also with arguments.
Davide Italiano
2016-07-14
1
-22
/
+18
*
[SCCP] Have the logic for replacing insts with constant in a single place.
Davide Italiano
2016-07-13
1
-53
/
+50
*
[SCCP] Factor out common code.
Davide Italiano
2016-07-13
1
-8
/
+9
*
[SCCP] Use early return. NFCI.
Davide Italiano
2016-07-13
1
-5
/
+5
*
[SCCP] Constant fold structs if all the lattice value are constant.
Davide Italiano
2016-07-12
1
-9
/
+35
*
[SCCP] Try to follow the DRY principle, use `OpSt`.
Davide Italiano
2016-07-11
1
-3
/
+2
*
[SCCP] Rename undefined -> unknown.
Davide Italiano
2016-07-10
1
-40
/
+40
*
[SCCP] Remove wrong and misleading vector handling code.
Davide Italiano
2016-07-09
1
-53
/
+0
*
[SCCP] Fold constants as we build them whne visiting cast instructions.
Davide Italiano
2016-07-08
1
-2
/
+4
*
Apply clang-tidy's modernize-loop-convert to most of lib/Transforms.
Benjamin Kramer
2016-06-26
1
-27
/
+26
*
Revert "[SimplifyCFG] Stop inserting calls to llvm.trap for UB"
David Majnemer
2016-06-25
1
-1
/
+2
*
[SimplifyCFG] Stop inserting calls to llvm.trap for UB
David Majnemer
2016-06-25
1
-2
/
+1
*
[SCCP] Don't assume all Constants are ConstantInt
David Majnemer
2016-06-23
1
-8
/
+8
*
[PM] SCCP should preserve GlobalsAA even if the IR is mutated.
Davide Italiano
2016-05-29
1
-1
/
+4
*
[SCCP] Prefer class to struct.
Davide Italiano
2016-05-19
1
-2
/
+4
[next]