tlb.cc (12140:fab402159cdf) tlb.cc (12406:86bde4a026b5)
1/*
2 * Copyright (c) 2007-2008 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

435 bool delayedResponse;
436 assert(translation);
437 Fault fault =
438 TLB::translate(req, tc, translation, mode, delayedResponse, true);
439 if (!delayedResponse)
440 translation->finish(fault, req, tc, mode);
441}
442
1/*
2 * Copyright (c) 2007-2008 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

435 bool delayedResponse;
436 assert(translation);
437 Fault fault =
438 TLB::translate(req, tc, translation, mode, delayedResponse, true);
439 if (!delayedResponse)
440 translation->finish(fault, req, tc, mode);
441}
442
443Fault
444TLB::translateFunctional(RequestPtr req, ThreadContext *tc, Mode mode)
445{
446 panic("Not implemented\n");
447 return NoFault;
448}
449
450Walker *
451TLB::getWalker()
452{
453 return walker;
454}
455
456void
457TLB::regStats()

--- 71 unchanged lines hidden ---
443Walker *
444TLB::getWalker()
445{
446 return walker;
447}
448
449void
450TLB::regStats()

--- 71 unchanged lines hidden ---