Searched refs:execSeqNum (Results 1 - 9 of 9) sorted by relevance

/gem5/src/cpu/minor/
H A Ddecode.hh60 * instruction: execSeqNum.
96 execSeqNum(InstId::firstExecSeqNum),
103 execSeqNum(other.execSeqNum),
121 InstSeqNum execSeqNum; member in struct:Minor::Decode::DecodeThreadInfo
H A Ddyn_inst.hh105 InstSeqNum execSeqNum; member in class:Minor::InstId
115 fetchSeqNum(fetch_seq_num), execSeqNum(exec_seq_num)
129 execSeqNum == rhs.execSeqNum);
156 * decomposition: fetchSeqNum and execSeqNum */
215 /** execSeqNum of the latest inst on which this inst depends.
H A Ddecode.cc116 /* Use the execSeqNum as the fetch sequence number as this most closely
119 inst->traceData->setFetchSeq(inst->id.execSeqNum);
231 /* Set execSeqNum of output_inst */
232 output_inst->id.execSeqNum = decode_info.execSeqNum;
239 decode_info.execSeqNum++;
H A Ddyn_inst.cc71 if (id.execSeqNum != 0)
72 os << '.' << id.execSeqNum;
H A Dscoreboard.cc137 if (inst->id.execSeqNum > writingInst[index]) {
138 writingInst[index] = inst->id.execSeqNum;
176 DPRINTF(MinorScoreboard, "Inst: %s depends on execSeqNum: %d\n",
H A Dfetch2.cc366 assert(dyn_inst->id.execSeqNum == 0);
407 assert(dyn_inst->id.execSeqNum == 0);
H A Dexecute.cc1088 head_inflight_inst->inst->id.execSeqNum;
1209 InstSeqNum fu_inst_seq_num = fu_inst.inst->id.execSeqNum;
1222 * right execSeqNum and there are no in-flight
1277 inst->id.execSeqNum &&
1717 inst->id.execSeqNum > fu_inst->instToWaitFor;
H A Dlsq.cc253 inst->id.execSeqNum >= lastMemBarrier[inst->id.threadId];
1703 assert(inst->id.execSeqNum > lastMemBarrier[inst->id.threadId]);
1708 lastMemBarrier[inst->id.threadId] = inst->id.execSeqNum;
/gem5/util/minorview/
H A Dmodel.py94 self.execSeqNum = 0
98 self.lineSeqNum, self.fetchSeqNum, self.execSeqNum]
128 self.execSeqNum = seqnum_from_string(elems[8])
148 str(self.execSeqNum))
166 if self.execSeqNum != 0 and 'E' in select.ids:
167 ret.append(colours.number_to_colour(self.execSeqNum))
575 full_key = (inst.id.fetchSeqNum, inst.id.execSeqNum)
577 if inst.id.execSeqNum != 0 and macroop_key not in self.insts:
585 full_key = (id.fetchSeqNum, id.execSeqNum)

Completed in 28 milliseconds