thread_context.hh (5958:2d9737bf3c2f) thread_context.hh (6022:410194bb3049)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

79 void setCpuId(int id)
80 {
81 actualTC->setCpuId(id);
82 checkerTC->setCpuId(id);
83 }
84
85 int cpuId() { return actualTC->cpuId(); }
86
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

79 void setCpuId(int id)
80 {
81 actualTC->setCpuId(id);
82 checkerTC->setCpuId(id);
83 }
84
85 int cpuId() { return actualTC->cpuId(); }
86
87 TheISA::ITB *getITBPtr() { return actualTC->getITBPtr(); }
87 TheISA::TLB *getITBPtr() { return actualTC->getITBPtr(); }
88
88
89 TheISA::DTB *getDTBPtr() { return actualTC->getDTBPtr(); }
89 TheISA::TLB *getDTBPtr() { return actualTC->getDTBPtr(); }
90
91#if FULL_SYSTEM
92 System *getSystemPtr() { return actualTC->getSystemPtr(); }
93
94 PhysicalMemory *getPhysMemPtr() { return actualTC->getPhysMemPtr(); }
95
96 TheISA::Kernel::Statistics *getKernelStats()
97 { return actualTC->getKernelStats(); }

--- 187 unchanged lines hidden ---
90
91#if FULL_SYSTEM
92 System *getSystemPtr() { return actualTC->getSystemPtr(); }
93
94 PhysicalMemory *getPhysMemPtr() { return actualTC->getPhysMemPtr(); }
95
96 TheISA::Kernel::Statistics *getKernelStats()
97 { return actualTC->getKernelStats(); }

--- 187 unchanged lines hidden ---