Searched refs:insts_in (Results 1 - 2 of 2) sorted by relevance

/gem5/src/cpu/minor/
H A Ddecode.cc141 const ForwardInstData *insts_in = getInput(tid); local
147 while (insts_in &&
148 decode_info.inputIndex < insts_in->width() && /* Still more input */
151 MinorDynInstPtr inst = insts_in->insts[decode_info.inputIndex];
249 if (decode_info.inputIndex == insts_in->width()) {
252 * insts_in->width() */
255 insts_in = NULL;
259 insts_in = getInput(tid);
H A Dexecute.cc545 const ForwardInstData *insts_in = getInput(thread_id); local
549 if (!insts_in)
572 MinorDynInstPtr inst = insts_in->insts[thread.inputIndex];
813 if (thread.inputIndex == insts_in->width()) {
815 /* Set insts_in to null to force us to leave the surrounding
817 insts_in = NULL;
821 insts_in = getInput(thread_id);
824 } while (insts_in && thread.inputIndex < insts_in->width() &&

Completed in 11 milliseconds