mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 22:20:37 +00:00
R600: Promote i64 stores to v2i32
Now we need only one 64-bit pattern for stores. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211643 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e572ec68d2
commit
78d1e95201
@ -139,6 +139,9 @@ AMDGPUTargetLowering::AMDGPUTargetLowering(TargetMachine &TM) :
|
||||
setOperationAction(ISD::STORE, MVT::v2f32, Promote);
|
||||
AddPromotedToType(ISD::STORE, MVT::v2f32, MVT::v2i32);
|
||||
|
||||
setOperationAction(ISD::STORE, MVT::i64, Promote);
|
||||
AddPromotedToType(ISD::STORE, MVT::i64, MVT::v2i32);
|
||||
|
||||
setOperationAction(ISD::STORE, MVT::v4f32, Promote);
|
||||
AddPromotedToType(ISD::STORE, MVT::v4f32, MVT::v4i32);
|
||||
|
||||
|
@ -98,7 +98,6 @@ SITargetLowering::SITargetLowering(TargetMachine &TM) :
|
||||
|
||||
setOperationAction(ISD::STORE, MVT::i1, Custom);
|
||||
setOperationAction(ISD::STORE, MVT::i32, Custom);
|
||||
setOperationAction(ISD::STORE, MVT::i64, Custom);
|
||||
setOperationAction(ISD::STORE, MVT::v2i32, Custom);
|
||||
setOperationAction(ISD::STORE, MVT::v4i32, Custom);
|
||||
|
||||
@ -912,6 +911,12 @@ SDValue SITargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
|
||||
StoreSDNode *Store = cast<StoreSDNode>(Op);
|
||||
EVT VT = Store->getMemoryVT();
|
||||
|
||||
// These stores are legal.
|
||||
if (Store->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS &&
|
||||
VT.isVector() && VT.getVectorNumElements() == 2 &&
|
||||
VT.getVectorElementType() == MVT::i32)
|
||||
return SDValue();
|
||||
|
||||
SDValue Ret = AMDGPUTargetLowering::LowerSTORE(Op, DAG);
|
||||
if (Ret.getNode())
|
||||
return Ret;
|
||||
|
@ -2389,7 +2389,7 @@ multiclass DSWritePat <DS inst, ValueType vt, PatFrag frag> {
|
||||
defm : DSWritePat <DS_WRITE_B8, i32, truncstorei8_local>;
|
||||
defm : DSWritePat <DS_WRITE_B16, i32, truncstorei16_local>;
|
||||
defm : DSWritePat <DS_WRITE_B32, i32, local_store>;
|
||||
defm : DSWritePat <DS_WRITE_B64, i64, local_store>;
|
||||
defm : DSWritePat <DS_WRITE_B64, v2i32, local_store>;
|
||||
|
||||
multiclass DSAtomicRetPat<DS inst, ValueType vt, PatFrag frag> {
|
||||
def : Pat <
|
||||
@ -2555,7 +2555,6 @@ multiclass MUBUFStore_Pattern <MUBUF Instr, ValueType vt, PatFrag st> {
|
||||
defm : MUBUFStore_Pattern <BUFFER_STORE_BYTE, i32, truncstorei8_global>;
|
||||
defm : MUBUFStore_Pattern <BUFFER_STORE_SHORT, i32, truncstorei16_global>;
|
||||
defm : MUBUFStore_Pattern <BUFFER_STORE_DWORD, i32, global_store>;
|
||||
defm : MUBUFStore_Pattern <BUFFER_STORE_DWORDX2, i64, global_store>;
|
||||
defm : MUBUFStore_Pattern <BUFFER_STORE_DWORDX2, v2i32, global_store>;
|
||||
defm : MUBUFStore_Pattern <BUFFER_STORE_DWORDX4, v4i32, global_store>;
|
||||
|
||||
|
@ -263,8 +263,7 @@ entry:
|
||||
; CM-CHECK: LDS_WRITE
|
||||
; CM-CHECK: LDS_WRITE
|
||||
; SI-CHECK-LABEL: @store_local_v2i32
|
||||
; SI-CHECK: DS_WRITE_B32
|
||||
; SI-CHECK: DS_WRITE_B32
|
||||
; SI-CHECK: DS_WRITE_B64
|
||||
define void @store_local_v2i32(<2 x i32> addrspace(3)* %out, <2 x i32> %in) {
|
||||
entry:
|
||||
store <2 x i32> %in, <2 x i32> addrspace(3)* %out
|
||||
|
Loading…
Reference in New Issue
Block a user