Deleted Added
sdiff udiff text old ( 3484:9b7ac1654430 ) new ( 3520:4f4a2054fd85 )
full compact
1/*
2 * Copyright (c) 2002-2005 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;

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

307}
308#endif // FULL_SYSTEM
309
310void
311BaseSimpleCPU::checkForInterrupts()
312{
313#if FULL_SYSTEM
314 if (checkInterrupts && check_interrupts() && !thread->inPalMode()) {
315 checkInterrupts = false;
316 Fault interrupt = interrupts.getInterrupt(tc);
317
318 if (interrupt != NoFault) {
319 interrupt->invoke(tc);
320 }
321 }
322#endif
323}
324
325
326Fault
327BaseSimpleCPU::setupFetchRequest(Request *req)
328{

--- 148 unchanged lines hidden ---