summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/X86/adx-intrinsics.ll
blob: bc8e2be4de0421cf528b3b2257b4b76a962066d7 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=corei7 --show-mc-encoding | FileCheck %s --check-prefix=CHECK --check-prefix=NOADX
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=broadwell --show-mc-encoding | FileCheck %s --check-prefix=CHECK --check-prefix=ADX

declare i8 @llvm.x86.addcarryx.u32(i8, i32, i32, i8*)

define i8 @test_addcarryx_u32(i8 %c, i32 %a, i32 %b, i8* %ptr) {
; NOADX-LABEL: test_addcarryx_u32:
; NOADX:       ## %bb.0:
; NOADX-NEXT:    addb $-1, %dil ## encoding: [0x40,0x80,0xc7,0xff]
; NOADX-NEXT:    adcl %edx, %esi ## encoding: [0x11,0xd6]
; NOADX-NEXT:    movl %esi, (%rcx) ## encoding: [0x89,0x31]
; NOADX-NEXT:    setb %al ## encoding: [0x0f,0x92,0xc0]
; NOADX-NEXT:    retq ## encoding: [0xc3]
;
; ADX-LABEL: test_addcarryx_u32:
; ADX:       ## %bb.0:
; ADX-NEXT:    addb $-1, %dil ## encoding: [0x40,0x80,0xc7,0xff]
; ADX-NEXT:    adcxl %edx, %esi ## encoding: [0x66,0x0f,0x38,0xf6,0xf2]
; ADX-NEXT:    movl %esi, (%rcx) ## encoding: [0x89,0x31]
; ADX-NEXT:    setb %al ## encoding: [0x0f,0x92,0xc0]
; ADX-NEXT:    retq ## encoding: [0xc3]
  %ret = tail call i8 @llvm.x86.addcarryx.u32(i8 %c, i32 %a, i32 %b, i8* %ptr)
  ret i8 %ret;
}

declare i8 @llvm.x86.addcarryx.u64(i8, i64, i64, i8*)

define i8 @test_addcarryx_u64(i8 %c, i64 %a, i64 %b, i8* %ptr) {
; NOADX-LABEL: test_addcarryx_u64:
; NOADX:       ## %bb.0:
; NOADX-NEXT:    addb $-1, %dil ## encoding: [0x40,0x80,0xc7,0xff]
; NOADX-NEXT:    adcq %rdx, %rsi ## encoding: [0x48,0x11,0xd6]
; NOADX-NEXT:    movq %rsi, (%rcx) ## encoding: [0x48,0x89,0x31]
; NOADX-NEXT:    setb %al ## encoding: [0x0f,0x92,0xc0]
; NOADX-NEXT:    retq ## encoding: [0xc3]
;
; ADX-LABEL: test_addcarryx_u64:
; ADX:       ## %bb.0:
; ADX-NEXT:    addb $-1, %dil ## encoding: [0x40,0x80,0xc7,0xff]
; ADX-NEXT:    adcxq %rdx, %rsi ## encoding: [0x66,0x48,0x0f,0x38,0xf6,0xf2]
; ADX-NEXT:    movq %rsi, (%rcx) ## encoding: [0x48,0x89,0x31]
; ADX-NEXT:    setb %al ## encoding: [0x0f,0x92,0xc0]
; ADX-NEXT:    retq ## encoding: [0xc3]
  %ret = tail call i8 @llvm.x86.addcarryx.u64(i8 %c, i64 %a, i64 %b, i8* %ptr)
  ret i8 %ret;
}

declare i8 @llvm.x86.addcarry.u32(i8, i32, i32, i8*)

