request.hh (6739:48d10ba361c9) request.hh (6899:f8057af86bf7)
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

189 setPhys(paddr, size, flags);
190 }
191
192 Request(Addr paddr, int size, Flags flags, Tick time)
193 {
194 setPhys(paddr, size, flags, time);
195 }
196
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

189 setPhys(paddr, size, flags);
190 }
191
192 Request(Addr paddr, int size, Flags flags, Tick time)
193 {
194 setPhys(paddr, size, flags, time);
195 }
196
197 Request(Addr paddr, int size, Flags flags, Tick time, Addr pc)
198 {
199 setPhys(paddr, size, flags, time);
200 privateFlags.set(VALID_PC);
201 _pc = pc;
202 }
203
197 Request(int asid, Addr vaddr, int size, Flags flags, Addr pc,
198 int cid, ThreadID tid)
199 {
200 setVirt(asid, vaddr, size, flags, pc);
201 setThreadContext(cid, tid);
202 }
203
204 ~Request() {} // for FastAlloc

--- 268 unchanged lines hidden ---
204 Request(int asid, Addr vaddr, int size, Flags flags, Addr pc,
205 int cid, ThreadID tid)
206 {
207 setVirt(asid, vaddr, size, flags, pc);
208 setThreadContext(cid, tid);
209 }
210
211 ~Request() {} // for FastAlloc

--- 268 unchanged lines hidden ---