Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Profiler/
DProfilerEntry.cs36 …uctionEntry(int cpuSlot, ulong executedInstructions) : base(ProfilerEntryType.ExecutedInstructions) in InstructionEntry()
39 ExecutedInstructions = executedInstructions; in InstructionEntry()
43 private ulong ExecutedInstructions { get; } property in Antmicro.Renode.Logging.Profiling.InstructionEntry
86 ExecutedInstructions, enumerator
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/GuestProfiling/
DCollapsedStackProfiler.cs78 var instructionsElapsed = GetInstructionsDelta(cpu.ExecutedInstructions); in OnContextChange()
97 var instructionsElapsed = GetInstructionsDelta(cpu.ExecutedInstructions); in InterruptEnter()
108 var instructionsElapsed = GetInstructionsDelta(cpu.ExecutedInstructions); in InterruptExit()
DPerfettoProfiler.cs87 ulong time = InstructionCountToNs(cpu.ExecutedInstructions); in OnContextChange()
130 ulong time = InstructionCountToNs(cpu.ExecutedInstructions); in InterruptEnter()
152 ulong time = InstructionCountToNs(cpu.ExecutedInstructions); in InterruptExit()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/Mocks/
DEmptyCPU.cs39 public override ulong ExecutedInstructions => 0; field in Antmicro.Renode.UnitTests.Mocks.EmptyCPU
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/CPU/
DICPU.cs32 ulong ExecutedInstructions { get; } property
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DExternalCPU.cs114 public override ulong ExecutedInstructions => totalExecutedInstructions; field in Antmicro.Renode.Peripherals.CPU.ExternalCPU
DBaseCPU.cs330 public abstract ulong ExecutedInstructions { get; } property in Antmicro.Renode.Peripherals.CPU.BaseCPU
642 …hine.Profiler?.Log(new InstructionEntry(machine.SystemBus.GetCPUSlot(this), ExecutedInstructions)); in CpuThreadBodyInner()
751 return CpuResult.ExecutedInstructions; in CpuThreadBodyInner()
889 ExecutedInstructions = 0, enumerator
DTranslationCPU.cs194 … public override ulong ExecutedInstructions { get {return TlibGetTotalExecutedInstructions(); } } property in Antmicro.Renode.Peripherals.CPU.TranslationCPU
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/X86/
DBaseX86.cs111 return this.ExecutedInstructions; in GetInstructionCount()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/MSP430X/
DMSP430X.cs163 public override ulong ExecutedInstructions => executedInstructions; field in Antmicro.Renode.Peripherals.CPU.MSP430X
1251 this.Log(LogLevel.Debug, "{0}: 0x{1:X04} @ {2}", PC, instr, ExecutedInstructions); in EvaluateNextOpcode()