neon.isa revision 7639:8c09b7ff5b57
1// -*- mode:c++ -*-
2
3// Copyright (c) 2010 ARM Limited
4// All rights reserved
5//
6// The license below extends only to copyright in the software and shall
7// not be construed as granting a license to any other intellectual
8// property including but not limited to intellectual property relating
9// to a hardware implementation of the functionality of the software
10// licensed hereunder.  You may use the software subject to the license
11// terms below provided that you ensure that this notice is replicated
12// unmodified and in its entirety in all distributions of the software,
13// modified or unmodified, in source code or in binary form.
14//
15// Redistribution and use in source and binary forms, with or without
16// modification, are permitted provided that the following conditions are
17// met: redistributions of source code must retain the above copyright
18// notice, this list of conditions and the following disclaimer;
19// redistributions in binary form must reproduce the above copyright
20// notice, this list of conditions and the following disclaimer in the
21// documentation and/or other materials provided with the distribution;
22// neither the name of the copyright holders nor the names of its
23// contributors may be used to endorse or promote products derived from
24// this software without specific prior written permission.
25//
26// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37//
38// Authors: Gabe Black
39
40def template NeonRegRegRegOpDeclare {{
41template <class _Element>
42class %(class_name)s : public %(base_class)s
43{
44  protected:
45    typedef _Element Element;
46  public:
47    // Constructor
48    %(class_name)s(ExtMachInst machInst,
49                   IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2)
50        : %(base_class)s("%(mnemonic)s", machInst, %(op_class)s,
51                         _dest, _op1, _op2)
52    {
53        %(constructor)s;
54    }
55
56    %(BasicExecDeclare)s
57};
58}};
59
60def template NeonRegRegRegImmOpDeclare {{
61template <class _Element>
62class %(class_name)s : public %(base_class)s
63{
64  protected:
65    typedef _Element Element;
66  public:
67    // Constructor
68    %(class_name)s(ExtMachInst machInst,
69                   IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2,
70                   uint64_t _imm)
71        : %(base_class)s("%(mnemonic)s", machInst, %(op_class)s,
72                         _dest, _op1, _op2, _imm)
73    {
74        %(constructor)s;
75    }
76
77    %(BasicExecDeclare)s
78};
79}};
80
81def template NeonRegRegImmOpDeclare {{
82template <class _Element>
83class %(class_name)s : public %(base_class)s
84{
85  protected:
86    typedef _Element Element;
87  public:
88    // Constructor
89    %(class_name)s(ExtMachInst machInst,
90                   IntRegIndex _dest, IntRegIndex _op1, uint64_t _imm)
91        : %(base_class)s("%(mnemonic)s", machInst, %(op_class)s,
92                         _dest, _op1, _imm)
93    {
94        %(constructor)s;
95    }
96
97    %(BasicExecDeclare)s
98};
99}};
100
101def template NeonRegImmOpDeclare {{
102template <class _Element>
103class %(class_name)s : public %(base_class)s
104{
105  protected:
106    typedef _Element Element;
107  public:
108    // Constructor
109    %(class_name)s(ExtMachInst machInst, IntRegIndex _dest, uint64_t _imm)
110        : %(base_class)s("%(mnemonic)s", machInst, %(op_class)s, _dest, _imm)
111    {
112        %(constructor)s;
113    }
114
115    %(BasicExecDeclare)s
116};
117}};
118
119def template NeonRegRegOpDeclare {{
120template <class _Element>
121class %(class_name)s : public %(base_class)s
122{
123  protected:
124    typedef _Element Element;
125  public:
126    // Constructor
127    %(class_name)s(ExtMachInst machInst,
128                   IntRegIndex _dest, IntRegIndex _op1)
129        : %(base_class)s("%(mnemonic)s", machInst, %(op_class)s,
130                         _dest, _op1)
131    {
132        %(constructor)s;
133    }
134
135    %(BasicExecDeclare)s
136};
137}};
138
139def template NeonExecDeclare {{
140    template
141    Fault %(class_name)s<%(targs)s>::execute(
142            %(CPU_exec_context)s *, Trace::InstRecord *) const;
143}};
144
145def template NeonEqualRegExecute {{
146    template <class Element>
147    Fault %(class_name)s<Element>::execute(%(CPU_exec_context)s *xc,
148            Trace::InstRecord *traceData) const
149    {
150        Fault fault = NoFault;
151        %(op_decl)s;
152        %(op_rd)s;
153
154        const unsigned rCount = %(r_count)d;
155        const unsigned eCount = rCount * sizeof(FloatRegBits) / sizeof(Element);
156
157        union RegVect {
158            FloatRegBits regs[rCount];
159            Element elements[eCount];
160        };
161
162        if (%(predicate_test)s)
163        {
164            %(code)s;
165            if (fault == NoFault)
166            {
167                %(op_wb)s;
168            }
169        }
170
171        if (fault == NoFault && machInst.itstateMask != 0) {
172            xc->setMiscReg(MISCREG_ITSTATE, machInst.newItstate);
173        }
174
175        return fault;
176    }
177}};
178
179output header {{
180    uint16_t nextBiggerType(uint8_t);
181    uint32_t nextBiggerType(uint16_t);
182    uint64_t nextBiggerType(uint32_t);
183    int16_t nextBiggerType(int8_t);
184    int32_t nextBiggerType(int16_t);
185    int64_t nextBiggerType(int32_t);
186}};
187
188def template NeonUnequalRegExecute {{
189    template <class Element>
190    Fault %(class_name)s<Element>::execute(%(CPU_exec_context)s *xc,
191            Trace::InstRecord *traceData) const
192    {
193        typedef typeof(nextBiggerType((Element)0)) BigElement;
194        Fault fault = NoFault;
195        %(op_decl)s;
196        %(op_rd)s;
197
198        const unsigned rCount = %(r_count)d;
199        const unsigned eCount = rCount * sizeof(FloatRegBits) / sizeof(Element);
200
201        union RegVect {
202            FloatRegBits regs[rCount];
203            Element elements[eCount];
204            BigElement bigElements[eCount / 2];
205        };
206
207        union BigRegVect {
208            FloatRegBits regs[2 * rCount];
209            BigElement elements[eCount];
210        };
211
212        if (%(predicate_test)s)
213        {
214            %(code)s;
215            if (fault == NoFault)
216            {
217                %(op_wb)s;
218            }
219        }
220
221        if (fault == NoFault && machInst.itstateMask != 0) {
222            xc->setMiscReg(MISCREG_ITSTATE, machInst.newItstate);
223        }
224
225        return fault;
226    }
227}};
228