Home
last modified time | relevance | path

Searched refs:branch (Results 1 - 7 of 7) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/jit/
H A Dprofiling_data.h274 auto branch = FindBranchData(pc); in UpdateBranchTaken() local
275 ASSERT(branch != nullptr); in UpdateBranchTaken()
276 branch->IncrementTaken(); in UpdateBranchTaken()
281 auto branch = FindBranchData(pc); in UpdateBranchNotTaken() local
282 ASSERT(branch != nullptr); in UpdateBranchNotTaken()
283 branch->IncrementNotTaken(); in UpdateBranchNotTaken()
288 auto branch = FindBranchData(pc); in GetBranchTakenCounter() local
289 ASSERT(branch != nullptr); in GetBranchTakenCounter()
290 return branch->GetTakenCounter(); in GetBranchTakenCounter()
295 auto branch in GetBranchNotTakenCounter() local
[all...]
/arkcompiler/runtime_core/libpandafile/
H A Dbytecode_emitter.cpp225 for (std::pair<const uint32_t, Label> &branch : branches_) { in UpdateBranches()
226 uint32_t insn_pc = branch.first; in UpdateBranches()
227 Label label = branch.second; in UpdateBranches()
269 // Do we support branch to itself? in EstimateMaxDistance()
284 for (const std::pair<const uint32_t, Label> &branch : branches_) { in CheckLabels()
285 const Label &label = branch.second; in CheckLabels()
/arkcompiler/runtime_core/static_core/libpandafile/
H A Dbytecode_emitter.cpp225 for (std::pair<const uint32_t, Label> &branch : branches_) { in UpdateBranches()
226 uint32_t insnPc = branch.first; in UpdateBranches()
227 Label label = branch.second; in UpdateBranches()
264 // Do we support branch to itself? in EstimateMaxDistance()
279 for (const std::pair<const uint32_t, Label> &branch : branches_) { in CheckLabels()
280 const Label &label = branch.second; in CheckLabels()
/arkcompiler/runtime_core/scripts/
H A Dinstall-third-party109 if [[ "$commit_type" == "branch" || "$commit_type" == "tag" ]] ; then
110 GIT_SSL_NO_VERIFY=true git clone --verbose --depth=1 --branch "$commit_id" "$lib_repo" "$lib_dir"
/arkcompiler/runtime_core/static_core/scripts/
H A Dinstall-third-party110 local commit_id="$3" # branch or tag name, the syntax is the same
116 GIT_SSL_NO_VERIFY=true git clone --verbose --depth=1 --branch "$commit_id" \
194 if [[ "$commit_type" == "branch" || "$commit_type" == "tag" ]] ; then
/arkcompiler/ets_runtime/ecmascript/regexp/
H A Dregexp_parser.cpp163 uint32_t branch = ptr; in ParseDisjunction() local
167 branch = ptr + offset + opSplitSize; in ParseDisjunction()
171 uint8_t opCodeChar = buffer_.GetU8(branch); in ParseDisjunction()
173 chars.push_back(buffer_.GetU16(branch + 1)); in ParseDisjunction()
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
H A Dllvm_ir_constructor.cpp1983 /* Creating branch */ in CreateDeoptimizationBranch()
1987 auto branch = builder_.CreateCondBr(deoptimize, throwPath, continuation, branchWeights); in CreateDeoptimizationBranch() local
1999 branch->setMetadata(llvm::LLVMContext::MD_make_implicit, metadata); in CreateDeoptimizationBranch()

Completed in 15 milliseconds