cpu.hh (10529:05b5a6cf3521) cpu.hh (10698:829adc48e175)
1/*
2 * Copyright (c) 2011-2013 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

398 bool validInstAddr(Addr addr) { return true; }
399
400 /** Check if this address is a valid data address. */
401 bool validDataAddr(Addr addr) { return true; }
402
403 /** Register accessors. Index refers to the physical register index. */
404
405 /** Reads a miscellaneous register. */
1/*
2 * Copyright (c) 2011-2013 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

398 bool validInstAddr(Addr addr) { return true; }
399
400 /** Check if this address is a valid data address. */
401 bool validDataAddr(Addr addr) { return true; }
402
403 /** Register accessors. Index refers to the physical register index. */
404
405 /** Reads a miscellaneous register. */
406 TheISA::MiscReg readMiscRegNoEffect(int misc_reg, ThreadID tid);
406 TheISA::MiscReg readMiscRegNoEffect(int misc_reg, ThreadID tid) const;
407
408 /** Reads a misc. register, including any side effects the read
409 * might have as defined by the architecture.
410 */
411 TheISA::MiscReg readMiscReg(int misc_reg, ThreadID tid);
412
413 /** Sets a miscellaneous register. */
414 void setMiscRegNoEffect(int misc_reg, const TheISA::MiscReg &val,

--- 332 unchanged lines hidden ---
407
408 /** Reads a misc. register, including any side effects the read
409 * might have as defined by the architecture.
410 */
411 TheISA::MiscReg readMiscReg(int misc_reg, ThreadID tid);
412
413 /** Sets a miscellaneous register. */
414 void setMiscRegNoEffect(int misc_reg, const TheISA::MiscReg &val,

--- 332 unchanged lines hidden ---