tlb.cc (11793:ef606668d247) tlb.cc (12406:86bde4a026b5)
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

324TLB::translateTiming(RequestPtr req, ThreadContext *tc,
325 Translation *translation, Mode mode)
326{
327 assert(translation);
328 translation->finish(translateAtomic(req, tc, mode), req, tc, mode);
329}
330
331Fault
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

324TLB::translateTiming(RequestPtr req, ThreadContext *tc,
325 Translation *translation, Mode mode)
326{
327 assert(translation);
328 translation->finish(translateAtomic(req, tc, mode), req, tc, mode);
329}
330
331Fault
332TLB::translateFunctional(RequestPtr req, ThreadContext *tc, Mode mode)
333{
334 panic("Not implemented\n");
335 return NoFault;
336}
337
338Fault
339TLB::finalizePhysical(RequestPtr req, ThreadContext *tc, Mode mode) const
340{
341 return NoFault;
342}
343
344
345MipsISA::PTE &
346TLB::index(bool advance)

--- 14 unchanged lines hidden ---
332TLB::finalizePhysical(RequestPtr req, ThreadContext *tc, Mode mode) const
333{
334 return NoFault;
335}
336
337
338MipsISA::PTE &
339TLB::index(bool advance)

--- 14 unchanged lines hidden ---