Searched refs:anyType (Results 1 - 8 of 8) sorted by relevance
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | inst.cpp | 819 auto anyType = GetAnyType(); in IsReferenceOrAny() local 820 if (anyType == AnyBaseType::UNDEFINED_TYPE) { in IsReferenceOrAny() 823 auto dataType = AnyBaseTypeToDataType(anyType); in IsReferenceOrAny()
|
H A D | inst.h | 3084 void SetAnyType(AnyBaseType anyType) in SetAnyType() argument 3086 T::template SetField<AnyBaseTypeField>(anyType); in SetAnyType() 3148 CompareAnyTypeInst(Opcode opcode, uint32_t pc, Inst *input0, AnyBaseType anyType = AnyBaseType::UNDEFINED_TYPE) in CompareAnyTypeInst() 3151 SetAnyType(anyType); 3177 GetAnyTypeNameInst(Opcode opcode, uint32_t pc, AnyBaseType anyType = AnyBaseType::UNDEFINED_TYPE) in GetAnyTypeNameInst() 3180 SetAnyType(anyType); 3200 CastAnyTypeValueInst(Opcode opcode, uint32_t pc, Inst *input0, AnyBaseType anyType = AnyBaseType::UNDEFINED_TYPE) in CastAnyTypeValueInst() 3201 : BaseInst({opcode, AnyBaseTypeToDataType(anyType), pc}, input0) in CastAnyTypeValueInst() 3203 SetAnyType(anyType); 3234 CastValueToAnyTypeInst(Opcode opcode, uint32_t pc, AnyBaseType anyType, Ins argument [all...] |
H A D | ir_constructor.h | 706 IrConstructor &AnyType(AnyBaseType anyType) in AnyType() argument 709 atm->SetAnyType(anyType); in AnyType()
|
/arkcompiler/ets_frontend/es2panda/typescript/types/ |
H A D | globalTypesHolder.cpp | 19 #include <typescript/types/anyType.h>
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
H A D | lowering.cpp | 63 auto anyType = inst->CastToCastValueToAnyType()->GetAnyType(); in VisitCastValueToAnyType() local 64 auto baseType = AnyBaseTypeToDataType(anyType); in VisitCastValueToAnyType() 894 auto anyType = inst->CastToCastValueToAnyType()->GetAnyType(); in LowerCastValueToAnyTypeWithConst() local 895 auto baseType = AnyBaseTypeToDataType(anyType); in LowerCastValueToAnyTypeWithConst() 904 auto packImm = graph->GetRuntime()->GetPackConstantByPrimitiveType(anyType, imm); in LowerCastValueToAnyTypeWithConst()
|
H A D | peepholes.cpp | 1408 auto anyType = inst->CastToCastValueToAnyType()->GetAnyType(); in VisitCastValueToAnyType() local 1416 if (anyType == cav->GetAnyType() && cav->GetAllowedInputType() == profiling::AnyInputType::DEFAULT) { in VisitCastValueToAnyType() 1437 auto baseType = AnyBaseTypeToDataType(anyType); in VisitCastValueToAnyType()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/ |
H A D | inst_builder-inl.h | 1559 auto anyType = GetAnyStringType(language); in BuildCastToAnyString() local 1560 ASSERT(anyType != AnyBaseType::UNDEFINED_TYPE); in BuildCastToAnyString() 1562 auto box = graph_->CreateInstCastValueToAnyType(GetPc(bcInst->GetAddress()), anyType, input); in BuildCastToAnyString() 1583 auto anyType = NumericDataTypeToAnyType(type, language); in BuildCastToAnyNumber() local 1584 ASSERT(anyType != AnyBaseType::UNDEFINED_TYPE); in BuildCastToAnyNumber() 1586 auto box = graph_->CreateInstCastValueToAnyType(GetPc(bcInst->GetAddress()), anyType, input); in BuildCastToAnyNumber()
|
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/ |
H A D | lambdaLowering.cpp | 675 auto *anyType = checker->GlobalETSNullishObjectType(); in CreateLambdaClassInvoke() local 679 auto *type = wrapToObject ? anyType : lparam->TsType()->Substitute(checker->Relation(), lciInfo->substitution); in CreateLambdaClassInvoke() 698 auto *returnExpr = wrapToObject ? parser->CreateFormattedExpression("@@E1 as @@T2", call, anyType) : call; in CreateLambdaClassInvoke() 705 wrapToObject ? anyType in CreateLambdaClassInvoke()
|
Completed in 21 milliseconds