IndexCoreasmjit::Globals
asmjit::Globals Namespace Reference

Contains typedefs, constants, and variables used globally by AsmJit.

Classes

Variables

uint32_t Globals::kAllocOverhead = uint32_t(
sizeof(intptr_t
)* 4)constexprstatic[¶]

Host memory allocator overhead.

uint32_t Globals::kAllocAlignment = 8constexprstatic[¶]

Host memory allocator alignment.

uint32_t Globals::kGrowThreshold = 1024* 1024* 16constexprstatic[¶]

Aggressive growing strategy threshold.

uint32_t Globals::kMaxTreeHeight = (ASMJIT_ARCH_BITS == 32 ? 30 : 61) + 1constexprstatic[¶]

Maximum depth of RB-Tree is:

2 * log2(n + 1)

Size of RB node is at least two pointers (without data), so a theoretical architecture limit would be:

2 * log2(addressableMemorySize / sizeof(Node) + 1)

Which yields 30 on 32-bit arch and 61 on 64-bit arch. The final value was adjusted by +1 for safety reasons.

uint32_t Globals::kMaxOpCount = 6constexprstatic[¶]

Maximum number of operands per a single instruction.

uint32_t Globals::kMaxFuncArgs = 32constexprstatic[¶]

Maximum arguments of a function supported by the Compiler / Function API.

uint32_t Globals::kMaxValuePack = 4constexprstatic[¶]

The number of values that can be assigned to a single function argument or return value.

uint32_t Globals::kMaxPhysRegs = 32constexprstatic[¶]

Maximum number of physical registers AsmJit can use per register group.

uint32_t Globals::kMaxAlignment = 64constexprstatic[¶]

Maximum alignment.

uint32_t Globals::kMaxLabelNameSize = 2048constexprstatic[¶]

Maximum label or symbol size in bytes.

uint32_t Globals::kMaxSectionNameSize = 35constexprstatic[¶]

Maximum section name size.

uint32_t Globals::kMaxCommentSize = 1024constexprstatic[¶]

Maximum size of comment.

uint32_t Globals::kInvalidId = 0xFFFFFFFFuconstexprstatic[¶]

Invalid identifier.

uint32_t Globals::kNotFound = 0xFFFFFFFFuconstexprstatic[¶]

Returned by indexOf() and similar when working with containers that use 32-bit index/size.

uint64_t Globals::kNoBaseAddress = ~uint64_t(0)constexprstatic[¶]

Invalid base address.

uint32_t Globals::kNumVirtGroups = 4constexprstatic[¶]

Number of virtual register groups.

const constexpr Init_ Globals::Init {}staticconstexpr[¶]

A decorator used to initialize.

const constexpr NoInit_ Globals::NoInit {}staticconstexpr[¶]

A decorator used to not initialize.