macromem.isa (10037:5cac77888310) macromem.isa (10196:be0e1724eb39)
1// -*- mode:c++ -*-
2
3// Copyright (c) 2010-2013 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

--- 166 unchanged lines hidden (view full) ---

175 }
176 }
177 }
178}};
179
180def template MicroNeonMemExecDeclare {{
181 template
182 Fault %(class_name)s<%(targs)s>::execute(
1// -*- mode:c++ -*-
2
3// Copyright (c) 2010-2013 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

--- 166 unchanged lines hidden (view full) ---

175 }
176 }
177 }
178}};
179
180def template MicroNeonMemExecDeclare {{
181 template
182 Fault %(class_name)s<%(targs)s>::execute(
183 %(CPU_exec_context)s *, Trace::InstRecord *) const;
183 CPU_EXEC_CONTEXT *, Trace::InstRecord *) const;
184 template
185 Fault %(class_name)s<%(targs)s>::initiateAcc(
184 template
185 Fault %(class_name)s<%(targs)s>::initiateAcc(
186 %(CPU_exec_context)s *, Trace::InstRecord *) const;
186 CPU_EXEC_CONTEXT *, Trace::InstRecord *) const;
187 template
188 Fault %(class_name)s<%(targs)s>::completeAcc(PacketPtr,
187 template
188 Fault %(class_name)s<%(targs)s>::completeAcc(PacketPtr,
189 %(CPU_exec_context)s *, Trace::InstRecord *) const;
189 CPU_EXEC_CONTEXT *, Trace::InstRecord *) const;
190}};
191
192def template MicroNeonExecDeclare {{
193 template
194 Fault %(class_name)s<%(targs)s>::execute(
190}};
191
192def template MicroNeonExecDeclare {{
193 template
194 Fault %(class_name)s<%(targs)s>::execute(
195 %(CPU_exec_context)s *, Trace::InstRecord *) const;
195 CPU_EXEC_CONTEXT *, Trace::InstRecord *) const;
196}};
197
198////////////////////////////////////////////////////////////////////
199//
200// Neon (de)interlacing microops
201//
202
203def template MicroNeonMixDeclare {{

--- 15 unchanged lines hidden (view full) ---

219 }
220
221 %(BasicExecDeclare)s
222 };
223}};
224
225def template MicroNeonMixExecute {{
226 template <class Element>
196}};
197
198////////////////////////////////////////////////////////////////////
199//
200// Neon (de)interlacing microops
201//
202
203def template MicroNeonMixDeclare {{

--- 15 unchanged lines hidden (view full) ---

219 }
220
221 %(BasicExecDeclare)s
222 };
223}};
224
225def template MicroNeonMixExecute {{
226 template <class Element>
227 Fault %(class_name)s<Element>::execute(%(CPU_exec_context)s *xc,
227 Fault %(class_name)s<Element>::execute(CPU_EXEC_CONTEXT *xc,
228 Trace::InstRecord *traceData) const
229 {
230 Fault fault = NoFault;
231 uint64_t resTemp = 0;
232 resTemp = resTemp;
233 %(op_decl)s;
234 %(op_rd)s;
235

--- 380 unchanged lines hidden ---
228 Trace::InstRecord *traceData) const
229 {
230 Fault fault = NoFault;
231 uint64_t resTemp = 0;
232 resTemp = resTemp;
233 %(op_decl)s;
234 %(op_rd)s;
235

--- 380 unchanged lines hidden ---