operands.isa revision 6247:094b7ea0b180
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007-2008 The Florida State University
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met: redistributions of source code must retain the above copyright
9// notice, this list of conditions and the following disclaimer;
10// redistributions in binary form must reproduce the above copyright
11// notice, this list of conditions and the following disclaimer in the
12// documentation and/or other materials provided with the distribution;
13// neither the name of the copyright holders nor the names of its
14// contributors may be used to endorse or promote products derived from
15// this software without specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28//
29// Authors: Stephen Hines
30
31def operand_types {{
32    'sb' : ('signed int', 8),
33    'ub' : ('unsigned int', 8),
34    'sh' : ('signed int', 16),
35    'uh' : ('unsigned int', 16),
36    'sw' : ('signed int', 32),
37    'uw' : ('unsigned int', 32),
38    'ud' : ('unsigned int', 64),
39    'sf' : ('float', 32),
40    'df' : ('float', 64)
41}};
42
43def operands {{
44    #General Purpose Integer Reg Operands
45    'Rd': ('IntReg', 'uw', 'RD', 'IsInteger', 1),
46    'Rm': ('IntReg', 'uw', 'RM', 'IsInteger', 2),
47    'Rs': ('IntReg', 'uw', 'RS', 'IsInteger', 3),
48    'Rn': ('IntReg', 'uw', 'RN', 'IsInteger', 4),
49
50    'Raddr': ('IntReg', 'uw', '17', 'IsInteger', 5),
51    'R0': ('IntReg', 'uw', '0', 'IsInteger', 5),
52    'R7': ('IntReg', 'uw', '7', 'IsInteger', 5),
53    'Rhi': ('IntReg', 'uw', '18', 'IsInteger', 5),
54    'Rlo': ('IntReg', 'uw', '19', 'IsInteger', 6),
55    'LR': ('IntReg', 'uw', '14', 'IsInteger', 6),
56    'Ignore': ('IntReg', 'uw', '16', 'IsInteger', 99),
57
58    #General Purpose Floating Point Reg Operands
59    'Fd': ('FloatReg', 'df', 'FD', 'IsFloating', 1),
60    'Fn': ('FloatReg', 'df', 'FN', 'IsFloating', 2),
61    'Fm': ('FloatReg', 'df', 'FM', 'IsFloating', 3),
62
63    #Memory Operand
64    'Mem': ('Mem', 'uw', None, ('IsMemRef', 'IsLoad', 'IsStore'), 8),
65
66    'Cpsr': ('ControlReg', 'uw', 'MISCREG_CPSR', 'IsInteger', 7),
67    'Fpsr': ('ControlReg', 'uw', 'MISCREG_FPSR', 'IsInteger', 7),
68    'NPC': ('NPC', 'uw', None, (None, None, 'IsControl'), 9),
69    'NNPC': ('NNPC', 'uw', None, (None, None, 'IsControl'), 9),
70
71}};
72