Deleted Added
sdiff udiff text old ( 8737:770ccf3af571 ) new ( 10037:5cac77888310 )
full compact
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

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

55 if (!(condCode == COND_AL || condCode == COND_UC)) {
56 for (int x = 0; x < _numDestRegs; x++) {
57 _srcRegIdx[_numSrcRegs++] = _destRegIdx[x];
58 }
59 }
60 }
61}};
62
63
64// Basic instruction class execute method template.
65def template BasicExecute {{
66 Fault %(class_name)s::execute(%(CPU_exec_context)s *xc, Trace::InstRecord *traceData) const
67 {
68 Fault fault = NoFault;
69
70 %(op_decl)s;
71 %(op_rd)s;

--- 29 unchanged lines hidden ---