thread_context.hh (5668:5b5a9f4203d1) thread_context.hh (5712:199d31b47f7b)
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;

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

77 BaseCPU *getCpuPtr() { return actualTC->getCpuPtr(); }
78
79 void setCpuId(int id)
80 {
81 actualTC->setCpuId(id);
82 checkerTC->setCpuId(id);
83 }
84
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;

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

77 BaseCPU *getCpuPtr() { return actualTC->getCpuPtr(); }
78
79 void setCpuId(int id)
80 {
81 actualTC->setCpuId(id);
82 checkerTC->setCpuId(id);
83 }
84
85 int readCpuId() { return actualTC->readCpuId(); }
85 int cpuId() { return actualTC->cpuId(); }
86
87 TheISA::ITB *getITBPtr() { return actualTC->getITBPtr(); }
88
89 TheISA::DTB *getDTBPtr() { return actualTC->getDTBPtr(); }
90
91#if FULL_SYSTEM
92 System *getSystemPtr() { return actualTC->getSystemPtr(); }
93

--- 206 unchanged lines hidden ---
86
87 TheISA::ITB *getITBPtr() { return actualTC->getITBPtr(); }
88
89 TheISA::DTB *getDTBPtr() { return actualTC->getDTBPtr(); }
90
91#if FULL_SYSTEM
92 System *getSystemPtr() { return actualTC->getSystemPtr(); }
93

--- 206 unchanged lines hidden ---