simple_thread.hh (10664:61a0b02aa800) simple_thread.hh (10698:829adc48e175)
1/*
2 * Copyright (c) 2011-2012 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

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

367 }
368
369 void setPredicate(bool val)
370 {
371 predicate = val;
372 }
373
374 MiscReg
1/*
2 * Copyright (c) 2011-2012 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

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

367 }
368
369 void setPredicate(bool val)
370 {
371 predicate = val;
372 }
373
374 MiscReg
375 readMiscRegNoEffect(int misc_reg, ThreadID tid = 0)
375 readMiscRegNoEffect(int misc_reg, ThreadID tid = 0) const
376 {
377 return isa->readMiscRegNoEffect(misc_reg);
378 }
379
380 MiscReg
381 readMiscReg(int misc_reg, ThreadID tid = 0)
382 {
383 return isa->readMiscReg(misc_reg, tc);

--- 73 unchanged lines hidden ---
376 {
377 return isa->readMiscRegNoEffect(misc_reg);
378 }
379
380 MiscReg
381 readMiscReg(int misc_reg, ThreadID tid = 0)
382 {
383 return isa->readMiscReg(misc_reg, tc);

--- 73 unchanged lines hidden ---