operands.isa revision 2077
1def operand_types {{
2    'sb' : ('signed int', 8),
3    'ub' : ('unsigned int', 8),
4    'shw' : ('signed int', 16),
5    'uhw' : ('unsigned int', 16),
6    'sw' : ('signed int', 32),
7    'uw' : ('unsigned int', 32),
8    'sdw' : ('signed int', 64),
9    'udw' : ('unsigned int', 64),
10    'sf' : ('float', 32),
11    'df' : ('float', 64),
12    'qf' : ('float', 128)
13}};
14
15def operands {{
16    # Int regs default to unsigned, but code should not count on this.
17    # For clarity, descriptions that depend on unsigned behavior should
18    # explicitly specify '.uq'.
19    'Rd': ('IntReg', 'udw', 'RD', 'IsInteger', 1),
20    'Rs1': ('IntReg', 'udw', 'RS1', 'IsInteger', 2),
21    'Rs2': ('IntReg', 'udw', 'RS2', 'IsInteger', 3),
22    #'Fa': ('FloatReg', 'df', 'FA', 'IsFloating', 1),
23    #'Fb': ('FloatReg', 'df', 'FB', 'IsFloating', 2),
24    #'Fc': ('FloatReg', 'df', 'FC', 'IsFloating', 3),
25    'Mem': ('Mem', 'udw', None, ('IsMemRef', 'IsLoad', 'IsStore'), 4)
26    #'NPC': ('NPC', 'uq', None, ( None, None, 'IsControl' ), 4),
27    #'Runiq': ('ControlReg', 'uq', 'Uniq', None, 1),
28    #'FPCR':  ('ControlReg', 'uq', 'Fpcr', None, 1),
29    # The next two are hacks for non-full-system call-pal emulation
30    #'R0':  ('IntReg', 'uq', '0', None, 1),
31    #'R16': ('IntReg', 'uq', '16', None, 1)
32}};
33