--- /dev/null
+insn,mode,CONDITIONS,Ptype,Etype,0,1,2,3,in1,in2,in3,out,CR in,CR out,out2
+tdi,NORMAL,,1P,EXTRA3,0,0,0,0,RA,0,0,0,0,0,0
+twi,NORMAL,,1P,EXTRA3,0,0,0,0,RA,0,0,0,0,0,0
+fmvis,NORMAL,,1P,EXTRA3,s:FRS0,0,0,0,FRS,0,0,0,0,0,0
# Vector bitmanip
0110001110-,ALU,OP_CPROP,RA,RB,NONE,RT,NONE,CR0,0,0,ZERO,0,NONE,0,0,0,0,0,0,RC,0,0,cprop,X,,1,unofficial until submitted and approved/renumbered by the opf isa wg
------10001,ALU,OP_BMASK,RA,RB,NONE,RT,NONE,NONE,0,0,ZERO,0,NONE,0,0,0,0,0,0,NONE,0,0,bmask,BM2,,1,unofficial until submitted and approved/renumbered by the opf isa wg
------00011-,ALU,OP_FMVIS,NONE,CONST_UI,NONE,FRS,NONE,NONE,0,0,ZERO,0,NONE,0,0,0,0,0,0,NONE,0,0,fmvis,DX,,1,unofficial until submitted and approved/renumbered by the opf isa wg
+-----00011-,ALU,OP_FMVIS,FRS,CONST_UI,NONE,NONE,NONE,NONE,0,0,ZERO,0,NONE,0,0,0,0,0,0,NONE,0,0,fmvis,DX,,1,unofficial until submitted and approved/renumbered by the opf isa wg
-----01011-,ALU,OP_FISHMV,FRS,CONST_UI,NONE,FRS,NONE,NONE,0,0,ZERO,0,NONE,0,0,0,0,0,0,NONE,0,0,fishmv,DX,,1,unofficial until submitted and approved/renumbered by the opf isa wg
from collections import OrderedDict
from openpower.decoder.power_svp64 import SVP64RM
from openpower.decoder.power_enums import find_wiki_file, get_csv
+from openpower.util import log
# Write an array of dictionaries to the CSV file name:
insn_to_csv[insn_name] = csvname_ # CSV file name by instruction
dkey = create_key(row)
key = tuple(dkey.values())
- # print("key=", key)
+ #print("key=", key, dkey)
dictkeys[key] = dkey
primarykeys.add(key)
if key not in bykey:
'1R-1W': 'RM-2P-1S1D',
'1R-1W-imm': 'RM-2P-1S1D',
'1R-CRo': 'RM-2P-1S1D',
- '1R-imm': 'non-SV',
+ '1R-imm': 'RM-1P-1S',
'1W-CRo': 'RM-1P-1D',
'1W': 'non-SV',
'1W-CRi': 'RM-2P-1S1D',
if insn_name == 'svstep':
res['0'] = 'd:RT;d:CR0' # RT,CR0: Rdest1_EXTRA2
+ elif value == 'RM-1P-1S':
+ res['Etype'] = 'EXTRA3' # RM EXTRA3 type
+ if insn_name == 'fmvis':
+ res['0'] = 's:FRS0' # RS: Rsrc1_EXTRA2
+
# add to svp64 csvs
# for k in ['in1', 'in2', 'in3', 'out', 'CR in', 'CR out']:
# del res[k]