Home
last modified time | relevance | path

Searched refs:candidate (Results 1 - 8 of 8) sorted by relevance

/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H A Dcode_sink.cpp114 BasicBlock *candidate = SinkInstruction(inst, &stores, memBarrier); in ProcessBlock() local
115 if (candidate != nullptr) { in ProcessBlock()
116 COMPILER_LOG(DEBUG, CODE_SINK) << "Sunk v" << inst->GetId() << " to BB " << candidate->GetId(); in ProcessBlock()
118 candidate->GetId()); in ProcessBlock()
121 // enter or exit monitor in candidate block in ProcessBlock()
122 candidate->PrependInst(inst); in ProcessBlock()
141 * Finally, return the candidate.
185 /// Check that candidate dominates all users of inst.
186 bool CodeSink::IsAcceptableTarget(Inst *inst, BasicBlock *candidate) in IsAcceptableTarget() argument
189 ASSERT(candidate ! in IsAcceptableTarget()
[all...]
H A Dcode_sink.h50 bool IsAcceptableTarget(Inst *inst, BasicBlock *candidate);
H A Descape.cpp1986 for (auto candidate : candidates) {
1987 EnqueueForRemoval(candidate);
/arkcompiler/ets_runtime/ecmascript/ohos/
H A Denable_aot_list_helper.h54 bool IsEnableAot(const std::string &candidate) in IsEnableAot() argument
60 return (enableList_.find(candidate) != enableList_.end()) || in IsEnableAot()
61 (enableList_.find(candidate + ":aot") != enableList_.end()); in IsEnableAot()
64 bool IsEnableJit(const std::string &candidate) in IsEnableJit() argument
66 return (enableList_.find(candidate) != enableList_.end()) || in IsEnableJit()
67 (enableList_.find(candidate + ":jit") != enableList_.end()); in IsEnableJit()
/arkcompiler/ets_runtime/test/fuzztest/readenablelist_fuzzer/
H A Dreadenablelist_fuzzer.cpp33 std::string candidate = dataProvider.ConsumeRandomLengthString(MAX_STRING_LENGTH); in ReadEnableListFuzzTest() local
34 helper.IsEnableAot(candidate); in ReadEnableListFuzzTest()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
H A Dets_itable_builder.cpp30 Method *candidate = nullptr; in FindMethodInVTable() local
41 if (candidate != nullptr) { in FindMethodInVTable()
43 candidate); in FindMethodInVTable()
46 candidate = kmethod; in FindMethodInVTable()
48 return candidate; in FindMethodInVTable()
/arkcompiler/runtime_core/static_core/verification/type/
H A Dtype_type.cpp114 Builtin candidate = Builtin::TOP; in BuildBuiltinLeastUpperBoundsNestedFunction() local
117 if ((supertype_bits & Bitmap({Builtin {cc}})) != 0 && (supertypes[cc] & Bitmap({candidate})) != 0) { in BuildBuiltinLeastUpperBoundsNestedFunction()
118 candidate = Builtin {cc}; in BuildBuiltinLeastUpperBoundsNestedFunction()
121 result[lhs][rhs] = candidate; in BuildBuiltinLeastUpperBoundsNestedFunction()
122 result[rhs][lhs] = candidate; in BuildBuiltinLeastUpperBoundsNestedFunction()
/arkcompiler/runtime_core/static_core/runtime/include/
H A Dvtable_builder_base.h180 void SetCandidate(MethodInfo const *candidate) in SetCandidate()
182 candidate_ = candidate; in SetCandidate()

Completed in 6 milliseconds