summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CodeGenModule.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-02-12 22:19:27 +0000
committerDan Gohman <gohman@apple.com>2009-02-12 22:19:27 +0000
commiteb6be650ce25cd80fa50f13fd94b1083742e85dc (patch)
tree8ecdbb295cbf545c167a0fc1d37bdebcf73bc866 /clang/lib/CodeGen/CodeGenModule.cpp
parent94aa38d5684d8b21d8b2337f75cdd7637771138c (diff)
downloadbcm5719-llvm-eb6be650ce25cd80fa50f13fd94b1083742e85dc.tar.gz
bcm5719-llvm-eb6be650ce25cd80fa50f13fd94b1083742e85dc.zip
Teach IndVarSimplify to optimize code using the C "int" type for
loop induction on LP64 targets. When the induction variable is used in addressing, IndVars now is usually able to inserst a 64-bit induction variable and eliminates the sign-extending cast. This is also useful for code using C "short" types for induction variables on targets with 32-bit addressing. Inserting a wider induction variable is easy; the tricky part is determining when trunc(sext(i)) expressions are no-ops. This requires range analysis of the loop trip count. A common case is when the original loop iteration starts at 0 and exits when the induction variable is signed-less-than a fixed value; this case is now handled. This replaces IndVarSimplify's OptimizeCanonicalIVType. It was doing the same optimization, but it was limited to loops with constant trip counts, because it was running after the loop rewrite, and the information about the original induction variable is lost by that point. Rename ScalarEvolution's executesAtLeastOnce to isLoopGuardedByCond, generalize it to be able to test for ICMP_NE conditions, and move it to be a public function so that IndVars can use it. llvm-svn: 64407
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud