aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/fast-isel.ll
blob: ba7e861600a9751fd89fc380d5dcf1311be7f25e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
; RUN: llvm-as < %s | llc -fast-isel -march=x86
; RUN: llvm-as < %s | llc -fast-isel -march=x86-64

; This tests very minimal fast-isel functionality.

define i32 @foo(i32* %p, i32* %q) {
entry:
  %r = load i32* %p
  %s = load i32* %q
  br label %fast

fast:
  %t0 = add i32 %r, %s
  %t1 = mul i32 %t0, %s
  %t2 = sub i32 %t1, %s
  %t3 = and i32 %t2, %s
  %t4 = or i32 %t3, %s
  %t5 = xor i32 %t4, %s
  %t6 = add i32 %t5, 2
  br label %exit

exit:
  ret i32 %t6
}

define double @bar(double* %p, double* %q) {
entry:
  %r = load double* %p
  %s = load double* %q
  br label %fast

fast:
  %t0 = add double %r, %s
  %t1 = mul double %t0, %s
  %t2 = sub double %t1, %s
  br label %exit

exit:
  ret double %t2
}