base.cc (3935:ef6891f64dc8) base.cc (4046:ef34b290091e)
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;

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

422 if (curStaticInst->isLoad()) {
423 ++numLoad;
424 comLoadEventQueue[0]->serviceEvents(numLoad);
425 }
426
427 traceFunctions(thread->readPC());
428
429 if (traceData) {
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;

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

422 if (curStaticInst->isLoad()) {
423 ++numLoad;
424 comLoadEventQueue[0]->serviceEvents(numLoad);
425 }
426
427 traceFunctions(thread->readPC());
428
429 if (traceData) {
430 traceData->finalize();
430 traceData->dump();
431 delete traceData;
432 traceData = NULL;
431 }
432}
433
434
435void
436BaseSimpleCPU::advancePC(Fault fault)
437{
438 if (fault != NoFault) {

--- 44 unchanged lines hidden ---
433 }
434}
435
436
437void
438BaseSimpleCPU::advancePC(Fault fault)
439{
440 if (fault != NoFault) {

--- 44 unchanged lines hidden ---