execute.cc (10563:755b18321206) execute.cc (10580:953d7b741619)
1/*
2 * Copyright (c) 2013-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

666 extra_dest_retire_lat =
667 timing->extraCommitLat;
668 extra_dest_retire_lat_expr =
669 timing->extraCommitLatExpr;
670 extra_assumed_lat =
671 timing->extraAssumedLat;
672 }
673
1/*
2 * Copyright (c) 2013-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

666 extra_dest_retire_lat =
667 timing->extraCommitLat;
668 extra_dest_retire_lat_expr =
669 timing->extraCommitLatExpr;
670 extra_assumed_lat =
671 timing->extraAssumedLat;
672 }
673
674 bool issued_mem_ref = inst->isMemRef();
674 issued_mem_ref = inst->isMemRef();
675
676 QueuedInst fu_inst(inst);
677
678 /* Decorate the inst with FU details */
679 inst->fuIndex = fu_index;
680 inst->extraCommitDelay = extra_dest_retire_lat;
681 inst->extraCommitDelayExpr =
682 extra_dest_retire_lat_expr;

--- 1057 unchanged lines hidden ---
675
676 QueuedInst fu_inst(inst);
677
678 /* Decorate the inst with FU details */
679 inst->fuIndex = fu_index;
680 inst->extraCommitDelay = extra_dest_retire_lat;
681 inst->extraCommitDelayExpr =
682 extra_dest_retire_lat_expr;

--- 1057 unchanged lines hidden ---