Home
last modified time | relevance | path

Searched refs:KindField (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/runtime_core/compiler/optimizer/ir/
Dlocations.h53 …explicit Location(Kind type, uintptr_t value = 0) : bit_fields_(KindField::Encode(type) | ValueFie…
137 return KindField::Get(bit_fields_); in GetKind()
219 using KindField = BitField<Kind, 0, MinimumBitsToStore(Kind::LAST)>; variable
221KindField::NextField<uintptr_t, sizeof(bit_fields_) * BITS_PER_BYTE - MinimumBitsToStore(Kind::LAS…
/arkcompiler/ets_runtime/ecmascript/compiler/
Dbytecodes.h79 using KindField = SizeField::NextField<BytecodeKind, BYTECODE_KIND_SIZE>; variable
80 using FlagsField = KindField::NextField<BytecodeFlags, BYTECODE_FLAGS_SIZE>;
244 return KindField::Get(value_); in GetKind()
Dbytecodes.cpp411 uint64_t value = SizeField::Encode(size) | KindField::Encode(kind) | in InitBytecodeMetaData()