Skip to content

Commit edd2af8

Browse files
committed
[X86] Manage atomic load of fp -> int promotion in DAG
When lowering atomic <1 x T> vector types with floats, selection can fail since this pattern is unsupported. To support this, floats can be casted to an integer type of the same size. commit-id:f9d761c5
1 parent 24d9628 commit edd2af8

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

llvm/lib/Target/X86/X86ISelLowering.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -2647,6 +2647,10 @@ X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM,
26472647
setOperationAction(Op, MVT::f32, Promote);
26482648
}
26492649

2650+
setOperationPromotedToType(ISD::ATOMIC_LOAD, MVT::f16, MVT::i16);
2651+
setOperationPromotedToType(ISD::ATOMIC_LOAD, MVT::f32, MVT::i32);
2652+
setOperationPromotedToType(ISD::ATOMIC_LOAD, MVT::f64, MVT::i64);
2653+
26502654
// We have target-specific dag combine patterns for the following nodes:
26512655
setTargetDAGCombine({ISD::VECTOR_SHUFFLE,
26522656
ISD::SCALAR_TO_VECTOR,

llvm/test/CodeGen/X86/atomic-load-store.ll

+37
Original file line numberDiff line numberDiff line change
@@ -145,3 +145,40 @@ define <1 x i64> @atomic_vec1_i64_align(ptr %x) nounwind {
145145
%ret = load atomic <1 x i64>, ptr %x acquire, align 8
146146
ret <1 x i64> %ret
147147
}
148+
149+
define <1 x half> @atomic_vec1_half(ptr %x) {
150+
; CHECK3-LABEL: atomic_vec1_half:
151+
; CHECK3: ## %bb.0:
152+
; CHECK3-NEXT: movzwl (%rdi), %eax
153+
; CHECK3-NEXT: pinsrw $0, %eax, %xmm0
154+
; CHECK3-NEXT: retq
155+
;
156+
; CHECK0-LABEL: atomic_vec1_half:
157+
; CHECK0: ## %bb.0:
158+
; CHECK0-NEXT: movw (%rdi), %cx
159+
; CHECK0-NEXT: ## implicit-def: $eax
160+
; CHECK0-NEXT: movw %cx, %ax
161+
; CHECK0-NEXT: ## implicit-def: $xmm0
162+
; CHECK0-NEXT: pinsrw $0, %eax, %xmm0
163+
; CHECK0-NEXT: retq
164+
%ret = load atomic <1 x half>, ptr %x acquire, align 2
165+
ret <1 x half> %ret
166+
}
167+
168+
define <1 x float> @atomic_vec1_float(ptr %x) {
169+
; CHECK-LABEL: atomic_vec1_float:
170+
; CHECK: ## %bb.0:
171+
; CHECK-NEXT: movss {{.*#+}} xmm0 = mem[0],zero,zero,zero
172+
; CHECK-NEXT: retq
173+
%ret = load atomic <1 x float>, ptr %x acquire, align 4
174+
ret <1 x float> %ret
175+
}
176+
177+
define <1 x double> @atomic_vec1_double_align(ptr %x) nounwind {
178+
; CHECK-LABEL: atomic_vec1_double_align:
179+
; CHECK: ## %bb.0:
180+
; CHECK-NEXT: movsd {{.*#+}} xmm0 = mem[0],zero
181+
; CHECK-NEXT: retq
182+
%ret = load atomic <1 x double>, ptr %x acquire, align 8
183+
ret <1 x double> %ret
184+
}

0 commit comments

Comments
 (0)