[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / X86 / freeze.ll
blob36156a77dfd35fcf795362a3638dfad90797aebb
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mtriple=x86_64-unknown-linux-gnu < %s 2>&1 | FileCheck %s --check-prefix=X86ASM
4 %struct.T = type { i32, i32 }
6 define i32 @freeze_int() {
7 ; X86ASM-LABEL: freeze_int:
8 ; X86ASM:       # %bb.0:
9 ; X86ASM-NEXT:    imull %eax, %eax
10 ; X86ASM-NEXT:    retq
11   %y1 = freeze i32 undef
12   %t1 = mul i32 %y1, %y1
13   ret i32 %t1
16 define i5 @freeze_int2() {
17 ; X86ASM-LABEL: freeze_int2:
18 ; X86ASM:       # %bb.0:
19 ; X86ASM-NEXT:    mulb %al
20 ; X86ASM-NEXT:    retq
21   %y1 = freeze i5 undef
22   %t1 = mul i5 %y1, %y1
23   ret i5 %t1
26 define float @freeze_float() {
27 ; X86ASM-LABEL: freeze_float:
28 ; X86ASM:       # %bb.0:
29 ; X86ASM-NEXT:    addss %xmm0, %xmm0
30 ; X86ASM-NEXT:    retq
31   %y1 = freeze float undef
32   %t1 = fadd float %y1, %y1
33   ret float %t1
36 define half @freeze_half() {
37 ; X86ASM-LABEL: freeze_half:
38 ; X86ASM:       # %bb.0:
39 ; X86ASM-NEXT:    pushq %rax
40 ; X86ASM-NEXT:    .cfi_def_cfa_offset 16
41 ; X86ASM-NEXT:    xorl %edi, %edi
42 ; X86ASM-NEXT:    callq __gnu_h2f_ieee@PLT
43 ; X86ASM-NEXT:    callq __gnu_f2h_ieee@PLT
44 ; X86ASM-NEXT:    movzwl %ax, %edi
45 ; X86ASM-NEXT:    callq __gnu_h2f_ieee@PLT
46 ; X86ASM-NEXT:    addss %xmm0, %xmm0
47 ; X86ASM-NEXT:    callq __gnu_f2h_ieee@PLT
48 ; X86ASM-NEXT:    popq %rcx
49 ; X86ASM-NEXT:    .cfi_def_cfa_offset 8
50 ; X86ASM-NEXT:    retq
51   %y1 = freeze half undef
52   %t1 = fadd half %y1, %y1
53   ret half %t1
56 define <2 x i32> @freeze_ivec() {
57 ; X86ASM-LABEL: freeze_ivec:
58 ; X86ASM:       # %bb.0:
59 ; X86ASM-NEXT:    paddd %xmm0, %xmm0
60 ; X86ASM-NEXT:    retq
61   %y1 = freeze <2 x i32> undef
62   %t1 = add <2 x i32> %y1, %y1
63   ret <2 x i32> %t1
66 define i8* @freeze_ptr() {
67 ; X86ASM-LABEL: freeze_ptr:
68 ; X86ASM:       # %bb.0:
69 ; X86ASM-NEXT:    addq $4, %rax
70 ; X86ASM-NEXT:    retq
71   %y1 = freeze i8* undef
72   %t1 = getelementptr i8, i8* %y1, i64 4
73   ret i8* %t1
76 define i32 @freeze_struct() {
77 ; X86ASM-LABEL: freeze_struct:
78 ; X86ASM:       # %bb.0:
79 ; X86ASM-NEXT:    addl %eax, %eax
80 ; X86ASM-NEXT:    retq
81   %y1 = freeze %struct.T undef
82   %v1 = extractvalue %struct.T %y1, 0
83   %v2 = extractvalue %struct.T %y1, 1
84   %t1 = add i32 %v1, %v2
85   ret i32 %t1
88 define i32 @freeze_anonstruct() {
89 ; X86ASM-LABEL: freeze_anonstruct:
90 ; X86ASM:       # %bb.0:
91 ; X86ASM-NEXT:    addl %eax, %eax
92 ; X86ASM-NEXT:    retq
93   %y1 = freeze {i32, i32} undef
94   %v1 = extractvalue {i32, i32} %y1, 0
95   %v2 = extractvalue {i32, i32} %y1, 1
96   %t1 = add i32 %v1, %v2
97   ret i32 %t1
100 define i32 @freeze_anonstruct2() {
101 ; X86ASM-LABEL: freeze_anonstruct2:
102 ; X86ASM:       # %bb.0:
103 ; X86ASM-NEXT:    movzwl %ax, %eax
104 ; X86ASM-NEXT:    addl %eax, %eax
105 ; X86ASM-NEXT:    retq
106   %y1 = freeze {i32, i16} undef
107   %v1 = extractvalue {i32, i16} %y1, 0
108   %v2 = extractvalue {i32, i16} %y1, 1
109   %z2 = zext i16 %v2 to i32
110   %t1 = add i32 %v1, %z2
111   ret i32 %t1
114 define i64 @freeze_array() {
115 ; X86ASM-LABEL: freeze_array:
116 ; X86ASM:       # %bb.0:
117 ; X86ASM-NEXT:    addq %rax, %rax
118 ; X86ASM-NEXT:    retq
119   %y1 = freeze [2 x i64] undef
120   %v1 = extractvalue [2 x i64] %y1, 0
121   %v2 = extractvalue [2 x i64] %y1, 1
122   %t1 = add i64 %v1, %v2
123   ret i64 %t1
126 ; Make sure we emit a movl to zext the input before the imulq. This previously
127 ; failed because freeze was not listed in the instructions that don't zext their
128 ; result in the def32 pattern X86InstrCompiler.td.
129 define i32 @freeze_zext(i64 %a) nounwind {
130 ; X86ASM-LABEL: freeze_zext:
131 ; X86ASM:       # %bb.0: # %entry
132 ; X86ASM-NEXT:    movq %rdi, %rax
133 ; X86ASM-NEXT:    movl %eax, %ecx
134 ; X86ASM-NEXT:    movl $3435973837, %edx # imm = 0xCCCCCCCD
135 ; X86ASM-NEXT:    imulq %rcx, %rdx
136 ; X86ASM-NEXT:    shrq $35, %rdx
137 ; X86ASM-NEXT:    addl %edx, %edx
138 ; X86ASM-NEXT:    leal (%rdx,%rdx,4), %ecx
139 ; X86ASM-NEXT:    subl %ecx, %eax
140 ; X86ASM-NEXT:    # kill: def $eax killed $eax killed $rax
141 ; X86ASM-NEXT:    retq
142 entry:
143   %x = trunc i64 %a to i32
144   %y = freeze i32 %x
145   %z = urem i32 %y, 10
146   ret i32 %z