define i8 @test_addcarry_u32(i8 %c, i32 %a, i32 %b, i8* %ptr) {
; NOADX-LABEL: test_addcarry_u32:
; NOADX:       ## %bb.0:
; NOADX-NEXT:    addb $-1, %dil ## encoding: [0x40,0x80,0xc7,0xff]
; NOADX-NEXT:    adcl %edx, %esi ## encoding: [0x11,0xd6]
; NOADX-NEXT:    movl %esi, (%rcx) ## encoding: [0x89,0x31]
; NOADX-NEXT:    setb %al ## encoding: [0x0f,0x92,0xc0]
; NOADX-NEXT:    retq ## encoding: [0xc3]
;
; ADX-LABEL: test_addcarry_u32:
; ADX:       ## %bb.0:
; ADX-NEXT:    addb $-1, %dil ## encoding: [0x40,0x80,0xc7,0xff]
; ADX-NEXT:    adcxl %edx, %esi ## encoding: [0x66,0x0f,0x38,0xf6,0xf2]
; ADX-NEXT:    movl %esi, (%rcx) ## encoding: [0x89,0x31]
; ADX-NEXT:    setb %al ## encoding: [0x0f,0x92,0xc0]
; ADX-NEXT:    retq ## encoding: [0xc3]
  %ret = tail call i8 @llvm.x86.addcarry.u32(i8 %c, i32 %a, i32 %b, i8* %ptr)
  ret i8 %ret;
}

declare i8 @llvm.x86.addcarry.u64(i8, i64, i64, i8*)

define i8 @test_addcarry_u64(i8 %c, i64 %a, i64 %b, i8* %ptr) {
; NOADX-LABEL: test_addcarry_u64:
; NOADX:       ## %bb.0:
; NOADX-NEXT:    addb $-1, %dil ## encoding: [0x40,0x80,0xc7,0xff]
; NOADX-NEXT:    adcq %rdx, %rsi ## encoding: [0x48,0x11,0xd6]
; NOADX-NEXT:    movq %rsi, (%rcx) ## encoding: [0x48,0x89,0x31]
; NOADX-NEXT:    setb %al ## encoding: [0x0f,0x92,0xc0]
; NOADX-NEXT:    retq ## encoding: [0xc3]
;
; ADX-LABEL: test_addcarry_u64:
; ADX:       ## %bb.0:
; ADX-NEXT:    addb $-1, %dil ## encoding: [0x40,0x80,0xc7,0xff]
; ADX-NEXT:    adcxq %rdx, %rsi ## encoding: [0x66,0x48,0x0f,0x38,0xf6,0xf2]
; ADX-NEXT:    movq %rsi, (%rcx) ## encoding: [0x48,0x89,0x31]
; ADX-NEXT:    setb %al ## encoding: [0x0f,0x92,0xc0]
; ADX-NEXT:    retq ## encoding: [0xc3]
  %ret = tail call i8 @llvm.x86.addcarry.u64(i8 %c, i64 %a, i64 %b, i8* %ptr)
  ret i8 %ret;
}

declare i8 @llvm.x86.subborrow.u32(i8, i32, i32, i8*)

define i8 @test_subborrow_u32(i8 %c, i32 %a, i32 %b, i8* %ptr) {
; CHECK-LABEL: test_subborrow_u32:
; CHECK:       ## %bb.0:
; CHECK-NEXT:    addb $-1, %dil ## encoding: [0x40,0x80,0xc7,0xff]
; CHECK-NEXT:    sbbl %edx, %esi ## encoding: [0x19,0xd6]
; CHECK-NEXT:    movl %esi, (%rcx) ## encoding: [0x89,0x31]
; CHECK-NEXT:    setb %al ## encoding: [0x0f,0x92,0xc0]
; CHECK-NEXT:    retq ## encoding: [0xc3]
  %ret = tail call i8 @llvm.x86.subborrow.u32(i8 %c, i32 %a, i32 %b, i8* %ptr)
  ret i8 %ret;
}

declare i8 @llvm.x86.subborrow.u64(i8, i64, i64, i8*)

