Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Time/
DClockEntry.cs21 this.Step = step; in ClockEntry()
29 this.Ratio = FrequencyToRatio(Step * Frequency); in ClockEntry()
45 step ?? Step); in With()
62 public long Step { get; } property
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DMultithreadContinueCommand.cs77 … var blockedStep = blocked.Where(operation => operation.Type == OperationType.Step).ToList(); in TryHandleBlockingExecution()
81 … var stepping = blocking.Where(operation => operation.Type == OperationType.Step).ToList(); in TryHandleBlockingExecution()
257 case OperationType.Step: in ManageOperation()
258 cpu.Step(1); in ManageOperation()
286 return OperationType.Step; in ParseType()
299 Step, enumerator
DSingleStepCommand.cs20 manager.Cpu.Step(1); in Execute()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/CPU/
DHaltReason.cs16 Step, enumerator
DICPU.cs37 ulong Step(int count = 1); in Step() method
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Timers/
DS32K3XX_PeriodicInterruptTimer.cs140 clockChannel.Step(); in DefineChannelRegisters()
185 public void Step() in Step() method in Antmicro.Renode.Peripherals.Timers.S32K3XX_PeriodicInterruptTimer.ClockChannel
DOpenTitan_Timer.cs138 underlyingTimer.Step = (uint)step.Value; in TimerUpdateConfiguration()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DBaseCPU.cs82 public ulong Step(int count = 1) in Step() method in Antmicro.Renode.Peripherals.CPU.BaseCPU
102 …nfo, "Automatically starting all CPUs due to '{0}' including CPUs with {1} {2}: {3}", nameof(Step), in Step()
501 InvokeHalted(new HaltArguments(HaltReason.Step, this)); in CpuThreadBody()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Timers/
DComparingTimer.cs168 public uint Step property in Antmicro.Renode.Peripherals.Timers.ComparingTimer
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/GDB/
DGdbStub.cs148 case HaltReason.Step: in OnHalted()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DMachine.cs737 x => x.Step.ToString(), in GetClockSourceInfo()
738 …x => x.Period == 0 ? "---" : Misc.NormalizeDecimal((ulong)(x.Frequency * x.Step) / (double)x.Perio… in GetClockSourceInfo()
739 …iod == 0) ? "---" : Misc.NormalizeDecimal((ulong)x.Period / (x.Frequency * (double)x.Step)) + "s" in GetClockSourceInfo()