Lines Matching full:runtime
1 # Runtime Debug API
5 1. Runtime should support debugging on the platforms from low-end IoT devices to high-end mobile ph…
9 1. Runtime doesn't patch apps' bytecode on the fly. Instead, it notifies the listeners when the PC …
11 …Runtime and debugger work in the same process. Debugger functionality is provided via shared libra…
15 1. As some low-end targets can store bytecode in ROM, runtime cannot patch apps' bytecode on the fl…
17 1. To simplify communication between debugger and runtime (especially on microcontrollers) they are…
21 …runtime in debug mode, thef `Runtime::StartDebugger()` method is used. This method loads the debug…
24 Runtime provides [`RuntimeNotificationManager`](../runtime/include/runtime_notification.h) class th…
25 * `LoadModule` - occurs when the Panda file is loaded by the runtime
27 …occurs when the PC of bytecode is changed during interpretation (only if runtime works in debug mo…
29 [`debug::Debugger`](../runtime/tooling/debugger.h) subscribes to these events and notifies debugger…