fetch2.cc (10259:ebb376f73dd2) fetch2.cc (10537:47fe87b0cf97)
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

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

71 branchPredictor(*params.branchPred),
72 inputBuffer(name + ".inputBuffer", "lines", params.fetch2InputBufferSize),
73 inputIndex(0),
74 pc(TheISA::PCState(0)),
75 havePC(false),
76 lastStreamSeqNum(InstId::firstStreamSeqNum),
77 fetchSeqNum(InstId::firstFetchSeqNum),
78 expectedStreamSeqNum(InstId::firstStreamSeqNum),
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

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

71 branchPredictor(*params.branchPred),
72 inputBuffer(name + ".inputBuffer", "lines", params.fetch2InputBufferSize),
73 inputIndex(0),
74 pc(TheISA::PCState(0)),
75 havePC(false),
76 lastStreamSeqNum(InstId::firstStreamSeqNum),
77 fetchSeqNum(InstId::firstFetchSeqNum),
78 expectedStreamSeqNum(InstId::firstStreamSeqNum),
79 predictionSeqNum(InstId::firstPredictionSeqNum)
79 predictionSeqNum(InstId::firstPredictionSeqNum),
80 blocked(false)
80{
81 if (outputWidth < 1)
82 fatal("%s: decodeInputWidth must be >= 1 (%d)\n", name, outputWidth);
83
84 if (params.fetch2InputBufferSize < 1) {
85 fatal("%s: fetch2InputBufferSize must be >= 1 (%d)\n", name,
86 params.fetch2InputBufferSize);
87 }

--- 456 unchanged lines hidden ---
81{
82 if (outputWidth < 1)
83 fatal("%s: decodeInputWidth must be >= 1 (%d)\n", name, outputWidth);
84
85 if (params.fetch2InputBufferSize < 1) {
86 fatal("%s: fetch2InputBufferSize must be >= 1 (%d)\n", name,
87 params.fetch2InputBufferSize);
88 }

--- 456 unchanged lines hidden ---