Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DBaseCPU.cs53 PerformanceInMips = 100; in BaseCPU()
138 var instructions = amountOfTime.ToCPUCycles(PerformanceInMips, out var residuum); in SkipTime()
144 instructions += PerformanceInMips; in SkipTime()
145 … var newInterval = TimeInterval.FromCPUCycles(instructions, PerformanceInMips, out var _); in SkipTime()
182 public uint PerformanceInMips property in Antmicro.Renode.Peripherals.CPU.BaseCPU
414 …eport = TimeInterval.FromCPUCycles(instructions + executedResiduum, PerformanceInMips, out execute… in ReportProgress()
601 …var instructionsToExecuteThisRound = interval.ToCPUCycles(PerformanceInMips, out ulong ticksResidu… in CpuThreadBodyInner()
661 …ar intervalToSleep = TimeInterval.FromCPUCycles(instructionsToSkip, PerformanceInMips, out var cyc… in CpuThreadBodyInner()
665 …ax(TimeInterval.FromTimeSpan(intervalSlept, nsResiduum).ToCPUCycles(PerformanceInMips, out var _) … in CpuThreadBodyInner()
727 …t = TimeInterval.FromCPUCycles(instructionsLeft + executedResiduum, PerformanceInMips, out var res… in CpuThreadBodyInner()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/GuestProfiling/
DPerfettoProfiler.cs228 return (1000 * instructionCount) / cpu.PerformanceInMips; in InstructionCountToNs()