2011-07-06 00:09:19 +02:00
|
|
|
; RUN: llc -asm-verbose=false -march=x86-64 -mtriple=x86_64-apple-darwin -o - < %s | FileCheck %s
|
2010-06-04 21:16:34 +02:00
|
|
|
|
2011-07-02 00:05:19 +02:00
|
|
|
; LSR should leave non-affine expressions alone because it currently
|
|
|
|
; doesn't know how to do anything with them, and when it tries, it
|
|
|
|
; gets SCEVExpander's current expansion for them, which is suboptimal.
|
2010-06-04 21:16:34 +02:00
|
|
|
|
2011-07-02 00:05:19 +02:00
|
|
|
; CHECK: xorl %eax, %eax
|
|
|
|
; CHECK-NEXT: align
|
|
|
|
; CHECK-NEXT: BB0_1:
|
2011-07-06 00:09:19 +02:00
|
|
|
; CHECK-NEXT: movq %rax, (%rdx)
|
|
|
|
; CHECK-NEXT: addq %rsi, %rax
|
|
|
|
; CHECK-NEXT: cmpq %rdi, %rax
|
2011-07-02 00:05:19 +02:00
|
|
|
; CHECK-NEXT: jl
|
|
|
|
; CHECK-NEXT: imulq %rax, %rax
|
|
|
|
; CHECK-NEXT: ret
|
|
|
|
define i64 @foo(i64 %n, i64 %s, i64* %p) nounwind {
|
|
|
|
entry:
|
|
|
|
br label %loop
|
2010-06-04 21:16:34 +02:00
|
|
|
|
2011-07-02 00:05:19 +02:00
|
|
|
loop:
|
|
|
|
%i = phi i64 [ 0, %entry ], [ %i.next, %loop ]
|
2011-11-27 07:54:59 +01:00
|
|
|
store volatile i64 %i, i64* %p
|
2011-07-02 00:05:19 +02:00
|
|
|
%i.next = add i64 %i, %s
|
|
|
|
%c = icmp slt i64 %i.next, %n
|
|
|
|
br i1 %c, label %loop, label %exit
|
2010-06-04 21:16:34 +02:00
|
|
|
|
2011-07-02 00:05:19 +02:00
|
|
|
exit:
|
|
|
|
%mul = mul i64 %i.next, %i.next
|
|
|
|
ret i64 %mul
|
2010-06-04 21:16:34 +02:00
|
|
|
}
|