Deleted Added
sdiff udiff text old ( 7639:8c09b7ff5b57 ) new ( 7641:788c719d0fc8 )
full compact
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

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

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;

--- 75 unchanged lines hidden ---