Home
last modified time | relevance | path

Searched refs:I8 (Results 1 - 25 of 90) sorted by relevance

1234

/arkcompiler/runtime_core/static_core/runtime/
H A Dfield.cpp44 case panda_file::Type::TypeId::I8: in ResolveTypeClass()
45 return ext->GetClassRoot(ClassRoot::I8); in ResolveTypeClass()
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dlcr_gate_meta_data.cpp31 case I8: in MachineTypeToStr()
32 return "I8"; in MachineTypeToStr()
H A Dir_builder.cpp22 case MachineType::I8: in IsAddIntergerType()
H A Dlcr_gate_meta_data.h32 I8,
/arkcompiler/runtime_core/assembler/
H A Dannotation.h80 I8, member in panda::pandasm::Value::Type
110 case Type::I8: in GetTypeAsChar()
184 case Type::I8: in GetArrayTypeAsChar()
247 type = Type::I8; in GetCharAsType()
321 type = Type::I8; in GetCharAsArrayType()
416 std::conditional_t<value_type == Value::Type::I8, int8_t,
H A Dannotation.cpp47 case Value::Type::I8: { in InitScalarValue()
48 copy_val = std::make_unique<ScalarValue>(ScalarValue::Create<Value::Type::I8>(sc_val.GetValue<int8_t>())); in InitScalarValue()
123 case Value::Type::I8: in making_value()
210 case Value::Type::I8: in TypeToString()
H A Ddefine.h29 _("i8", I8) \
H A Dassembly-type.h113 type_id_ == panda_file::Type::TypeId::I8 || type_id_ == panda_file::Type::TypeId::U16 || in IsIntegral()
122 type_id_ == panda_file::Type::TypeId::I8 || type_id_ == panda_file::Type::TypeId::U16 || in FitsInto32()
/arkcompiler/runtime_core/static_core/assembler/
H A Dannotation.h76 I8, member in ark::pandasm::Value::Type
106 case Type::I8: in GetTypeAsChar()
178 case Type::I8: in GetArrayTypeAsChar()
242 type = Type::I8; in GetCharAsType()
314 type = Type::I8; in GetCharAsArrayType()
406 std::conditional_t<VALUE_TYPE == Value::Type::I8, int8_t,
H A Dannotation.cpp45 case Value::Type::I8: { in InitScalarValue()
46 copyVal = std::make_unique<ScalarValue>(ScalarValue::Create<Value::Type::I8>(scVal.GetValue<int8_t>())); in InitScalarValue()
116 case Value::Type::I8: in MakingValue()
202 case Value::Type::I8: in TypeToString()
H A Ddefine.h31 _("i8", I8) \
H A Dassembly-type.h114 typeId_ == panda_file::Type::TypeId::I8 || typeId_ == panda_file::Type::TypeId::U16 || in IsIntegral()
123 typeId_ == panda_file::Type::TypeId::I8 || typeId_ == panda_file::Type::TypeId::U16 || in FitsInto32()
H A Dassembly-literals.h193 case panda_file::Type::TypeId::I8: in GetArrayTagFromComponentType()
222 case panda_file::Type::TypeId::I8: in GetLiteralTagFromComponentType()
/arkcompiler/runtime_core/static_core/runtime/core/
H A Dcore_class_linker_extension.cpp63 InitializePrimitiveClassRoot(ClassRoot::I8, Type::TypeId::I8, "B"); in InitializeClassRoots()
76 InitializeArrayClassRoot(ClassRoot::ARRAY_I8, ClassRoot::I8, "[B"); in InitializeClassRoots()
160 case ClassRoot::I8: in GetClassVTableSize()
205 case ClassRoot::I8: in GetClassIMTSize()
250 case ClassRoot::I8: in GetClassSize()
/arkcompiler/runtime_core/static_core/runtime/include/
H A Dclass_root.h23 I8, member in ark::ClassRoot
H A Dtyped_value.h52 static TypedValue I8(int8_t value) in I8() function in ark::TypedValue
137 return GetType() == panda_file::Type::TypeId::I8; in IsI8()
/arkcompiler/runtime_core/static_core/runtime/tooling/
H A Ddefault_inspector_extension.cpp35 case panda_file::Type::TypeId::I8: in GetArrayElementValueStatic()
36 return TypedValue::I8(array.GetPrimitive<int8_t>(offset)); in GetArrayElementValueStatic()
74 case panda_file::Type::TypeId::I8: in GetFieldValueStatic()
75 return TypedValue::I8(object->template GetFieldPrimitive<int8_t>(field.GetOffset())); in GetFieldValueStatic()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
H A Dets_type.h49 case panda_file::Type::TypeId::I8: in ConvertPandaTypeToEtsType()
81 return panda_file::Type(panda_file::Type::TypeId::I8); in ConvertEtsTypeToPandaType()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
H A Dets_class_linker_extension.cpp95 InitializePrimitiveClassRoot(ClassRoot::I8, panda_file::Type::TypeId::I8, "B"); in InitializeClassRoots()
108 InitializeArrayClassRoot(ClassRoot::ARRAY_I8, ClassRoot::I8, "[B"); in InitializeClassRoots()
225 case ClassRoot::I8: in GetClassVTableSize()
273 case ClassRoot::I8: in GetClassIMTSize()
320 case ClassRoot::I8: in GetClassSize()
H A Dets_class_root.cpp28 case ClassRoot::I8: in ToEtsClassRoot()
H A Dets_class_root.h27 BYTE = helpers::ToUnderlying(ClassRoot::I8),
/arkcompiler/runtime_core/static_core/runtime/tests/
H A Dinvokation_helper.cpp32 case panda_file::Type::TypeId::I8: in CountMethodTypes()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/
H A Dets_method_signature_test.cpp45 panda_file::Type {panda_file::Type::TypeId::I8}, in MethodSignaturePrologue()
91 panda_file::Type {panda_file::Type::TypeId::I8}, in TEST_F()
/arkcompiler/runtime_core/assembler/tests/
H A Dannotation_test.cpp78 type_u1 = Value::GetTypeAsChar(panda::pandasm::Value::Type::I8); in HWTEST_F()
166 type_u1 = Value::GetArrayTypeAsChar(panda::pandasm::Value::Type::I8); in HWTEST_F()
246 EXPECT_EQ(panda::pandasm::Value::Type::I8, type); in HWTEST_F()
309 EXPECT_EQ(panda::pandasm::Value::Type::I8, type); in HWTEST_F()
373 type_u1 = AnnotationElement::TypeToString(panda::pandasm::Value::Type::I8); in HWTEST_F()
469 ScalarValue insn_order_i8(ScalarValue::Create<panda::pandasm::Value::Type::I8>(1)); in HWTEST_F()
/arkcompiler/runtime_core/static_core/verification/type/
H A Dtype_type.cpp79 Bitmap({Builtin::U8, Builtin::I8}), /* u1 */
105 Bitmap({Builtin::U1, Builtin::I8, Builtin::U8, Builtin::I16, Builtin::U16, Builtin::I32, Builtin::U32, Builtin::F32,
334 case Builtin::I8: in ToTypeId()
335 return TypeId::I8; in ToTypeId()
395 case TypeId::I8: in FromTypeId()
396 return Type {Builtin::I8}; in FromTypeId()

Completed in 12 milliseconds

1234