cpu.hh (10529:05b5a6cf3521) cpu.hh (10698:829adc48e175)
1/*
2 * Copyright (c) 2011 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

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

280 val, thread->pcState());
281 thread->pcState(val);
282 }
283 Addr instAddr() { return thread->instAddr(); }
284 Addr nextInstAddr() { return thread->nextInstAddr(); }
285 MicroPC microPC() { return thread->microPC(); }
286 //////////////////////////////////////////
287
1/*
2 * Copyright (c) 2011 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

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

280 val, thread->pcState());
281 thread->pcState(val);
282 }
283 Addr instAddr() { return thread->instAddr(); }
284 Addr nextInstAddr() { return thread->nextInstAddr(); }
285 MicroPC microPC() { return thread->microPC(); }
286 //////////////////////////////////////////
287
288 MiscReg readMiscRegNoEffect(int misc_reg)
288 MiscReg readMiscRegNoEffect(int misc_reg) const
289 {
290 return thread->readMiscRegNoEffect(misc_reg);
291 }
292
293 MiscReg readMiscReg(int misc_reg)
294 {
295 return thread->readMiscReg(misc_reg);
296 }

--- 172 unchanged lines hidden ---
289 {
290 return thread->readMiscRegNoEffect(misc_reg);
291 }
292
293 MiscReg readMiscReg(int misc_reg)
294 {
295 return thread->readMiscReg(misc_reg);
296 }

--- 172 unchanged lines hidden ---