Lines Matching full:bytecode
12 compilation" are used to indicate that the source code or bytecode is compiled before actual
13 execution. In case of Panda Runtime, AOT compilation is used to compile Panda Bytecode into
14 native machine code to reduce runtime overhead from reading and compiling bytecode.
16 * **Bytecode**. See **Panda Bytecode**.
17 * **Compiler** is a tool that performs source code or bytecode translation, optimization and
22 * **ISA** stands for **Instruction Set Architecture**. See **Panda Bytecode** and
25 compilation" are used to indicate that the source code or bytecode is compiled during program
26 execution. In case of Panda Runtime, JIT compilation is used to compile Panda Bytecode into
27 native machine code to reduce overhead from interpreting bytecode.
32 correspondence between the instructions in the language and **Panda Bytecode** instructions.
34 * **Panda Binary File** or **Panda File** or **PF** is a binary representation of Panda Bytecode.
36 * **Panda Bytecode** or **PBC** is a portable hardware-independent instruction set designed for
37 compactness and efficient execution by Panda Runtime. See https://en.wikipedia.org/wiki/Bytecode.