base.cc (13611:c8b7847b4171) base.cc (13652:45d94ac03a27)
1/*
2 * Copyright (c) 2010-2012, 2015, 2017 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

639 t_info.numCondCtrlInsts++;
640 }
641
642 //result bus acceses
643 if (curStaticInst->isLoad()){
644 t_info.numLoadInsts++;
645 }
646
1/*
2 * Copyright (c) 2010-2012, 2015, 2017 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

639 t_info.numCondCtrlInsts++;
640 }
641
642 //result bus acceses
643 if (curStaticInst->isLoad()){
644 t_info.numLoadInsts++;
645 }
646
647 if (curStaticInst->isStore()){
647 if (curStaticInst->isStore() || curStaticInst->isAtomic()){
648 t_info.numStoreInsts++;
649 }
650 /* End power model statistics */
651
652 t_info.statExecutedInstType[curStaticInst->opClass()]++;
653
654 if (FullSystem)
655 traceFunctions(instAddr);

--- 58 unchanged lines hidden ---
648 t_info.numStoreInsts++;
649 }
650 /* End power model statistics */
651
652 t_info.statExecutedInstType[curStaticInst->opClass()]++;
653
654 if (FullSystem)
655 traceFunctions(instAddr);

--- 58 unchanged lines hidden ---