Deleted Added
sdiff udiff text old ( 7119:5ad962dec52f ) new ( 7120:d630089169f3 )
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

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

51 %(op_wb)s;
52 }
53 }
54
55 return fault;
56 }
57}};
58
59def template LoadInitiateAcc {{
60 Fault %(class_name)s::initiateAcc(%(CPU_exec_context)s *xc,
61 Trace::InstRecord *traceData) const
62 {
63 Addr EA;
64 Fault fault = NoFault;
65
66 %(op_src_decl)s;

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

101 %(op_wb)s;
102 }
103 }
104
105 return fault;
106 }
107}};
108
109def template LoadStoreImmDeclare {{
110 /**
111 * Static instruction class for "%(mnemonic)s".
112 */
113 class %(class_name)s : public %(base_class)s
114 {
115 public:
116

--- 64 unchanged lines hidden ---