Update vm_s390x.dasc

added instructions to macros, referring macro defination of x86
for macro ins_ANDdid not find equivalent s390x replacement  instruction for 'Not' hence have currently marked the place as '????'

'????' has to be replaced with s390x complement instruction
This commit is contained in:
ketank-new 2016-11-24 14:02:50 +05:30 committed by GitHub
parent 372f721e60
commit 4ea7607e02

View File

@ -136,10 +136,10 @@
|.macro ins_A; .endmacro |.macro ins_A; .endmacro
|.macro ins_AD; .endmacro |.macro ins_AD; .endmacro
|.macro ins_AJ; .endmacro |.macro ins_AJ; .endmacro
|.macro ins_ABC; .endmacro |.macro ins_ABC; mvcl RB, RCH; mvcl RC, RCL; .endmacro
|.macro ins_AB_; .endmacro |.macro ins_AB_; mvcl RB, RCH; .endmacro
|.macro ins_A_C; .endmacro |.macro ins_A_C; mvcl RC, RCL; .endmacro
|.macro ins_AND; .endmacro |.macro ins_AND; ??? RD; .endmacro
| |
|// Instruction decode+dispatch. |// Instruction decode+dispatch.
| // TODO: tune this, right now we always decode RA-D even if they aren't used. | // TODO: tune this, right now we always decode RA-D even if they aren't used.