ldstop.isa (4767:5e55d650692e) ldstop.isa (4834:9480bde3ae6a)
1// Copyright (c) 2007 The Hewlett-Packard Development Company
2// All rights reserved.
3//
4// Redistribution and use of this software in source and binary forms,
5// with or without modification, are permitted provided that the
6// following conditions are met:
7//
8// The software must be used only for Non-Commercial Use which means any

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

165 Trace::InstRecord * traceData) const
166 {
167 Fault fault = NoFault;
168
169 %(op_decl)s;
170 %(op_rd)s;
171
172 Mem = pkt->get<typeof(Mem)>();
1// Copyright (c) 2007 The Hewlett-Packard Development Company
2// All rights reserved.
3//
4// Redistribution and use of this software in source and binary forms,
5// with or without modification, are permitted provided that the
6// following conditions are met:
7//
8// The software must be used only for Non-Commercial Use which means any

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

165 Trace::InstRecord * traceData) const
166 {
167 Fault fault = NoFault;
168
169 %(op_decl)s;
170 %(op_rd)s;
171
172 Mem = pkt->get<typeof(Mem)>();
173 int offset = pkt->flags;
173 int offset = pkt->req->getFlags();
174 Mem = bits(Mem, (offset + dataSize) * 8 - 1, offset * 8);
175 %(code)s;
176
177 if(fault == NoFault)
178 {
179 %(op_wb)s;
180 }
181

--- 260 unchanged lines hidden ---
174 Mem = bits(Mem, (offset + dataSize) * 8 - 1, offset * 8);
175 %(code)s;
176
177 if(fault == NoFault)
178 {
179 %(op_wb)s;
180 }
181

--- 260 unchanged lines hidden ---