Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Profiler/
DProfilerEntry.cs36 …public InstructionEntry(int cpuSlot, ulong executedInstructions) : base(ProfilerEntryType.Executed… in InstructionEntry() argument
39 ExecutedInstructions = executedInstructions; in InstructionEntry()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_BigNumberAccelerator.cs25 ExecutionResult ExecuteInstructions(int instructionCount, out ulong executedInstructions); in ExecuteInstructions() argument
345 result = core.ExecuteInstructions(1, out var executedInstructions); in Execute()
346 …g(LogLevel.Debug, "Core executed {0} instructions and returned {1}", executedInstructions, result); in Execute()
375 executedInstructionsTotal += executedInstructions; in Execute()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/MSP430X/
DMSP430X.cs163 public override ulong ExecutedInstructions => executedInstructions;
245 executedInstructions++; in ExecuteInstructions()
1518 private ulong executedInstructions; field in Antmicro.Renode.Peripherals.CPU.MSP430X
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DTranslationCPU.cs1077 private void OnBlockFinished(ulong pc, uint executedInstructions) in OnBlockFinished() argument
1081 blockFinishedHook?.Invoke(pc, executedInstructions); in OnBlockFinished()