request.hh (5764:f07df23e1fc8) request.hh (5875:d82be3235ab4)
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;

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

419 int
420 threadId() const
421 {
422 assert(flags.isSet(VALID_THREAD_ID));
423 return _threadId;
424 }
425
426 /** Accessor function for pc.*/
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;

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

419 int
420 threadId() const
421 {
422 assert(flags.isSet(VALID_THREAD_ID));
423 return _threadId;
424 }
425
426 /** Accessor function for pc.*/
427 bool
428 hasPC() const
429 {
430 return flags.isSet(VALID_PC);
431 }
432
427 Addr
428 getPC() const
429 {
430 assert(flags.isSet(VALID_PC));
431 return pc;
432 }
433
434 /** Accessor Function to Check Cacheability. */

--- 26 unchanged lines hidden ---
433 Addr
434 getPC() const
435 {
436 assert(flags.isSet(VALID_PC));
437 return pc;
438 }
439
440 /** Accessor Function to Check Cacheability. */

--- 26 unchanged lines hidden ---