Searched refs:instMap (Results 1 - 6 of 6) sorted by relevance

/gem5/src/arch/generic/
H A Ddecode_cache.cc49 auto iter = instMap.find(mach_inst);
50 if (iter != instMap.end()) {
56 instMap[mach_inst] = si;
H A Ddecode_cache.hh50 DecodeCache::InstMap<TheISA::ExtMachInst> instMap; member in class:GenericISA::BasicDecodeCache
/gem5/src/arch/riscv/
H A Ddecoder.cc86 if (instMap.find(mach_inst) != instMap.end())
87 return instMap[mach_inst];
90 instMap[mach_inst] = si;
H A Ddecoder.hh51 DecodeCache::InstMap<ExtMachInst> instMap; member in class:RiscvISA::Decoder
/gem5/src/arch/x86/
H A Ddecoder.hh232 DecodeCache::InstMap<ExtMachInst> *instMap; member in class:X86ISA::Decoder
254 instMap = NULL;
279 instMap = imIter->second;
281 instMap = new DecodeCache::InstMap<ExtMachInst>;
282 instCacheMap[m5Reg] = instMap;
H A Ddecoder.cc684 auto iter = instMap->find(mach_inst);
685 if (iter != instMap->end())
689 (*instMap)[mach_inst] = si;

Completed in 10 milliseconds