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
/
SimplifyCFG.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
revert r310985 which breaks for the following case:
Dehao Chen
2017-08-27
1
-2
/
+0
*
Merge debug info when hoist then-else code to if.
Dehao Chen
2017-08-16
1
-0
/
+2
*
[SimplifyCFG] Fix typo in comment. NFC
Craig Topper
2017-08-02
1
-1
/
+1
*
[Value Tracking] Default argument to true and rename accordingly. NFC.
Chad Rosier
2017-08-01
1
-2
/
+2
*
[SimplifyCFG] Make the no-jump-tables attribute also disable switch lookup ta...
Sumanth Gundapaneni
2017-07-28
1
-3
/
+6
*
[SimplifyCFG] Defer folding unconditional branches to LateSimplifyCFG if it c...
Balaram Makam
2017-07-19
1
-7
/
+9
*
[SimplifyCFG] Move a portion of an if statement that should already be impli...
Craig Topper
2017-07-06
1
-2
/
+2
*
[SimplifyCFG] Update the name of switch generated lookup table.
Sumanth Gundapaneni
2017-06-30
1
-4
/
+6
*
Sort the remaining #include lines in include/... and lib/....
Chandler Carruth
2017-06-06
1
-3
/
+2
*
[GVNSink] GVNSink pass
James Molloy
2017-05-25
1
-47
/
+0
*
[ValueTracking] Convert most of the calls to computeKnownBits to use the vers...
Craig Topper
2017-05-24
1
-2
/
+1
*
[SimplifyCFG] Prevent a few APInt copies on method calls that return const re...
Craig Topper
2017-05-22
1
-2
/
+2
*
[IR] De-virtualize ~Value to save a vptr
Reid Kleckner
2017-05-18
1
-1
/
+1
*
[ConstantRange][SimplifyCFG] Add a helper method to allow SimplifyCFG to dete...
Craig Topper
2017-05-07
1
-1
/
+1
*
Kill off the old SimplifyInstruction API by converting remaining users.
Daniel Berlin
2017-04-28
1
-3
/
+3
*
[ValueTracking] Introduce a KnownBits struct to wrap the two APInts for compu...
Craig Topper
2017-04-26
1
-4
/
+5
*
[APInt] Use isSubsetOf, intersects, and bit counting methods to reduce tempor...
Craig Topper
2017-04-25
1
-1
/
+1
*
[SimplifyCFG] Fix for non-determinism in codegen
Mandeep Singh Grang
2017-04-24
1
-1
/
+1
*
[SimplifyCFG] Fix the determination of PostBB in conditional store merging to...
Craig Topper
2017-04-21
1
-2
/
+10
*
[SimplifyCFG] Use hasNUses instead of comparing getNumUses to a constant."
Craig Topper
2017-04-17
1
-1
/
+1
*
[IR] Redesign the case iterator in SwitchInst to actually be an iterator
Chandler Carruth
2017-04-12
1
-33
/
+30
*
Split the SimplifyCFG pass into two variants.
Joerg Sonnenberger
2017-03-26
1
-5
/
+14
*
[IR] Make SwitchInst::CaseIt almost a normal iterator.
Chandler Carruth
2017-03-26
1
-8
/
+9
*
Make GCC happy again.
Benjamin Kramer
2017-03-24
1
-2
/
+1
*
Fix: Refactor SimplifyCFG:canSinkInstructions [NFC]
Aditya Kumar
2017-03-16
1
-18
/
+17
*
Revert "Refactor SimplifyCFG:canSinkInstructions [NFC]"
Eric Liu
2017-03-15
1
-23
/
+23
*
Refactor SimplifyCFG:canSinkInstructions [NFC]
Aditya Kumar
2017-03-15
1
-23
/
+23
*
[SimplifyCFG] Use APInt::operator| instead of APInt::Or. NFC
Craig Topper
2017-03-05
1
-1
/
+1
*
SimplifyCFG: Register cloned assume intrinsics with assumption cache when cre...
Peter Collingbourne
2017-02-15
1
-3
/
+10
*
[InstCombine] Merge DebugLoc when speculatively hoisting store instruction
Taewook Oh
2017-01-28
1
-8
/
+11
*
[SimplifyCFG] Do not sink and merge inline-asm instructions.
Akira Hatanaka
2017-01-25
1
-0
/
+8
*
Tweak ASCII art in Simplify CFG. NFC
Amaury Sechet
2017-01-23
1
-1
/
+1
*
[DebugInfo] Remove redundant check in SimplifyCFG; NFC.
Robert Lougher
2017-01-12
1
-4
/
+3
*
[DebugInfo] DILocation variable declaration should be const; NFC.
Robert Lougher
2017-01-12
1
-1
/
+1
*
Reapply "[SimplifyCFG] In sinkLastInstruction correctly set debugloc of commo...
Robert Lougher
2017-01-04
1
-1
/
+9
*
Revert @llvm.assume with operator bundles (r289755-r289757)
Daniel Jasper
2016-12-19
1
-36
/
+39
*
Preserve loop metadata when folding branches to a common destination.
Michael Kuperstein
2016-12-16
1
-0
/
+5
*
[SimplifyCFG] Merge debug locations when hoisting an instruction from a then/...
Andrea Di Biagio
2016-12-15
1
-4
/
+4
*
Revert "[SimplifyCFG] In sinkLastInstruction correctly set debugloc of common...
Robert Lougher
2016-12-15
1
-8
/
+1
*
[SimplifyCFG] In sinkLastInstruction correctly set debugloc of "common" inst
Robert Lougher
2016-12-15
1
-1
/
+9
*
Remove the AssumptionCache
Hal Finkel
2016-12-15
1
-39
/
+36
*
IR: Change the gep_type_iterator API to avoid always exposing the "current" t...
Peter Collingbourne
2016-12-02
1
-1
/
+1
*
Fix some Clang-tidy and Include What You Use warnings; other minor fixes (NFC).
Eugene Zelenko
2016-11-30
1
-11
/
+46
*
Ignore debug info when making optimization decisions in SimplifyCFG.
Dehao Chen
2016-10-17
1
-11
/
+18
*
[SimplifyCFG] Don't lower complex ConstantExprs to lookup tables
Oliver Stannard
2016-10-17
1
-1
/
+4
*
[SimplifyCFG] Use the error checking provided by getPrevNode.
Benjamin Kramer
2016-10-15
1
-7
/
+11
*
[SimplifyCFG] Don't create PHI nodes for constant bundle operands
Sanjoy Das
2016-10-12
1
-1
/
+10
*
[ARM] Don't convert switches to lookup tables of pointers with ROPI/RWPI
Oliver Stannard
2016-10-07
1
-17
/
+27
*
[SimplifyCFG] Correctly test for unconditional branches in GetCaseResults
David Majnemer
2016-10-07
1
-1
/
+1
*
[SimplifyCFG] Update (AND) IR flags when CSE'ing instructions
James Molloy
2016-09-19
1
-2
/
+4
[prev]
[next]