Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit df5e28c

Browse files
committedDec 18, 2024·
[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 66eca4b commit df5e28c

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed
 

‎llvm/lib/Target/X86/X86ISelLowering.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -2595,6 +2595,10 @@ X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM,
25952595
setOperationAction(Op, MVT::f32, Promote);
25962596
}
25972597

2598+
setOperationPromotedToType(ISD::ATOMIC_LOAD, MVT::f16, MVT::i16);
2599+
setOperationPromotedToType(ISD::ATOMIC_LOAD, MVT::f32, MVT::i32);
2600+
setOperationPromotedToType(ISD::ATOMIC_LOAD, MVT::f64, MVT::i64);
2601+
25982602
// We have target-specific dag combine patterns for the following nodes:
25992603
setTargetDAGCombine({ISD::VECTOR_SHUFFLE,
26002604
ISD::SCALAR_TO_VECTOR,

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

+27-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ define <1 x bfloat> @atomic_vec1_bfloat(ptr %x) {
115115
; CHECK3-NEXT: movzwl (%rdi), %eax
116116
; CHECK3-NEXT: pinsrw $0, %eax, %xmm0
117117
; CHECK3-NEXT: retq
118-
;
119118
; CHECK0-LABEL: atomic_vec1_bfloat:
120119
; CHECK0: ## %bb.0:
121120
; CHECK0-NEXT: movw (%rdi), %cx
@@ -127,3 +126,30 @@ define <1 x bfloat> @atomic_vec1_bfloat(ptr %x) {
127126
%ret = load atomic <1 x bfloat>, ptr %x acquire, align 4
128127
ret <1 x bfloat> %ret
129128
}
129+
130+
define <1 x half> @atomic_vec1_half(ptr %x) {
131+
; CHECK3-LABEL: atomic_vec1_half:
132+
; CHECK3: ## %bb.0:
133+
; CHECK3-NEXT: movzwl (%rdi), %eax
134+
; CHECK3-NEXT: pinsrw $0, %eax, %xmm0
135+
; CHECK3-NEXT: retq
136+
; CHECK0-LABEL: atomic_vec1_half:
137+
; CHECK0: ## %bb.0:
138+
; CHECK0-NEXT: movw (%rdi), %cx
139+
; CHECK0-NEXT: ## implicit-def: $eax
140+
; CHECK0-NEXT: movw %cx, %ax
141+
; CHECK0-NEXT: ## implicit-def: $xmm0
142+
; CHECK0-NEXT: pinsrw $0, %eax, %xmm0
143+
; CHECK0-NEXT: retq
144+
%ret = load atomic <1 x half>, ptr %x acquire, align 4
145+
ret <1 x half> %ret
146+
}
147+
148+
define <1 x float> @atomic_vec1_float(ptr %x) {
149+
; CHECK-LABEL: atomic_vec1_float:
150+
; CHECK: ## %bb.0:
151+
; CHECK-NEXT: movss {{.*#+}} xmm0 = mem[0],zero,zero,zero
152+
; CHECK-NEXT: retq
153+
%ret = load atomic <1 x float>, ptr %x acquire, align 4
154+
ret <1 x float> %ret
155+
}

0 commit comments

Comments
 (0)
Please sign in to comment.