282,299d281
< /** Translates instruction requestion. */
< Fault translateInstReq(RequestPtr &req, Thread *thread)
< {
< return this->itb->translate(req, thread->getTC());
< }
<
< /** Translates data read request. */
< Fault translateDataReadReq(RequestPtr &req, Thread *thread)
< {
< return this->dtb->translate(req, thread->getTC(), false);
< }
<
< /** Translates data write request. */
< Fault translateDataWriteReq(RequestPtr &req, Thread *thread)
< {
< return this->dtb->translate(req, thread->getTC(), true);
< }
<