cpu.hh (5639:67cc7f0427e7) cpu.hh (5640:c811ced9efc1)
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;

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

332 }
333
334 bool translateInstReq(Request *req);
335 void translateDataWriteReq(Request *req);
336 void translateDataReadReq(Request *req);
337
338#if FULL_SYSTEM
339 void ev5_trap(Fault fault) { fault->invoke(tc); }
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;

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

332 }
333
334 bool translateInstReq(Request *req);
335 void translateDataWriteReq(Request *req);
336 void translateDataReadReq(Request *req);
337
338#if FULL_SYSTEM
339 void ev5_trap(Fault fault) { fault->invoke(tc); }
340 bool simPalCheck(int palFunc) { return thread->simPalCheck(palFunc); }
341#else
342 // Assume that the normal CPU's call to syscall was successful.
343 // The checker's state would have already been updated by the syscall.
344 void syscall(uint64_t callnum) { }
345#endif
346
347 void handleError()
348 {

--- 73 unchanged lines hidden ---
340#else
341 // Assume that the normal CPU's call to syscall was successful.
342 // The checker's state would have already been updated by the syscall.
343 void syscall(uint64_t callnum) { }
344#endif
345
346 void handleError()
347 {

--- 73 unchanged lines hidden ---