Deleted Added
sdiff udiff text old ( 10196:be0e1724eb39 ) new ( 12234:78ece221f9f5 )
full compact
1// -*- mode:c++ -*-
2
3// Copyright (c) 2009 The University of Edinburgh
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

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

29// Authors: Timothy M. Jones
30
31////////////////////////////////////////////////////////////////////
32//
33// Misc instructions
34//
35
36def template MiscOpExecute {{
37 Fault %(class_name)s::execute(CPU_EXEC_CONTEXT *xc, Trace::InstRecord *traceData) const
38 {
39 Fault fault = NoFault;
40 %(op_decl)s;
41 %(op_rd)s;
42
43 %(code)s;
44 if (fault == NoFault)
45 {

--- 16 unchanged lines hidden ---