diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-07-08 23:02:22 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-07-08 23:02:22 -0700 |
commit | c9a27d85b9066489bf227f19d61ce5ddd1bc91c3 (patch) | |
tree | 9160f51be38043ae765f4b74c9baa82a7d107d39 /src/cpu/o3/cpu.hh | |
parent | 3d39b6213265ceeb14b8089190e5a097f17fdc1b (diff) | |
download | gem5-c9a27d85b9066489bf227f19d61ce5ddd1bc91c3.tar.xz |
Get rid of the unused get(Data|Inst)Asid and (inst|data)Asid functions.
Diffstat (limited to 'src/cpu/o3/cpu.hh')
-rw-r--r-- | src/cpu/o3/cpu.hh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/cpu/o3/cpu.hh b/src/cpu/o3/cpu.hh index c077b2493..0cc8eab78 100644 --- a/src/cpu/o3/cpu.hh +++ b/src/cpu/o3/cpu.hh @@ -392,23 +392,6 @@ class FullO3CPU : public BaseO3CPU /** Check if this address is a valid data address. */ bool validDataAddr(Addr addr) { return true; } - - /** Get instruction asid. */ - int getInstAsid(ThreadID tid) - { return isa[tid].instAsid(); } - - /** Get data asid. */ - int getDataAsid(ThreadID tid) - { return isa[tid].dataAsid(); } -#else - /** Get instruction asid. */ - int getInstAsid(ThreadID tid) - { return thread[tid]->getInstAsid(); } - - /** Get data asid. */ - int getDataAsid(ThreadID tid) - { return thread[tid]->getDataAsid(); } - #endif /** Register accessors. Index refers to the physical register index. */ |