Home
last modified time | relevance | path

Searched refs:U32 (Results 1 - 25 of 72) sorted by relevance

123

/arkcompiler/runtime_core/static_core/runtime/
H A Dfield.cpp54 case panda_file::Type::TypeId::U32: in ResolveTypeClass()
55 return ext->GetClassRoot(ClassRoot::U32); in ResolveTypeClass()
/arkcompiler/runtime_core/assembler/
H A Dannotation.h85 U32, member in panda::pandasm::Value::Type
125 case Type::U32: in GetTypeAsChar()
199 case Type::U32: in GetArrayTypeAsChar()
262 type = Type::U32; in GetCharAsType()
336 type = Type::U32; in GetCharAsArrayType()
426 std::conditional_t<value_type == Value::Type::U32, uint32_t,
H A Dannotation.cpp37 case Value::Type::U32: { in InitScalarValue()
39 std::make_unique<ScalarValue>(ScalarValue::Create<Value::Type::U32>(sc_val.GetValue<uint32_t>())); in InitScalarValue()
121 case Value::Type::U32: in making_value()
220 case Value::Type::U32: in TypeToString()
H A Ddefine.h32 _("u32", U32) \
H A Dassembly-type.h114 type_id_ == panda_file::Type::TypeId::I16 || type_id_ == panda_file::Type::TypeId::U32 || in IsIntegral()
123 type_id_ == panda_file::Type::TypeId::I16 || type_id_ == panda_file::Type::TypeId::U32 || in FitsInto32()
H A Dmeta.cpp54 {"u32", VType::U32}, {"i64", VType::I64}, {"u64", VType::U64}, in GetType()
171 case Value::Type::U32: {
172 return CreatePrimitiveValue<Value::Type::U32>(value);
/arkcompiler/runtime_core/static_core/assembler/
H A Dannotation.h81 U32, member in ark::pandasm::Value::Type
121 case Type::U32: in GetTypeAsChar()
193 case Type::U32: in GetArrayTypeAsChar()
257 type = Type::U32; in GetCharAsType()
329 type = Type::U32; in GetCharAsArrayType()
416 std::conditional_t<VALUE_TYPE == Value::Type::U32, uint32_t,
H A Dannotation.cpp37 case Value::Type::U32: { in InitScalarValue()
38 copyVal = std::make_unique<ScalarValue>(ScalarValue::Create<Value::Type::U32>(scVal.GetValue<uint32_t>())); in InitScalarValue()
114 case Value::Type::U32: in MakingValue()
212 case Value::Type::U32: in TypeToString()
H A Ddefine.h34 _("u32", U32) \
H A Dassembly-type.h115 typeId_ == panda_file::Type::TypeId::I16 || typeId_ == panda_file::Type::TypeId::U32 || in IsIntegral()
124 typeId_ == panda_file::Type::TypeId::I16 || typeId_ == panda_file::Type::TypeId::U32 || in FitsInto32()
H A Dassembly-literals.h199 case panda_file::Type::TypeId::U32: in GetArrayTagFromComponentType()
225 case panda_file::Type::TypeId::U32: in GetLiteralTagFromComponentType()
H A Dmeta.cpp54 {"u32", VType::U32}, {"i64", VType::I64}, {"u64", VType::U64}, in GetType()
173 case Value::Type::U32: {
174 return CreatePrimitiveValue<Value::Type::U32>(value);
/arkcompiler/runtime_core/static_core/runtime/core/
H A Dcore_class_linker_extension.cpp68 InitializePrimitiveClassRoot(ClassRoot::U32, Type::TypeId::U32, "U"); in InitializeClassRoots()
81 InitializeArrayClassRoot(ClassRoot::ARRAY_U32, ClassRoot::U32, "[U"); in InitializeClassRoots()
165 case ClassRoot::U32: in GetClassVTableSize()
210 case ClassRoot::U32: in GetClassIMTSize()
255 case ClassRoot::U32: in GetClassSize()
/arkcompiler/runtime_core/static_core/runtime/include/
H A Dclass_root.h28 U32, member in ark::ClassRoot
H A Dtyped_value.h77 static TypedValue U32(uint32_t value) in U32() function in ark::TypedValue
162 return GetType() == panda_file::Type::TypeId::U32; in IsU32()
/arkcompiler/runtime_core/static_core/runtime/tooling/
H A Ddefault_inspector_extension.cpp45 case panda_file::Type::TypeId::U32: in GetArrayElementValueStatic()
46 return TypedValue::U32(array.GetPrimitive<uint32_t>(offset)); in GetArrayElementValueStatic()
84 case panda_file::Type::TypeId::U32: in GetFieldValueStatic()
85 return TypedValue::U32(object->template GetFieldPrimitive<uint32_t>(field.GetOffset())); in GetFieldValueStatic()
/arkcompiler/ets_frontend/ets2panda/compiler/core/
H A DJSemitter.cpp59 pandasm::ScalarValue::Create<pandasm::Value::Type::U32>(Pg()->IcSize()))); in GenFunctionAnnotations()
64 pandasm::ScalarValue::Create<pandasm::Value::Type::U32>(Pg()->FormalParametersCount()))); in GenFunctionAnnotations()
/arkcompiler/runtime_core/abc2program/
H A Dabc_annotation_processor.cpp79 case pandasm::Value::Type::U32: { in FillAnnotationElements()
83 pandasm::ScalarValue::Create<pandasm::Value::Type::U32>(value))); in FillAnnotationElements()
H A Dabc_field_processor.cpp98 field_.metadata->SetValue(pandasm::ScalarValue::Create<pandasm::Value::Type::U32>(val)); in FillU32MetaData()
129 case panda_file::Type::TypeId::U32: { in FillMetaDataValue()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
H A Dets_class_linker_extension.cpp100 InitializePrimitiveClassRoot(ClassRoot::U32, panda_file::Type::TypeId::U32, "U"); in InitializeClassRoots()
113 InitializeArrayClassRoot(ClassRoot::ARRAY_U32, ClassRoot::U32, "[U"); in InitializeClassRoots()
230 case ClassRoot::U32: in GetClassVTableSize()
278 case ClassRoot::U32: in GetClassIMTSize()
325 case ClassRoot::U32: in GetClassSize()
/arkcompiler/runtime_core/static_core/runtime/tests/
H A Dinvokation_helper.cpp36 case panda_file::Type::TypeId::U32: in CountMethodTypes()
/arkcompiler/runtime_core/assembler/tests/
H A Dannotation_test.cpp98 type_u1 = Value::GetTypeAsChar(panda::pandasm::Value::Type::U32); in HWTEST_F()
186 type_u1 = Value::GetArrayTypeAsChar(panda::pandasm::Value::Type::U32); in HWTEST_F()
261 EXPECT_EQ(panda::pandasm::Value::Type::U32, type); in HWTEST_F()
324 EXPECT_EQ(panda::pandasm::Value::Type::U32, type); in HWTEST_F()
393 type_u1 = AnnotationElement::TypeToString(panda::pandasm::Value::Type::U32); in HWTEST_F()
461 ScalarValue insn_order_u32(ScalarValue::Create<panda::pandasm::Value::Type::U32>(1U)); in HWTEST_F()
/arkcompiler/runtime_core/static_core/verification/type/
H A Dtype_type.cpp83 Bitmap({Builtin::I32, Builtin::U32, Builtin::INTEGRAL16}), /* u16 */
105 Bitmap({Builtin::U1, Builtin::I8, Builtin::U8, Builtin::I16, Builtin::U16, Builtin::I32, Builtin::U32, Builtin::F32,
344 case Builtin::U32: in ToTypeId()
345 return TypeId::U32; in ToTypeId()
405 case TypeId::U32: in FromTypeId()
406 return Type {Builtin::U32}; in FromTypeId()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
H A Ddebug_info_cache.cpp212 case panda_file::Type::TypeId::U32: in CreateTypedValueFromReg()
213 return TypedValue::U32(static_cast<uint32_t>(ExtractBits(reg, 0U, 32U))); in CreateTypedValueFromReg()
251 return panda_file::Type::TypeId::U32; in GetTypeIdBySignature()
/arkcompiler/ets_frontend/merge_abc/src/
H A DannotationProto.cpp83 case panda::pandasm::Value::Type::U32: in Serialize()
196 case panda::pandasm::Value::Type::U32: { in CreateScalarValue()
197 return panda::pandasm::ScalarValue::Create<panda::pandasm::Value::Type::U32>(static_cast<uint32_t>( in CreateScalarValue()

Completed in 13 milliseconds

123