mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-19 03:38:26 +00:00
Expand PPC64 atomic load and store
Use of store or load with the atomic specifier on 64-bit types would cause instruction-selection failures. As with the 32-bit case, these can use the default expansion in terms of cmp-and-swap. llvm-svn: 171072
This commit is contained in:
parent
f41a8d635d
commit
6b98f1baa2
@ -443,6 +443,8 @@ PPCTargetLowering::PPCTargetLowering(PPCTargetMachine &TM)
|
||||
|
||||
setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Expand);
|
||||
setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Expand);
|
||||
setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Expand);
|
||||
setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Expand);
|
||||
|
||||
setBooleanContents(ZeroOrOneBooleanContent);
|
||||
setBooleanVectorContents(ZeroOrOneBooleanContent); // FIXME: Is this correct?
|
||||
|
@ -24,3 +24,23 @@ define i64 @exchange(i64* %mem, i64 %val) nounwind {
|
||||
; CHECK: stdcx.
|
||||
ret i64 %tmp
|
||||
}
|
||||
|
||||
define void @atomic_store(i64* %mem, i64 %val) nounwind {
|
||||
entry:
|
||||
; CHECK: @atomic_store
|
||||
store atomic i64 %val, i64* %mem release, align 64
|
||||
; CHECK: ldarx
|
||||
; CHECK: stdcx.
|
||||
ret void
|
||||
}
|
||||
|
||||
define i64 @atomic_load(i64* %mem) nounwind {
|
||||
entry:
|
||||
; CHECK: @atomic_load
|
||||
%tmp = load atomic i64* %mem acquire, align 64
|
||||
; CHECK: ldarx
|
||||
; CHECK: stdcx.
|
||||
; CHECK: stdcx.
|
||||
ret i64 %tmp
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user