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 * Copyright (c) 2007-2008 The Florida State University
5 * Copyright (c) 2009 The University of Edinburgh
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

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

--- 13 unchanged lines hidden ---