atomic.cc (7520:67c670459d01) atomic.cc (7655:8bce423f2075)
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;

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

682 preExecute();
683
684 if (curStaticInst) {
685 fault = curStaticInst->execute(this, traceData);
686
687 // keep an instruction count
688 if (fault == NoFault)
689 countInst();
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;

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

682 preExecute();
683
684 if (curStaticInst) {
685 fault = curStaticInst->execute(this, traceData);
686
687 // keep an instruction count
688 if (fault == NoFault)
689 countInst();
690 else if (traceData) {
691 // If there was a fault, we should trace this instruction.
690 else if (traceData && !DTRACE(ExecFaulting)) {
692 delete traceData;
693 traceData = NULL;
694 }
695
696 postExecute();
697 }
698
699 // @todo remove me after debugging with legion done

--- 56 unchanged lines hidden ---
691 delete traceData;
692 traceData = NULL;
693 }
694
695 postExecute();
696 }
697
698 // @todo remove me after debugging with legion done

--- 56 unchanged lines hidden ---