thread_context.hh (8793:5f25086326ac) thread_context.hh (8799:dac1e33e07b0)
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;

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

93
94 PhysicalMemory *getPhysMemPtr() { return actualTC->getPhysMemPtr(); }
95
96 TheISA::Kernel::Statistics *getKernelStats()
97 { return actualTC->getKernelStats(); }
98
99 Process *getProcessPtr() { return actualTC->getProcessPtr(); }
100
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;

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

93
94 PhysicalMemory *getPhysMemPtr() { return actualTC->getPhysMemPtr(); }
95
96 TheISA::Kernel::Statistics *getKernelStats()
97 { return actualTC->getKernelStats(); }
98
99 Process *getProcessPtr() { return actualTC->getProcessPtr(); }
100
101 TranslatingPort *getMemPort() { return actualTC->getMemPort(); }
101 PortProxy* getPhysProxy() { return actualTC->getPhysProxy(); }
102
102
103 VirtualPort *getVirtPort()
104 { return actualTC->getVirtPort(); }
103 FSTranslatingPortProxy* getVirtProxy()
104 { return actualTC->getVirtProxy(); }
105
105
106 FunctionalPort *getPhysPort() { return actualTC->getPhysPort(); }
106 SETranslatingPortProxy* getMemProxy() { return actualTC->getMemProxy(); }
107
108 Status status() const { return actualTC->status(); }
109
110 void setStatus(Status new_status)
111 {
112 actualTC->setStatus(new_status);
113 checkerTC->setStatus(new_status);
114 }

--- 139 unchanged lines hidden ---
107
108 Status status() const { return actualTC->status(); }
109
110 void setStatus(Status new_status)
111 {
112 actualTC->setStatus(new_status);
113 checkerTC->setStatus(new_status);
114 }

--- 139 unchanged lines hidden ---