Deleted Added
sdiff udiff text old ( 5702:bf84e2fa05f7 ) new ( 5890:bdef71accd68 )
full compact
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

326 this->itb->demapPage(vaddr, asn);
327 }
328
329 void demapDataPage(Addr vaddr, uint64_t asn)
330 {
331 this->dtb->demapPage(vaddr, asn);
332 }
333
334#if FULL_SYSTEM
335 Fault hwrei() { return thread->hwrei(); }
336 void ev5_trap(Fault fault) { fault->invoke(tc); }
337 bool simPalCheck(int palFunc) { return thread->simPalCheck(palFunc); }
338#else
339 // Assume that the normal CPU's call to syscall was successful.
340 // The checker's state would have already been updated by the syscall.
341 void syscall(uint64_t callnum) { }

--- 77 unchanged lines hidden ---