Lines Matching full:runtime
1 # Runtime debug API
5 1. Runtime should support debugging on the platforms from low-end IoT devices to hi-end mobile phon…
9 1. Runtime doesn't patch apps' bytecode on the fly. Instead of it notification about changing bytec…
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 app's bytecode on the fl…
17 1. To simplify communication beetween debugger and runtime (especially on microcontrollers) they ar…
21 To start runtime in the debug mode a debugger [`LoadableAgent`](../runtime/include/loadable_agent.h…
23 …Runtime::StartDebugSession()`). When starting the session, the JIT is disabled, and the [`tooling:…
25 Runtime provides [`RuntimeNotificationManager`](../runtime/include/runtime_notification.h) class th…
26 * `LoadModule` - occurs when panda file is loaded by the runtime
27 * `BytecodePcChanged` - occurs when bytecode pc is changed during interpretation (only if runtime w…
29 [`tooling::Debugger`](../runtime/tooling/debugger.h) subscribes to these events and notificates deb…