[AArch64,ELF] Restrict MOVZ/MOVK to non-PIC large code model (#70178)
[llvm-project.git] / llvm / test / CodeGen / X86 / inreg.ll
blob4937c5c0e3f7f9c4b75db70e3d6447bd56651f47
1 ; RUN: llc < %s -mtriple=i686-pc-linux -mcpu=corei7 | FileCheck --check-prefix=DAG %s
2 ; RUN: llc < %s -mtriple=i686-pc-linux -mcpu=corei7 -O0 | FileCheck --check-prefix=FAST %s
4 %struct.s1 = type { double, float }
6 define void @g1() nounwind {
7 entry:
8   %tmp = alloca %struct.s1, align 4
9   call void @f(ptr inreg sret(%struct.s1) %tmp, i32 inreg 41, i32 inreg 42, i32 43)
10   ret void
11   ; DAG-LABEL: g1:
12   ; DAG: subl $[[AMT:.*]], %esp
13   ; DAG-NEXT: $43, (%esp)
14   ; DAG-NEXT: leal    16(%esp), %eax
15   ; DAG-NEXT: movl    $41, %edx
16   ; DAG-NEXT: movl    $42, %ecx
17   ; DAG-NEXT: calll   f
18   ; DAG-NEXT: addl $[[AMT]], %esp
19   ; DAG-NEXT: ret
21   ; FAST-LABEL: g1:
22   ; FAST: subl $[[AMT:.*]], %esp
23   ; FAST-NEXT: leal    16(%esp), %eax
24   ; FAST-NEXT: movl    $41, %edx
25   ; FAST-NEXT: movl    $42, %ecx
26   ; FAST: $43, (%esp)
27   ; FAST: calll   f
28   ; FAST-NEXT: addl $[[AMT]], %esp
29   ; FAST: ret
32 declare void @f(ptr inreg sret(%struct.s1), i32 inreg, i32 inreg, i32)
34 %struct.s2 = type {}
36 define void @g2(ptr inreg sret(%struct.s2) %agg.result) nounwind {
37 entry:
38   ret void
39   ; DAG: g2
40   ; DAG-NOT: ret $4
41   ; DAG: .size g2
43   ; FAST: g2
44   ; FAST-NOT: ret $4
45   ; FAST: .size g2