Home
last modified time | relevance | path

Searched refs:opcodesMap (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DTranslationCPU_OpcodesCounting.cs44 if(opcodesMap.ContainsKey(name)) in InstallOpcodeCounterPattern()
55 opcodesMap[name] = id; in InstallOpcodeCounterPattern()
61 if(!opcodesMap.TryGetValue(name, out var id)) in GetOpcodeCounter()
72 .AddRows(opcodesMap, in GetAllOpcodesCounters()
81 foreach(var x in opcodesMap) in SaveAllOpcodesCounters()
93 private readonly Dictionary<string, uint> opcodesMap = new Dictionary<string, uint>(); field in Antmicro.Renode.Peripherals.CPU.TranslationCPU