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
/
Transforms
/
Utils
/
SimplifyCFG.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Make SimplifyCFG simply depend upon TargetTransformInfo and pass it
Chandler Carruth
2013-01-07
1
-37
/
+37
*
Move TargetTransformInfo to live under the Analysis library. This no
Chandler Carruth
2013-01-07
1
-1
/
+1
*
Switch SimplifyCFG over to the TargetTransformInfo interface rather than
Chandler Carruth
2013-01-05
1
-4
/
+2
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
1
-13
/
+13
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-10
/
+10
*
Fix non-determinism introduced in r168970 and pointed out by Duncan.
Chandler Carruth
2012-11-30
1
-5
/
+13
*
Rearrange the comments, control flow, and variable names; no
Chandler Carruth
2012-11-30
1
-7
/
+14
*
Fix logic to determine whether to turn a switch into a lookup table. When
Evan Cheng
2012-11-30
1
-6
/
+13
*
SimplifyCFG: Don't assume non-null ScalarTargetTransformInfo.
Hans Wennborg
2012-11-16
1
-1
/
+2
*
misspell
Andrew Trick
2012-11-15
1
-3
/
+3
*
whitespace
Andrew Trick
2012-11-15
1
-4
/
+4
*
Only do switch-to-lookup table transformation when TargetTransformInfo
Hans Wennborg
2012-11-07
1
-1
/
+2
*
Revert the series of commits starting with r166578 which introduced the
Chandler Carruth
2012-11-01
1
-8
/
+4
*
Remove fixme about unreachable cases from SwitchToLookupTable
Hans Wennborg
2012-10-31
1
-2
/
+0
*
Address Duncan's comments on r167121.
Hans Wennborg
2012-10-31
1
-3
/
+4
*
Address Duncan's comments on r167115
Hans Wennborg
2012-10-31
1
-48
/
+42
*
Fix false -> NULL conversion from r167115 spotted by Benjamin Kramer.
Hans Wennborg
2012-10-31
1
-1
/
+1
*
Do simple constant propagation in lookup table formation for switches
Hans Wennborg
2012-10-31
1
-15
/
+98
*
Use TargetTransformInfo to control switch-to-lookup table transformation
Hans Wennborg
2012-10-30
1
-6
/
+15
*
Remove a wrapper around getIntPtrType added to GVN by Hal in commit 166624 (the
Duncan Sands
2012-10-29
1
-1
/
+1
*
Also optimize large switch statements.
Jakob Stoklund Olesen
2012-10-25
1
-22
/
+20
*
Add in support for getIntPtrType to get the pointer type based on the address...
Micah Villmow
2012-10-24
1
-5
/
+9
*
Simplify code. No functionality change.
Benjamin Kramer
2012-10-14
1
-5
/
+3
*
PGO: create metadata for switch only if it has more than one targets.
Manman Ren
2012-10-11
1
-1
/
+1
*
Move TargetData to DataLayout.
Micah Villmow
2012-10-08
1
-18
/
+18
*
SimplifyCFG: Enhance the "remove CFG edge that leads to null pointer derefere...
Benjamin Kramer
2012-10-04
1
-2
/
+3
*
SimplifyCFG: Don't crash when forming a switch bitmap with an undef default v...
Benjamin Kramer
2012-10-01
1
-2
/
+5
*
SimplifyCFG: Enumerating all predecessors of a BB can be expensive (switches)...
Benjamin Kramer
2012-09-30
1
-3
/
+7
*
Fix a integer overflow in SimplifyCFG's look up table formation logic.
Benjamin Kramer
2012-09-27
1
-0
/
+4
*
Address Duncan's comments on r164684:
Hans Wennborg
2012-09-26
1
-9
/
+5
*
Address Duncan's comments on r164682:
Hans Wennborg
2012-09-26
1
-6
/
+4
*
SimplifyCFG: Make the switch-to-lookup table transformation store the
Hans Wennborg
2012-09-26
1
-12
/
+89
*
SimplifyCFG: Refactor the switch-to-lookup table transformation by
Hans Wennborg
2012-09-26
1
-72
/
+115
*
SimplifyCFG: sink common codes from IF, ELSE blocks down to END block.
Manman Ren
2012-09-20
1
-0
/
+173
*
SimplifyCFG: Don't generate invalid code for switch used to initialize
Hans Wennborg
2012-09-19
1
-9
/
+8
*
PGO: preserve branch-weight metadata when simplifying Switch to a sub, an icmp
Manman Ren
2012-09-18
1
-1
/
+38
*
PGO: preserve branch-weight metadata when simplifying Switch
Manman Ren
2012-09-17
1
-0
/
+15
*
PGO: preserve branch-weight metadata when simplifying SwitchOnSelect.
Manman Ren
2012-09-17
1
-5
/
+28
*
PGO: preserve branch-weight metadata when simplifying two branches with a common
Manman Ren
2012-09-17
1
-0
/
+27
*
Fix a few vars that can end up being used without initialization.
Axel Naumann
2012-09-17
1
-1
/
+1
*
PGO: preserve branch-weight metadata when simplifying two branches with a common
Manman Ren
2012-09-15
1
-111
/
+42
*
PGO: preserve branch-weight metadata when simplifying a switch with a single
Manman Ren
2012-09-14
1
-0
/
+19
*
Try to fix the bots by detecting inconsistant branch-weight metadata.
Manman Ren
2012-09-14
1
-4
/
+10
*
PGO: preserve branch-weight metadata when merging two switches where
Manman Ren
2012-09-14
1
-5
/
+12
*
SimplifyCFG: preserve branch-weight metadata when creating a new switch from
Manman Ren
2012-09-11
1
-81
/
+45
*
Fix style issues from r163302 pointed out by Evan.
Hans Wennborg
2012-09-10
1
-18
/
+15
*
Remove an incorrect assert during branch weight propagation.
Andrew Trick
2012-09-08
1
-1
/
+0
*
SimplifyCFG: ValidLookupTableConstant should be static
Hans Wennborg
2012-09-07
1
-1
/
+1
*
Fix switch_to_lookup_table.ll test from r163302.
Hans Wennborg
2012-09-06
1
-5
/
+6
*
Build lookup tables for switches (PR884)
Hans Wennborg
2012-09-06
1
-0
/
+286
[next]