diff options
author | Dan Gohman <gohman@apple.com> | 2009-02-13 00:26:43 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-02-13 00:26:43 +0000 |
commit | ba83228cdb983dcdb2d8360d3654cc482100e65f (patch) | |
tree | fac8e26be078b8df7f07e61080711cd355c76eaa /llvm/test/CodeGen/X86/lsr-sort.ll | |
parent | 633b73783f90879d79c05d982a5bf588dc75ee89 (diff) | |
download | bcm5719-llvm-ba83228cdb983dcdb2d8360d3654cc482100e65f.tar.gz bcm5719-llvm-ba83228cdb983dcdb2d8360d3654cc482100e65f.zip |
Fix LSR's IV sorting function to explicitly sort by bitwidth
after sorting by stride value. This prevents it from missing
IV reuse opportunities in a host-sensitive manner.
llvm-svn: 64415
Diffstat (limited to 'llvm/test/CodeGen/X86/lsr-sort.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/lsr-sort.ll | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/lsr-sort.ll b/llvm/test/CodeGen/X86/lsr-sort.ll new file mode 100644 index 00000000000..00e1d694ef4 --- /dev/null +++ b/llvm/test/CodeGen/X86/lsr-sort.ll @@ -0,0 +1,22 @@ +; RUN: llvm-as < %s | llc -march=x86-64 > %t +; RUN: grep inc %t | count 1 +; RUN: not grep incw %t + +@X = common global i16 0 ; <i16*> [#uses=1] + +define void @foo(i32 %N) nounwind { +entry: + %0 = icmp sgt i32 %N, 0 ; <i1> [#uses=1] + br i1 %0, label %bb, label %return + +bb: ; preds = %bb, %entry + %i.03 = phi i32 [ 0, %entry ], [ %indvar.next, %bb ] ; <i32> [#uses=2] + %1 = trunc i32 %i.03 to i16 ; <i16> [#uses=1] + volatile store i16 %1, i16* @X, align 2 + %indvar.next = add i32 %i.03, 1 ; <i32> [#uses=2] + %exitcond = icmp eq i32 %indvar.next, %N ; <i1> [#uses=1] + br i1 %exitcond, label %return, label %bb + +return: ; preds = %bb, %entry + ret void +} |