diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-11-08 21:28:03 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-11-08 21:28:03 +0000 |
commit | 85c3f24da311ecb00d708bc95d52e4b48c9ecf84 (patch) | |
tree | a5f169dacba0111a3f43e8a0ce449bdd7458b842 | |
parent | a84ad90c065395f26ce6093b95433ceac20ab174 (diff) |
Add "write back" bit encoding.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118446 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrVFP.td | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/lib/Target/ARM/ARMInstrVFP.td b/lib/Target/ARM/ARMInstrVFP.td index 67a58f4929..e0fb5808a8 100644 --- a/lib/Target/ARM/ARMInstrVFP.td +++ b/lib/Target/ARM/ARMInstrVFP.td @@ -80,14 +80,16 @@ def VLDMD : AXDI4<(outs), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p, reglist:$dsts, variable_ops), IndexModeNone, IIC_fpLoad_m, "vldm${amode}${p}\t$Rn, $dsts", "", []> { - let Inst{20} = 1; + let Inst{21} = 0; // wback = (W == '1') + let Inst{20} = 1; // Load } def VLDMS : AXSI4<(outs), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p, reglist:$dsts, variable_ops), IndexModeNone, IIC_fpLoad_m, "vldm${amode}${p}\t$Rn, $dsts", "", []> { - let Inst{20} = 1; + let Inst{21} = 0; // wback = (W == '1') + let Inst{20} = 1; // Load } def VLDMD_UPD : AXDI4<(outs GPR:$wb), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p, @@ -95,7 +97,8 @@ def VLDMD_UPD : AXDI4<(outs GPR:$wb), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p, IndexModeUpd, IIC_fpLoad_mu, "vldm${amode}${p}\t$Rn!, $dsts", "$Rn = $wb", []> { - let Inst{20} = 1; + let Inst{21} = 1; // wback = (W == '1') + let Inst{20} = 1; // Load } def VLDMS_UPD : AXSI4<(outs GPR:$wb), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p, @@ -103,7 +106,8 @@ def VLDMS_UPD : AXSI4<(outs GPR:$wb), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p, IndexModeUpd, IIC_fpLoad_mu, "vldm${amode}${p}\t$Rn!, $dsts", "$Rn = $wb", []> { - let Inst{20} = 1; + let Inst{21} = 1; // wback = (W == '1') + let Inst{20} = 1; // Load } } // mayLoad, neverHasSideEffects, hasExtraDefRegAllocReq @@ -113,14 +117,16 @@ def VSTMD : AXDI4<(outs), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p, reglist:$srcs, variable_ops), IndexModeNone, IIC_fpStore_m, "vstm${amode}${p}\t$Rn, $srcs", "", []> { - let Inst{20} = 0; + let Inst{21} = 0; // wback = (W == '1') + let Inst{20} = 0; // Store } def VSTMS : AXSI4<(outs), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p, reglist:$srcs, variable_ops), IndexModeNone, IIC_fpStore_m, "vstm${amode}${p}\t$Rn, $srcs", "", []> { - let Inst{20} = 0; + let Inst{21} = 0; // wback = (W == '1') + let Inst{20} = 0; // Store } def VSTMD_UPD : AXDI4<(outs GPR:$wb), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p, @@ -128,7 +134,8 @@ def VSTMD_UPD : AXDI4<(outs GPR:$wb), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p, IndexModeUpd, IIC_fpStore_mu, "vstm${amode}${p}\t$Rn!, $srcs", "$Rn = $wb", []> { - let Inst{20} = 0; + let Inst{21} = 1; // wback = (W == '1') + let Inst{20} = 0; // Store } def VSTMS_UPD : AXSI4<(outs GPR:$wb), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p, @@ -136,7 +143,8 @@ def VSTMS_UPD : AXSI4<(outs GPR:$wb), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p, IndexModeUpd, IIC_fpStore_mu, "vstm${amode}${p}\t$Rn!, $srcs", "$Rn = $wb", []> { - let Inst{20} = 0; + let Inst{21} = 1; // wback = (W == '1') + let Inst{20} = 0; // Store } } // mayStore, neverHasSideEffects, hasExtraSrcRegAllocReq |