Add support for writeback in RFE and SRS instructions.

git-svn-id: trunk@32749 -
This commit is contained in:
Jeppe Johansen 2015-12-26 23:53:11 +00:00
parent 803f402bf8
commit 9d1646e2a8
6 changed files with 6 additions and 2 deletions

View File

@ -360,7 +360,7 @@ unit agarmgas;
// writeln(taicpu(hp).fileinfo.line);
{ LDM and STM use references as first operand but they are written like a register }
if (i=0) and (op in [A_LDM,A_STM,A_FSTM,A_FLDM,A_VSTM,A_VLDM]) then
if (i=0) and (op in [A_LDM,A_STM,A_FSTM,A_FLDM,A_VSTM,A_VLDM,A_SRS,A_RFE]) then
begin
case taicpu(hp).oper[0]^.typ of
top_ref:

View File

@ -167,6 +167,7 @@
'smuad',
'smusd',
'srs',
'rfe',
'ssat',
'ssat16',
'ssax',

View File

@ -352,5 +352,6 @@ attsufNONE,
attsufNONE,
attsufNONE,
attsufNONE,
attsufNONE,
attsufNONE
);

View File

@ -1030,6 +1030,7 @@ reg32,reg32,reg32 \x80\xFB\x40\xF0\x0 THUMB32,ARMv6T2
reg32,reg32,reg32 \x15\x7\x00\x5\xF ARM32,ARMv6
[SRScc]
[RFEcc]
[SSATcc]
reg32,immshifter,reg32 \x83\xF3\x00\x0\x0 THUMB32,ARMv6T2

View File

@ -167,6 +167,7 @@ A_SMMUL,
A_SMUAD,
A_SMUSD,
A_SRS,
A_RFE,
A_SSAT,
A_SSAT16,
A_SSAX,

View File

@ -1004,7 +1004,7 @@ Unit raarmgas;
oper.opr.typ:=OPR_REGISTER;
oper.opr.reg:=tempreg;
end
else if (actasmtoken=AS_NOT) and (actopcode in [A_LDM,A_STM,A_FLDM,A_FSTM,A_VLDM,A_VSTM]) then
else if (actasmtoken=AS_NOT) and (actopcode in [A_LDM,A_STM,A_FLDM,A_FSTM,A_VLDM,A_VSTM,A_SRS,A_RFE]) then
begin
consume(AS_NOT);
oper.opr.typ:=OPR_REFERENCE;