/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ap_file/ |
D | pool_template.h | 49 bool TryAdd(const V &value, ApEntityId &entryId) in TryAdd() argument 53 entryId = entry.second.GetEntryId(); in TryAdd() 58 entryId = ApEntityId(IsReserved(value) ? (++reservedUsed_, GetReservedId(value)) in TryAdd() 61 auto result = pool_.emplace(entryId, value); in TryAdd() 63 entry.SetEntryId(entryId); in TryAdd() 67 bool GetEntryId(const V &value, ApEntityId &entryId) const in GetEntryId() argument 71 entryId = entry.first; in GetEntryId() 87 bool GetEntryIdByNormalizedName(const V &value, ApEntityId &entryId) const in GetEntryIdByNormalizedName() argument 91 entryId = entry.first; in GetEntryIdByNormalizedName() 168 auto entryId = base::ReadBuffer<ApEntityId>(buffer, sizeof(ApEntityId)); in ParseFromBinary() local [all …]
|
D | pgo_profile_type_pool.h | 50 void SetEntryId(ApEntityId entryId) in SetEntryId() argument 52 entryId_ = entryId; in SetEntryId() 136 bool TryAdd(const ProfileType &profileType, ApEntityId &entryId) in TryAdd() argument 138 return pool_->TryAdd(profileType, entryId); in TryAdd() 141 bool GetEntryId(const ProfileType &profileType, ApEntityId &entryId) const in GetEntryId() argument 143 return pool_->GetEntryId(profileType, entryId); in GetEntryId() 146 const Entry *GetEntry(ApEntityId entryId) const in GetEntry() argument 148 return pool_->GetEntry(entryId); in GetEntry()
|
D | pgo_record_pool.h | 48 void SetEntryId(ApEntityId entryId) in SetEntryId() argument 50 entryId_ = entryId; in SetEntryId() 92 bool TryAdd(const CString &value, ApEntityId &entryId) in TryAdd() argument 94 return pool_->TryAdd(value, entryId); in TryAdd() 97 bool GetEntryId(const CString &value, ApEntityId &entryId) const in GetEntryId() argument 99 return pool_->GetEntryId(value, entryId); in GetEntryId() 102 const Entry *GetEntry(ApEntityId entryId) const in GetEntry() argument 104 return pool_->GetEntry(entryId); in GetEntry() 107 bool GetEntryIdByNormalizedName(const CString &value, ApEntityId &entryId) const in GetEntryIdByNormalizedName() argument 109 return pool_->GetEntryIdByNormalizedName(value, entryId); in GetEntryIdByNormalizedName()
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
D | pgo_profiler_encoder.cpp | 89 ApEntityId entryId(0); in SamplePandaFileInfo() local 90 abcFilePool_->TryAdd(abcName, entryId); in SamplePandaFileInfo() 93 bool PGOProfilerEncoder::GetPandaFileId(const CString &abcName, ApEntityId &entryId) in GetPandaFileId() argument 96 return abcFilePool_->GetEntryId(abcName, entryId); in GetPandaFileId()
|
D | pgo_profiler_decoder.h | 188 bool GetABCIdByJSPandaFile(const JSPandaFile *jsPandaFile, ApEntityId &entryId) const in GetABCIdByJSPandaFile() argument 194 return abcFilePool_->GetEntryIdByNormalizedName(name, entryId); in GetABCIdByJSPandaFile()
|
D | pgo_profiler_manager.h | 152 bool GetPandaFileId(const CString &abcName, ApEntityId &entryId) const in GetPandaFileId() argument 155 return encoder_->GetPandaFileId(abcName, entryId); in GetPandaFileId()
|
D | pgo_profiler_encoder.h | 69 bool GetPandaFileId(const CString &abcName, ApEntityId &entryId);
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
D | codegen.cpp | 4640 auto entryId = GetRuntime()->IsCompressedStringsEnabled() in CallFastCreateStringFromCharArrayTlab() local 4644 … CallFastPath(inst, entryId, dst, RegMask::GetZeroMask(), count, array, std::get<TypedImm>(klass)); in CallFastCreateStringFromCharArrayTlab() 4646 … CallFastPath(inst, entryId, dst, RegMask::GetZeroMask(), count, array, std::get<Reg>(klass)); in CallFastCreateStringFromCharArrayTlab() 4649 auto entryId = GetRuntime()->IsCompressedStringsEnabled() in CallFastCreateStringFromCharArrayTlab() local 4653 …CallFastPath(inst, entryId, dst, RegMask::GetZeroMask(), offset, count, array, std::get<TypedImm>(… in CallFastCreateStringFromCharArrayTlab() 4655 …CallFastPath(inst, entryId, dst, RegMask::GetZeroMask(), offset, count, array, std::get<Reg>(klass… in CallFastCreateStringFromCharArrayTlab() 4679 …auto entryId = GetRuntime()->IsCompressedStringsEnabled() ? EntrypointId::CREATE_STRING_FROM_STRIN… in CreateStringFromStringTlab() local 4682 CallFastPath(inst, entryId, dst, RegMask::GetZeroMask(), srcStr); in CreateStringFromStringTlab() 4898 auto entryId = in VisitInitString() local 4900 cg->CallRuntime(initStr, entryId, dst, RegMask::GetZeroMask(), ctorArg); in VisitInitString() [all …]
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | frame_states.cpp | 759 size_t entryId = 0; // entry id in ComputeLoopBack() local 760 pendingList_.emplace_back(entryId); in ComputeLoopBack()
|
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/ |
D | llvm_ir_constructor.cpp | 1872 auto entryId = inst->CastToIntrinsic()->GetIntrinsicId(); in VisitIntrinsic() local 1877 bool lowered = ctor->TryEmitIntrinsic(inst, entryId); in VisitIntrinsic() 1882 … ASSERT(!EncodesBuiltin(ctor->GetGraph()->GetRuntime(), entryId, ctor->GetGraph()->GetArch())); in VisitIntrinsic()
|