Lines Matching full:in
6 development of compilers and interpreters is confusing in some cases. This document describes what
11 * **AOT** stands for **Ahead-Of-Time**. In compilers, terms "ahead-of-time compilation" and "AOT
13 execution. In case of Panda Runtime, AOT compilation is used to compile Panda Bytecode into
24 * **JIT** stands for **Just-In-Time**. In compilers, terms "just-in-time compilation" and "JIT
26 execution. In case of Panda Runtime, JIT compilation is used to compile Panda Bytecode into
28 See https://en.wikipedia.org/wiki/Just-in-time_compilation.
32 correspondence between the instructions in the language and **Panda Bytecode** instructions.
44 * **Card table** used for marking cards. In general, it has one bit or byte (a byte used to
58 * **Minor GC** in general it is garbage collection worked over Young generation space
60 * **Major GC** in general it is garbage collection worked over Tenured/Old generation space.
65 Mutator is at a known point in its interaction with the heap.
66 It means that all objects which are currently in use are known and we know how to get value
73 * **STW** stands for **stop the world**, used in context of stop the world pauses forced by GC -
77 in the thread (no lock required).
81 …hroughput** is % of time not spent in GC over a long period of time(sometimes `GC throughput` uses…