Mono.Debugger.Backend.SingleSteppingEngine.OperationStepCompilerGenerated.DoProcessEvent C# (CSharp) Method

DoProcessEvent() protected method

protected DoProcessEvent ( ) : bool
return bool
            protected override bool DoProcessEvent()
            {
                TargetAddress current_frame = inferior.CurrentFrame;

                Report.Debug (DebugFlags.SSE, "{0} compiler generated stopped at {1} ({2}:{3})",
                      sse, current_frame, block.StartAddress, block.EndAddress);
                if ((current_frame < method.StartAddress + block.StartAddress) ||
                (current_frame > method.StartAddress + block.EndAddress))
                return true;

                sse.do_next ();
                return false;
            }