Home
last modified time | relevance | path

Searched full:settype (Results 1 – 25 of 136) sorted by relevance

123456

/arkcompiler/ets_runtime/ecmascript/mem/
Dfree_object_set.h25 using SetType = int32_t; variable
35 explicit FreeObjectSet(SetType type) : setType_(type) in FreeObjectSet()
39 explicit FreeObjectSet(SetType type, MemDescPool *pool) : setType_(type), memDescPool_(pool) in FreeObjectSet()
72 static constexpr SetType INVALID_SET_TYPE = -1;
77 SetType setType_ = INVALID_SET_TYPE;
Dfree_object_list.cpp66 SetType type = SelectSetType(size); in Allocate()
71 SetType lastType = type - 1; in Allocate()
112 SetType type = SelectSetType(size); in LookupSuitableFreeObject()
117 SetType lastType = type - 1; in LookupSuitableFreeObject()
155 SetType type = SelectSetType(size); in Free()
194 SetType type = SelectSetType(size); in Free()
238 SetType type = SelectSetType(size); in MatchFreeObjectInSet()
259 SetType type = set->setType_; in AddSet()
289 SetType type = set->setType_; in RemoveSet()
321 SetType type = set->setType_; in Merge()
[all …]
Dfree_object_list.h54 void EnumerateSets(SetType type, const Callback &cb) const;
98 inline SetType SelectSetType(size_t size) const in SelectSetType()
119 inline void SetNoneEmptyBit(SetType type) in SetNoneEmptyBit()
123 inline void ClearNoneEmptyBit(SetType type) in ClearNoneEmptyBit()
127 inline size_t CalcNextNoneEmptyIndex(SetType start) in CalcNextNoneEmptyIndex()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/
Djs_value.h171 void SetType(napi_valuetype type) in SetType() function
213 SetType(type); in SetNapiRef()
225 SetType(napi_undefined); in SetUndefined()
230 SetType(napi_null); in SetNull()
235 SetType(napi_boolean); in SetBoolean()
241 SetType(napi_number); in SetNumber()
247 SetType(napi_string); in SetString()
/arkcompiler/runtime_core/static_core/runtime/mem/refstorage/
Dreference.h101 return SetType(addr, type); in Create()
110 static Reference *SetType(Reference *ref, ObjectType type) in SetType() function
113 return SetType(addr, type); in SetType()
116 static Reference *SetType(uintptr_t addr, ObjectType type) in SetType() function
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DGenericsTest.sts21 intType.SetType(testInt);
22 doubleType.SetType(testDouble);
28 aType.SetType(aClass);
59 SetType(a0: TT): void{
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dir_constructor.h486 CurrentInst()->SetType(DataType::UINT8); in u8()
491 CurrentInst()->SetType(DataType::UINT16); in u16()
496 CurrentInst()->SetType(DataType::UINT32); in u32()
501 CurrentInst()->SetType(DataType::UINT64); in u64()
506 CurrentInst()->SetType(DataType::INT8); in s8()
511 CurrentInst()->SetType(DataType::INT16); in s16()
516 CurrentInst()->SetType(DataType::INT32); in s32()
521 CurrentInst()->SetType(DataType::INT64); in s64()
542 CurrentInst()->SetType(DataType::BOOL); in b()
547 CurrentInst()->SetType(DataType::REFERENCE); in ref()
[all …]
/arkcompiler/runtime_core/static_core/compiler/tests/
Dinst_generator.cpp261 callInst->SetType(DataType::VOID); in PopulateReturnInlined()
589 newInst->SetType(type); in CreateCheckInstByPackArgs()
594 ret->SetType(DataType::UINT32); in CreateCheckInstByPackArgs()
597 ret->SetType(type); in CreateCheckInstByPackArgs()
637 inst->SetType(type); in GenerateCheckOperation()
674 inst->SetType(type); in GenerateSSOperation()
703 boundsCheck->SetType(DataType::INT32); in GenerateBoundaryCheckOperation()
795 add->SetType(inst->GetType()); in GeneratePhiOperation()
800 sub->SetType(inst->GetType()); in GeneratePhiOperation()
890 inst->SetType(opcodeXPossibleTypes_[opCode][i]); in GenerateOperations()
[all …]
Dlive_registers_test.cpp52 li->SetType(DataType::UINT64); in TEST_F()
104 li->SetType(DataType::UINT64); in TEST_F()
140 li->SetType(DataType::UINT64); in TEST_F()
167 li->SetType(DataType::UINT64); in TEST_F()
218 interval->SetType(DataType::Type::UINT64); in TEST_F()
/arkcompiler/runtime_core/bytecode_optimizer/tests/
Dcommon.h457 INS(0).SetType(data_type); in CheckSimple()
462 INS(1).SetType(data_type); in CheckSimple()
497 INS(0).SetType(data_type); in CheckSimpleWithImm()
502 INS(1).SetType(data_type); in CheckSimpleWithImm()
531 INS(0).SetType(data_type); in CheckCmp()
533 INS(1).SetType(data_type); in CheckCmp()
563 INS(0).SetType(data_type); in CheckFloatCmp()
565 INS(1).SetType(data_type); in CheckFloatCmp()
625 INS(0).SetType(type); in CheckCondJumpWithZero()
694 INS(0).SetType(type); in CheckCondJump()
[all …]
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ap_file/
Dpgo_method_type_set.h47 const_cast<ScalarOpTypeInfo &>(*result).SetType(combineType); in AddType()
58 const_cast<ScalarOpTypeInfo &>(*result).SetType(combineType); in AddCallTargetType()
237 void SetType(SampleType type) in SetType() function
247 SetType(combineType); in Merge()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Dir_constructor.h602 CurrentInst()->SetType(DataType::UINT8); in u8()
607 CurrentInst()->SetType(DataType::UINT16); in u16()
612 CurrentInst()->SetType(DataType::UINT32); in u32()
617 CurrentInst()->SetType(DataType::UINT64); in u64()
622 CurrentInst()->SetType(DataType::INT8); in s8()
627 CurrentInst()->SetType(DataType::INT16); in s16()
632 CurrentInst()->SetType(DataType::INT32); in s32()
637 CurrentInst()->SetType(DataType::INT64); in s64()
658 CurrentInst()->SetType(DataType::BOOL); in b()
663 CurrentInst()->SetType(DataType::REFERENCE); in ref()
[all …]
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/
Dcommon.h495 INS(0).SetType(dataType); in CheckSimple()
500 INS(1).SetType(dataType); in CheckSimple()
535 INS(0).SetType(dataType); in CheckSimpleWithImm()
540 INS(1).SetType(dataType); in CheckSimpleWithImm()
569 INS(0).SetType(dataType); in CheckCmp()
571 INS(1).SetType(dataType); in CheckCmp()
602 INS(0).SetType(dataType); in CheckFloatCmp()
604 INS(1).SetType(dataType); in CheckFloatCmp()
641 INS(0).SetType(type); in CheckCondJumpWithZero()
688 INS(0).SetType(type); in CheckCondJump()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
Dmeta_data_equal_test.cpp157 ->SetType(PGOTypeRef(static_cast<const PGOSampleType *>(&type))); in HWTEST_F_L0()
159 ->SetType(PGOTypeRef(static_cast<const PGOSampleType *>(&type2))); in HWTEST_F_L0()
164 ->SetType(PGOTypeRef(static_cast<const PGOSampleType *>(&type))); in HWTEST_F_L0()
166 ->SetType(PGOTypeRef(static_cast<const PGOSampleType *>(&type3))); in HWTEST_F_L0()
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dphi_resolver.h106 inst->SetType(DataType::REFERENCE); in SetTypeByInputs()
112 inst->SetType(input_type); in SetTypeByInputs()
214 phi_inst->SetType(type); in CheckPhiInputs()
/arkcompiler/toolchain/tooling/test/
Ddebugger_returns_test.cpp97 result->SetType("idle"); in HWTEST_F_L0()
120 breakLocation->SetScriptId(11).SetLine(1).SetColumn(44).SetType("idel5"); in HWTEST_F_L0()
154 res->SetType("idle2"); in HWTEST_F_L0()
204 res->SetType("idle5"); in HWTEST_F_L0()
238 result->SetType("idle2"); in HWTEST_F_L0()
284 remoteObjectResult->SetType("idle5"); in HWTEST_F_L0()
/arkcompiler/toolchain/test/fuzztest/pttypesremoteobjectsettype_fuzzer/
Dpttypesremoteobjectsettype_fuzzer.cpp34 obj.SetType(std::string((const char*)data, size)); in PtTypesRemoteObjectSetTypeFuzzTest()
/arkcompiler/ets_frontend/ets2panda/util/ast-builders/
DopaqueTypeNodeBuilder.h35 OpaqueTypeNodeBuilder &SetType(checker::Type *type) in SetType() function
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dmir_pragma.cpp153 elem->SetType(kValueArray); in GetPragmaElemFromSignature()
169 etmp->SetType(kValueArray); in GetPragmaElemFromSignature()
176 etmp->SetType(kValueType); in GetPragmaElemFromSignature()
184 etmp->SetType(kValueType); in GetPragmaElemFromSignature()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dreg_alloc_base.cpp151 void RegAllocBase::SetType(LifeIntervals *interval) in SetType() function in panda::compiler::RegAllocBase
159 interval->SetType(ConvertRegType(GetGraph(), type)); in SetType()
200 SetType(interval); in PrepareIntervals()
/arkcompiler/ets_frontend/ets2panda/ir/ets/
DetsImportDeclaration.h33 SetType(AstNodeType::ETS_IMPORT_DECLARATION);
/arkcompiler/ets_frontend/ets2panda/checker/types/ts/
DindexInfo.h48 void SetType(Type *type) in SetType() function
/arkcompiler/ets_frontend/es2panda/typescript/types/
DindexInfo.h49 void SetType(Type *type) in SetType() function
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
Dreg_alloc_base.cpp168 void RegAllocBase::SetType(LifeIntervals *interval) in SetType() function in ark::compiler::RegAllocBase
176 interval->SetType(ConvertRegType(GetGraph(), type)); in SetType()
219 SetType(interval); in PrepareIntervals()
/arkcompiler/runtime_core/compiler/optimizer/templates/intrinsics/
Dgenerate_operations_intrinsic_graph.inl.erb48 ret->SetType(inst->GetType());

123456