Deleted Added
sdiff udiff text old ( 11793:ef606668d247 ) new ( 12406:86bde4a026b5 )
full compact
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::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 ---