commit_impl.hh (2727:91e17c7ee622) commit_impl.hh (2731:822b96578fba)
1/*
2 * Copyright (c) 2004-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;

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

902
903 // If the instruction is not executed yet, then it will need extra
904 // handling. Signal backwards that it should be executed.
905 if (!head_inst->isExecuted()) {
906 // Keep this number correct. We have not yet actually executed
907 // and committed this instruction.
908 thread[tid]->funcExeInst--;
909
1/*
2 * Copyright (c) 2004-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;

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

902
903 // If the instruction is not executed yet, then it will need extra
904 // handling. Signal backwards that it should be executed.
905 if (!head_inst->isExecuted()) {
906 // Keep this number correct. We have not yet actually executed
907 // and committed this instruction.
908 thread[tid]->funcExeInst--;
909
910 head_inst->reachedCommit = true;
910 head_inst->setAtCommit();
911
912 if (head_inst->isNonSpeculative() ||
913 head_inst->isStoreConditional() ||
914 head_inst->isMemBarrier() ||
915 head_inst->isWriteBarrier()) {
916
917 DPRINTF(Commit, "Encountered a barrier or non-speculative "
918 "instruction [sn:%lli] at the head of the ROB, PC %#x.\n",

--- 353 unchanged lines hidden ---
911
912 if (head_inst->isNonSpeculative() ||
913 head_inst->isStoreConditional() ||
914 head_inst->isMemBarrier() ||
915 head_inst->isWriteBarrier()) {
916
917 DPRINTF(Commit, "Encountered a barrier or non-speculative "
918 "instruction [sn:%lli] at the head of the ROB, PC %#x.\n",

--- 353 unchanged lines hidden ---