Searched refs:instDone (Results 1 - 13 of 13) sorted by relevance

/gem5/src/arch/alpha/
H A Ddecoder.hh48 bool instDone; member in class:AlphaISA::Decoder
51 Decoder(ISA* isa = nullptr) : instDone(false)
61 instDone = false;
70 instDone = true;
84 return instDone;
108 if (!instDone)
110 instDone = false;
/gem5/src/arch/power/
H A Ddecoder.hh47 bool instDone; member in class:PowerISA::Decoder
50 Decoder(ISA* isa = nullptr) : instDone(false)
62 instDone = false;
71 instDone = true;
91 return instDone;
115 if (!instDone)
117 instDone = false;
/gem5/src/arch/mips/
H A Ddecoder.hh49 bool instDone; member in class:MipsISA::Decoder
52 Decoder(ISA* isa = nullptr) : instDone(false)
63 instDone = false;
72 instDone = true;
84 return instDone;
108 if (!instDone)
110 instDone = false;
/gem5/src/arch/sparc/
H A Ddecoder.hh48 bool instDone; member in class:SparcISA::Decoder
52 Decoder(ISA* isa = nullptr) : instDone(false), asi(0)
60 instDone = false;
80 instDone = true;
92 return instDone;
122 if (!instDone)
124 instDone = false;
/gem5/src/arch/riscv/
H A Ddecoder.cc49 instDone = false;
64 instDone = true;
71 instDone = true;
76 instDone = compressed(emi);
98 if (!instDone)
100 instDone = false;
H A Ddecoder.hh59 bool instDone; member in class:RiscvISA::Decoder
74 bool instReady() { return instDone; }
/gem5/src/arch/arm/
H A Ddecoder.hh66 bool instDone; member in class:ArmISA::Decoder
121 bool instReady() const { return instDone; }
H A Ddecoder.cc73 instDone = false;
82 instDone = true;
122 instDone = false;
176 if (!instDone)
191 instDone = false;
/gem5/src/arch/x86/
H A Ddecoder.cc82 assert(!instDone);
93 while (!instDone && !outOfBytes) {
162 instDone = true;
309 instDone = true;
499 instDone = true;
552 instDone = true;
578 instDone = true;
621 instDone = true;
670 instDone = true;
696 if (!instDone)
[all...]
H A Ddecoder.hh168 bool instDone; member in class:X86ISA::Decoder
239 outOfBytes(true), instDone(false),
325 return instDone;
/gem5/src/cpu/o3/
H A Dcpu.hh509 void instDone(ThreadID tid, const DynInstPtr &inst);
H A Dcommit_impl.hh1406 cpu->instDone(tid, inst);
H A Dcpu.cc1514 FullO3CPU<Impl>::instDone(ThreadID tid, const DynInstPtr &inst) function in class:FullO3CPU

Completed in 26 milliseconds