base_dyn_inst.hh (10935:acd48ddd725f) base_dyn_inst.hh (11005:e7f403b6b76f)
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

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

455
456 /** Read this CPU's Socket ID. */
457 uint32_t socketId() const { return cpu->socketId(); }
458
459 /** Read this CPU's data requestor ID */
460 MasterID masterId() const { return cpu->dataMasterId(); }
461
462 /** Read this context's system-wide ID **/
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

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

455
456 /** Read this CPU's Socket ID. */
457 uint32_t socketId() const { return cpu->socketId(); }
458
459 /** Read this CPU's data requestor ID */
460 MasterID masterId() const { return cpu->dataMasterId(); }
461
462 /** Read this context's system-wide ID **/
463 int contextId() const { return thread->contextId(); }
463 ContextID contextId() const { return thread->contextId(); }
464
465 /** Returns the fault type. */
466 Fault getFault() const { return fault; }
467
468 /** Checks whether or not this instruction has had its branch target
469 * calculated yet. For now it is not utilized and is hacked to be
470 * always false.
471 * @todo: Actually use this instruction.

--- 604 unchanged lines hidden ---
464
465 /** Returns the fault type. */
466 Fault getFault() const { return fault; }
467
468 /** Checks whether or not this instruction has had its branch target
469 * calculated yet. For now it is not utilized and is hacked to be
470 * always false.
471 * @todo: Actually use this instruction.

--- 604 unchanged lines hidden ---