request.hh (6077:37aac5b2c2b7) request.hh (6102:7fbf97dc6540)
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;

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

445 {
446 assert(flags.isSet(VALID_PC));
447 return pc;
448 }
449
450 /** Accessor Function to Check Cacheability. */
451 bool isUncacheable() const { return flags.isSet(UNCACHEABLE); }
452 bool isInstRead() const { return flags.isSet(INST_READ); }
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;

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

445 {
446 assert(flags.isSet(VALID_PC));
447 return pc;
448 }
449
450 /** Accessor Function to Check Cacheability. */
451 bool isUncacheable() const { return flags.isSet(UNCACHEABLE); }
452 bool isInstRead() const { return flags.isSet(INST_READ); }
453 bool isLlsc() const { return flags.isSet(LLSC); }
453 bool isLLSC() const { return flags.isSet(LLSC); }
454 bool isLocked() const { return flags.isSet(LOCKED); }
455 bool isSwap() const { return flags.isSet(MEM_SWAP|MEM_SWAP_COND); }
456 bool isCondSwap() const { return flags.isSet(MEM_SWAP_COND); }
457
458 bool
459 isMisaligned() const
460 {
461 if (flags.isSet(NO_ALIGN_FAULT))

--- 16 unchanged lines hidden ---
454 bool isLocked() const { return flags.isSet(LOCKED); }
455 bool isSwap() const { return flags.isSet(MEM_SWAP|MEM_SWAP_COND); }
456 bool isCondSwap() const { return flags.isSet(MEM_SWAP_COND); }
457
458 bool
459 isMisaligned() const
460 {
461 if (flags.isSet(NO_ALIGN_FAULT))

--- 16 unchanged lines hidden ---