Lines Matching full:for
11 * **AOT** stands for **Ahead-Of-Time**. In compilers, terms "ahead-of-time compilation" and "AOT
19 * **IR** stands for **Intermediate Representation**. IR is an internal compiler data structure
20 used to represent input program and usually designed for analysis and optimization.
22 * **ISA** stands for **Instruction Set Architecture**. See **Panda Bytecode** and
24 * **JIT** stands for **Just-In-Time**. In compilers, terms "just-in-time compilation" and "JIT
36 * **Panda Bytecode** or **PBC** is a portable hardware-independent instruction set designed for
44 * **Card table** used for marking cards. In general, it has one bit or byte (a byte used to
45 improve performance of GC barrier) for one card.
47 It can be used for tracking references from tenured generation to the young generation and
48 for tracking modified references during concurrent phase of GC.
57 * **GC** stands for Garbage collector or sometimes for Garbage collection.
67 for each of their fields.
71 (one is empty and one used for allocation) and we just copy objects from one space to another
73 * **STW** stands for **stop the world**, used in context of stop the world pauses forced by GC -
76 * **TLAB** stands for **Thread Local Allocation Buffer** - buffer used exclusively for allocations