Searched refs:exceptionIndex (Results 1 – 7 of 7) sorted by relevance
58 protected override string GetExceptionDescription(ulong exceptionIndex) in GetExceptionDescription() argument60 return ExceptionDescriptionsMap.TryGetValue(exceptionIndex, out var result) in GetExceptionDescription()62 : base.GetExceptionDescription(exceptionIndex); in GetExceptionDescription()
28 HookWithExceptionIndex = exceptionIndex => in InterruptPythonEngine()30 Scope.SetVariable("exceptionIndex", exceptionIndex); in InterruptPythonEngine()
141 protected override string GetExceptionDescription(ulong exceptionIndex) in GetExceptionDescription() argument143 return ExceptionDescriptionsMap.TryGetValue(exceptionIndex, out var result) in GetExceptionDescription()145 : base.GetExceptionDescription(exceptionIndex); in GetExceptionDescription()
116 protected override string GetExceptionDescription(ulong exceptionIndex) in GetExceptionDescription() argument118 return ExceptionDescriptionsMap.TryGetValue(exceptionIndex, out var result) in GetExceptionDescription()120 : base.GetExceptionDescription(exceptionIndex); in GetExceptionDescription()
287 protected override string GetExceptionDescription(ulong exceptionIndex) in GetExceptionDescription() argument289 if(exceptionIndex >= (ulong)ExceptionDescriptions.Length) in GetExceptionDescription()291 return base.GetExceptionDescription(exceptionIndex); in GetExceptionDescription()294 return ExceptionDescriptions[exceptionIndex]; in GetExceptionDescription()
509 protected override string GetExceptionDescription(ulong exceptionIndex) in GetExceptionDescription() argument511 var decoded = (exceptionIndex << 1) >> 1; in GetExceptionDescription()512 var descriptionMap = IsInterrupt(exceptionIndex) in GetExceptionDescription()520 return base.GetExceptionDescription(exceptionIndex); in GetExceptionDescription()579 private bool IsInterrupt(ulong exceptionIndex) in IsInterrupt() argument581 return BitHelper.IsBitSet(exceptionIndex, MostSignificantBit); in IsInterrupt()
783 protected virtual string GetExceptionDescription(ulong exceptionIndex) in GetExceptionDescription() argument808 private void LogCpuInterruptBegin(ulong exceptionIndex) in LogCpuInterruptBegin() argument810 … this.Log(LogLevel.Info, "Begin of the interrupt: {0}", GetExceptionDescription(exceptionIndex)); in LogCpuInterruptBegin()813 private void LogCpuInterruptEnd(ulong exceptionIndex) in LogCpuInterruptEnd() argument815 … this.Log(LogLevel.Info, "End of the interrupt: {0}", GetExceptionDescription(exceptionIndex)); in LogCpuInterruptEnd()2287 AddHookAtInterruptBegin(exceptionIndex => in EnableProfiling()2289 machine.Profiler.Log(new ExceptionEntry(exceptionIndex)); in EnableProfiling()