index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
Transforms
/
SimplifyCFG
/
switch_create.ll
Age
Commit message (
Expand
)
Author
2012-11-07
Only do switch-to-lookup table transformation when TargetTransformInfo
Hans Wennborg
2012-09-06
Build lookup tables for switches (PR884)
Hans Wennborg
2012-07-02
Revert "IntRange:" as it appears to be breaking self hosting.
Eric Christopher
2012-07-02
IntRange:
Stepan Dyatkovskiy
2011-02-07
SimplifyCFG: Track the number of used icmps when turning a icmp chain into a ...
Benjamin Kramer
2011-02-02
SimplifyCFG: Turn switches into sub+icmp+branch if possible.
Benjamin Kramer
2011-01-29
Re-apply r124518 with fix. Watch out for invalidated iterator.
Evan Cheng
2011-01-29
Revert r124518. It broke Linux self-host.
Evan Cheng
2011-01-29
Re-commit r124462 with fixes. Tail recursion elim will now dup ret into uncon...
Evan Cheng
2011-01-28
Revert r124462. There are a few big regressions that I need to fix first.
Evan Cheng
2011-01-28
- Stop simplifycfg from duplicating "ret" instructions into unconditional
Evan Cheng
2010-12-17
SimplifyCFG: Ranges can be larger than 64 bits. Fixes Release-selfhost build.
Benjamin Kramer
2010-12-17
improve switch formation to handle small range
Chris Lattner
2010-12-14
- Insert new instructions before DomBlock's terminator,
Chris Lattner
2010-12-14
fix yet anohter broken line
Chris Lattner
2010-12-14
reapply my recent change that disables a piece of the switch formation
Chris Lattner
2010-12-13
Fix recent buildbot breakage by pulling SimplifyCFG back to its state as of r...
Owen Anderson
2010-12-13
temporarily disable part of my previous patch, which causes an iterator inval...
Chris Lattner
2010-12-13
Fix sort predicate. qsort(3)'s predicate semantics differ from std::sort's. F...
Benjamin Kramer
2010-12-13
reinstate my patch: the miscompile was caused by an inverted branch in the
Chris Lattner
2010-12-13
Completely disable the optimization I added in r121680 until
Chris Lattner
2010-12-13
Make simplifycfg reprocess newly formed "br (cond1 | cond2)" conditions
Chris Lattner
2010-12-13
fix a bug in r121680 that upset the various buildbots.
Chris Lattner
2010-12-13
enhance the "change or icmp's into switch" xform to handle one value in an
Chris Lattner
2010-12-13
merge two tests
Chris Lattner
2010-12-13
Fix my previous patch to handle a degenerate case that the llvm-gcc
Chris Lattner
2010-12-13
fix a fairly serious oversight with switch formation from
Chris Lattner
2009-09-11
fix a bunch of spurious failures for people whose home directory
Chris Lattner
2009-09-08
Use opt -S instead of piping bitcode output through llvm-dis.
Dan Gohman
2009-09-08
Change these tests to feed the assembly files to opt directly, instead
Dan Gohman
2008-03-18
Upgrade tests to not use llvm-upgrade.
Tanya Lattner
2006-12-02
Use the llvm-upgrade program to upgrade llvm assembly.
Reid Spencer
2005-02-24
add another testcase to make sure it gets turned into a switch (answer: yes i...
Chris Lattner
2004-02-24
The simplifycfg pass should be able to turn stuff like:
Chris Lattner