Remove function that should have been deleted.
src/cpu/simple_thread.cc:
This function should have been deleted from an earlier push.
src/cpu/simple_thread.hh:
Delete this function; it's now in thread_state.hh/.cc.
--HG--
extra : convert_revision : f78dcf9c2b388418030d48d0ea4911c8b8b1f5ff
This commit is contained in:
@@ -323,25 +323,5 @@ SimpleThread::delVirtPort(VirtualPort *vp)
|
||||
}
|
||||
}
|
||||
|
||||
#else
|
||||
TranslatingPort *
|
||||
SimpleThread::getMemPort()
|
||||
{
|
||||
if (port != NULL)
|
||||
return port;
|
||||
|
||||
/* Use this port to for syscall emulation writes to memory. */
|
||||
Port *dcache_port;
|
||||
port = new TranslatingPort(csprintf("%s-%d-funcport",
|
||||
cpu->name(), tid),
|
||||
process->pTable, false);
|
||||
dcache_port = cpu->getPort("dcache_port");
|
||||
assert(dcache_port != NULL);
|
||||
dcache_port = dcache_port->getPeer();
|
||||
// mem_port->setPeer(port);
|
||||
port->setPeer(dcache_port);
|
||||
return port;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -173,8 +173,6 @@ class SimpleThread : public ThreadState
|
||||
|
||||
bool simPalCheck(int palFunc);
|
||||
#else
|
||||
// Override this function.
|
||||
TranslatingPort *getMemPort();
|
||||
|
||||
Fault translateInstReq(RequestPtr &req)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user