| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/litecg/ |
| D | lmir_builder.cpp | 23 inline Type *GetPrimitiveType(PrimType type) in GetPrimitiveType() function 61 i8Type = GetPrimitiveType(PTY_i8); in LMIRBuilder() 62 i16Type = GetPrimitiveType(PTY_i16); in LMIRBuilder() 63 i32Type = GetPrimitiveType(PTY_i32); in LMIRBuilder() 64 i64Type = GetPrimitiveType(PTY_i64); in LMIRBuilder() 65 u1Type = GetPrimitiveType(PTY_u1); in LMIRBuilder() 66 u8Type = GetPrimitiveType(PTY_u8); in LMIRBuilder() 67 u16Type = GetPrimitiveType(PTY_u16); in LMIRBuilder() 68 u32Type = GetPrimitiveType(PTY_u32); in LMIRBuilder() 69 u64Type = GetPrimitiveType(PTY_u64); in LMIRBuilder() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/types/ |
| D | pgo_profiler_type.h | 331 Type GetPrimitiveType() const in GetPrimitiveType() function 347 return IsPrimitiveType() && GetPrimitiveType() == Type::ANY; in IsAny() 352 return IsPrimitiveType() && GetPrimitiveType() == Type::NONE; in IsNone() 357 return IsPrimitiveType() && GetPrimitiveType() == Type::INT; in IsInt() 362 return IsPrimitiveType() && GetPrimitiveType() == Type::INT_OVERFLOW; in IsIntOverFlow() 367 return IsPrimitiveType() && GetPrimitiveType() == Type::DOUBLE; in IsDouble() 372 return IsPrimitiveType() && GetPrimitiveType() == Type::STRING; in IsString() 377 return IsPrimitiveType() && GetPrimitiveType() == Type::INTERN_STRING; in IsInternString() 382 return type_.index() == 0 && GetPrimitiveType() == Type::BIG_INT; in IsBigInt() 387 return type_.index() == 0 && GetPrimitiveType() == Type::BOOLEAN; in IsBoolean() [all …]
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | calle.polymorphic.range.yaml | 52 .function panda.Class R.getPrimitiveType(panda.String a0) <static, panda.access=public> { 230 call.short R.getPrimitiveType, v1 234 call.short R.getPrimitiveType, v2 312 call.short R.getPrimitiveType, v1 316 call.short R.getPrimitiveType, v2 412 call.short R.getPrimitiveType, v1 416 call.short R.getPrimitiveType, v2 492 call.short R.getPrimitiveType, v1 496 call.short R.getPrimitiveType, v2 577 call.short R.getPrimitiveType, v1 [all …]
|
| D | call.polymorphic.range.yaml | 52 .function panda.Class R.getPrimitiveType(panda.String a0) <static, panda.access=public> { 230 call.short R.getPrimitiveType, v1 234 call.short R.getPrimitiveType, v2 312 call.short R.getPrimitiveType, v1 316 call.short R.getPrimitiveType, v2 412 call.short R.getPrimitiveType, v1 416 call.short R.getPrimitiveType, v2 492 call.short R.getPrimitiveType, v1 496 call.short R.getPrimitiveType, v2 577 call.short R.getPrimitiveType, v1 [all …]
|
| D | call.polymorphic.short.yaml | 52 .function panda.Class R.getPrimitiveType(panda.String a0) <static, panda.access=public> { 200 call.short R.getPrimitiveType, v1 204 call.short R.getPrimitiveType, v2 269 call.short R.getPrimitiveType, v1 390 call.short R.getPrimitiveType, v4
|
| D | calle.polymorphic.yaml | 52 .function panda.Class R.getPrimitiveType(panda.String a0) <static, panda.access=public> { 206 call.short R.getPrimitiveType, v1 210 call.short R.getPrimitiveType, v2 288 call.short R.getPrimitiveType, v1 292 call.short R.getPrimitiveType, v2 388 call.short R.getPrimitiveType, v1 392 call.short R.getPrimitiveType, v2 468 call.short R.getPrimitiveType, v1 472 call.short R.getPrimitiveType, v2 618 call.short R.getPrimitiveType, v4
|
| D | call.polymorphic.yaml | 52 .function panda.Class R.getPrimitiveType(panda.String a0) <static, panda.access=public> { 206 call.short R.getPrimitiveType, v1 210 call.short R.getPrimitiveType, v2 288 call.short R.getPrimitiveType, v1 292 call.short R.getPrimitiveType, v2 388 call.short R.getPrimitiveType, v1 392 call.short R.getPrimitiveType, v2 468 call.short R.getPrimitiveType, v1 472 call.short R.getPrimitiveType, v2 618 call.short R.getPrimitiveType, v4
|
| D | calle.polymorphic.short.yaml | 42 .function panda.Class R.getPrimitiveType(panda.String a0) <static, panda.access=public> { 190 call.short R.getPrimitiveType, v1 194 call.short R.getPrimitiveType, v2 259 call.short R.getPrimitiveType, v1
|
| /arkcompiler/ets_frontend/ets2panda/ir/ets/ |
| D | etsPrimitiveType.h | 28 PrimitiveType GetPrimitiveType() const in GetPrimitiveType() function
|
| D | etsPrimitiveType.cpp | 41 switch (GetPrimitiveType()) { in Dump()
|
| /arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/ |
| D | expressionLambdaLowering.cpp | 29 …function->ReturnTypeAnnotation()->AsETSPrimitiveType()->GetPrimitiveType() == ir::PrimitiveType::V… in ConvertExpression()
|
| /arkcompiler/ets_frontend/ets2panda/evaluate/debugInfoDeserialization/ |
| D | methodBuilder.cpp | 53 …if (type->IsETSPrimitiveType() && type->AsETSPrimitiveType()->GetPrimitiveType() == ir::PrimitiveT… in CreateTypedReturnStatement()
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/ |
| D | pgo_profiler_test.cpp | 866 auto primitiveType = sampleType.GetPrimitiveType(); in HWTEST_F_L0() 1055 auto primitiveType = sampleType.GetPrimitiveType(); in HWTEST_F_L0()
|
| /arkcompiler/ets_frontend/ets2panda/parser/ |
| D | ETSparser.cpp | 977 return PrimitiveTypeToName(typeAnnotation->AsETSPrimitiveType()->GetPrimitiveType()); in GetNameForTypeNode()
|
| /arkcompiler/ets_frontend/ets2panda/checker/ets/ |
| D | helpers.cpp | 1024 if (typeAnnotation->GetPrimitiveType() != ir::PrimitiveType::VOID) { in CheckVoidAnnotation()
|