Deleted Added
sdiff udiff text old ( 12294:650a9d8b23cc ) new ( 12385:288c62455dde )
full compact
1// Copyright (c) 2006-2007 The Regents of The University of Michigan
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met: redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer;
8// redistributions in binary form must reproduce the above copyright

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

158def template StoreCompleteAcc {{
159 Fault %(class_name)s::completeAcc(PacketPtr, ExecContext * xc,
160 Trace::InstRecord * traceData) const
161 {
162 return NoFault;
163 }
164}};
165
166// Here are some code snippets which check for various fault conditions
167let {{
168 LoadFuncs = [LoadExecute, LoadInitiateAcc, LoadCompleteAcc]
169 StoreFuncs = [StoreExecute, StoreInitiateAcc, StoreCompleteAcc]
170
171 # The LSB can be zero, since it's really the MSB in doubles and quads
172 # and we're dealing with doubles
173 BlockAlignmentFaultCheck = '''

--- 63 unchanged lines hidden ---