Home
last modified time | relevance | path

Searched defs:TaggedValue (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/runtime_core/bytecode_optimizer/
Dtagged_value.h92 constexpr TaggedValue() : value_(NULL_POINTER) {} in TaggedValue() function
94 constexpr explicit TaggedValue(TaggedType v) : value_(v) {} in TaggedValue() function
96 constexpr explicit TaggedValue(int v) : value_(static_cast<TaggedType>(v) | TAG_INT) {} in TaggedValue() function
98 explicit TaggedValue(unsigned int v) in TaggedValue() function
107 explicit TaggedValue(int64_t v) in TaggedValue() function
116 constexpr explicit TaggedValue(bool v) in TaggedValue() function
121 explicit TaggedValue(double v) in TaggedValue() function
128 explicit TaggedValue(ObjectHeader *v) : value_(static_cast<TaggedType>(ToUintPtr(v))) {} in TaggedValue() function
130 explicit TaggedValue(const ObjectHeader *v) : value_(static_cast<TaggedType>(ToUintPtr(v))) {} in TaggedValue() function
/arkcompiler/runtime_core/static_core/runtime/include/coretypes/
Dtagged_value.h117 constexpr TaggedValue() : value_(NULL_POINTER) {} in TaggedValue() function
119 constexpr explicit TaggedValue(TaggedType v) : value_(v) {} in TaggedValue() function
121 …constexpr explicit TaggedValue(int v) : value_((static_cast<TaggedType>(ark::helpers::ToUnsigned(v… in TaggedValue() function
123 explicit TaggedValue(unsigned int v) in TaggedValue() function
157 explicit TaggedValue(int64_t v) in TaggedValue() function
166 constexpr explicit TaggedValue(bool v) in TaggedValue() function
171 explicit TaggedValue(double v) in TaggedValue() function
178 explicit TaggedValue(ObjectHeader *v) : value_(static_cast<TaggedType>(ToUintPtr(v))) {} in TaggedValue() function
180 explicit TaggedValue(const ObjectHeader *v) : value_(static_cast<TaggedType>(ToUintPtr(v))) {} in TaggedValue() function
/arkcompiler/runtime_core/static_core/runtime/mem/
Dvm_handle.h26 using TaggedValue = coretypes::TaggedValue; variable
Dobject_helpers.cpp31 using TaggedValue = coretypes::TaggedValue; typedef
/arkcompiler/runtime_core/static_core/runtime/tests/
Dclass_size_test.cpp28 using TaggedValue = coretypes::TaggedValue; typedef
/arkcompiler/runtime_core/static_core/runtime/include/
Dcompiler_interface.h31 class TaggedValue; variable
/arkcompiler/ets_runtime/ecmascript/compiler/
Dtype.h157 static GateType TaggedValue() in TaggedValue() function
/arkcompiler/runtime_core/static_core/docs/
Dfile_format.md129 ### TaggedValue subsection
/arkcompiler/runtime_core/docs/
Dfile_format.md95 ### TaggedValue subsection
/arkcompiler/runtime_core/static_core/runtime/
Dthread.cpp33 using TaggedValue = coretypes::TaggedValue; typedef
/arkcompiler/runtime_core/static_core/runtime/mem/gc/
Dgc.cpp51 using TaggedValue = coretypes::TaggedValue; typedef