define i8 @test_subborrow_u64(i8 %c, i64 %a, i64 %b, i8* %ptr) {
; CHECK-LABEL: test_subborrow_u64:
; CHECK:       ## %bb.0:
; CHECK-NEXT:    addb $-1, %dil ## encoding: [0x40,0x80,0xc7,0xff]
; CHECK-NEXT:    sbbq %rdx, %rsi ## encoding: [0x48,0x19,0xd6]
; CHECK-NEXT:    movq %rsi, (%rcx) ## encoding: [0x48,0x89,0x31]
; CHECK-NEXT:    setb %al ## encoding: [0x0f,0x92,0xc0]
; CHECK-NEXT:    retq ## encoding: [0xc3]
  %ret = tail call i8 @llvm.x86.subborrow.u64(i8 %c, i64 %a, i64 %b, i8* %ptr)
  ret i8 %ret;
}

; Try a version with loads. Previously we crashed on this.
define i32 @load_crash(i64* nocapture readonly %a, i64* nocapture readonly %b, i64* %res)  {
; NOADX-LABEL: load_crash:
; NOADX:       ## %bb.0:
; NOADX-NEXT:    movq (%rdi), %rax ## encoding: [0x48,0x8b,0x07]
; NOADX-NEXT:    xorl %ecx, %ecx ## encoding: [0x31,0xc9]
; NOADX-NEXT:    addb $-1, %cl ## encoding: [0x80,0xc1,0xff]
; NOADX-NEXT:    adcq (%rsi), %rax ## encoding: [0x48,0x13,0x06]
; NOADX-NEXT:    movq %rax, (%rdx) ## encoding: [0x48,0x89,0x02]
; NOADX-NEXT:    setb %al ## encoding: [0x0f,0x92,0xc0]
; NOADX-NEXT:    movzbl %al, %eax ## encoding: [0x0f,0xb6,0xc0]
; NOADX-NEXT:    retq ## encoding: [0xc3]
;
; ADX-LABEL: load_crash:
; ADX:       ## %bb.0:
; ADX-NEXT:    movq (%rdi), %rax ## encoding: [0x48,0x8b,0x07]
; ADX-NEXT:    xorl %ecx, %ecx ## encoding: [0x31,0xc9]
; ADX-NEXT:    addb $-1, %cl ## encoding: [0x80,0xc1,0xff]
; ADX-NEXT:    adcxq (%rsi), %rax ## encoding: [0x66,0x48,0x0f,0x38,0xf6,0x06]
; ADX-NEXT:    movq %rax, (%rdx) ## encoding: [0x48,0x89,0x02]
; ADX-NEXT:    setb %al ## encoding: [0x0f,0x92,0xc0]
; ADX-NEXT:    movzbl %al, %eax ## encoding: [0x0f,0xb6,0xc0]
; ADX-NEXT:    retq ## encoding: [0xc3]
  %1 = load i64, i64* %a, align 8
  %2 = load i64, i64* %b, align 8
  %3 = bitcast i64* %res to i8*
  %4 = tail call i8 @llvm.x86.addcarryx.u64(i8 0, i64 %1, i64 %2, i8* %3)
  %conv = zext i8 %4 to i32
  ret i32 %conv
}

; Try a really simple all zero input case, which also used to crash
define void @allzeros() {
; CHECK-LABEL: allzeros:
; CHECK:       ## %bb.0: ## %entry
; CHECK-NEXT:    xorl %eax, %eax ## encoding: [0x31,0xc0]
; CHECK-NEXT:    addb $-1, %al ## encoding: [0x04,0xff]
; CHECK-NEXT:    sbbq %rax, %rax ## encoding: [0x48,0x19,0xc0]
; CHECK-NEXT:    andl $1, %eax ## encoding: [0x83,0xe0,0x01]
; CHECK-NEXT:    movq %rax, 0 ## encoding: [0x48,0x89,0x04,0x25,0x00,0x00,0x00,0x00]
; CHECK-NEXT:    retq ## encoding: [0xc3]
entry:
  %0 = tail call i8 @llvm.x86.addcarryx.u64(i8 0, i64 0, i64 0, i8* null)
  ret void
}
OpenPOWER on IntegriCloud