| /arkcompiler/runtime_core/static_core/compiler/optimizer/ |
| D | pipeline.cpp | 113 bool success = pipeline->RunOptimizations(); in Run() local 153 bool success = RunCodegenPass(nextRunner.GetContext().GetPipeline()->GetGraph()); in RunRegAllocAndCodeGenPass() local 156 bool success = RegAlloc(graph); in RunRegAllocAndCodeGenPass() local
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/gc/ |
| D | pending_exception_test.cpp | 41 bool success = Runtime::Create(options); in SetUp() local 47 bool success = Runtime::Destroy(); in TearDown() local
|
| /arkcompiler/runtime_core/static_core/runtime/tests/intrusive-tests/interrupt_release_pages_test/ |
| D | interrupt_release_pages_test.cpp | 41 [[maybe_unused]] bool success = Runtime::Create(options); in IntrusiveInterruptReleasePagesTest() local 51 [[maybe_unused]] bool success = Runtime::Destroy(); in ~IntrusiveInterruptReleasePagesTest() local
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | ic_stub_builder.cpp | 159 … Variable *result, Label *tryFastPath, Label *slowPath, Label *success, ProfileOperation callback) in LoadICByName() 175 …ICStubBuilder::StoreICByName(Variable* result, Label* tryFastPath, Label *slowPath, Label *success) in StoreICByName() 194 … Variable *result, Label *tryFastPath, Label *slowPath, Label *success, ProfileOperation callback) in LoadICByValue() 254 …CStubBuilder::StoreICByValue(Variable* result, Label* tryFastPath, Label *slowPath, Label *success) in StoreICByValue() 279 …ilder::TryLoadGlobalICByName(Variable* result, Label* tryFastPath, Label *slowPath, Label *success) in TryLoadGlobalICByName() 300 …lder::TryStoreGlobalICByName(Variable* result, Label* tryFastPath, Label *slowPath, Label *success) in TryStoreGlobalICByName()
|
| D | ic_stub_builder.h | 60 void SetLabels(Label* tryFastPath, Label *slowPath, Label *success) in SetLabels()
|
| D | circuit_builder-inl.h | 83 void CircuitBuilder::HandleException(GateRef result, Label *success, Label *fail, Label *exit) in HandleException() 92 void CircuitBuilder::HandleException(GateRef result, Label *success, Label *fail, Label *exit, Gate… in HandleException()
|
| /arkcompiler/ets_runtime/ecmascript/ic/ |
| D | ic_runtime.cpp | 352 bool success = JSTaggedValue::SetProperty(GetThread(), receiver, key, value, true); in StoreMiss() local 377 … bool success = JSSharedArray::SetProperty(thread_, receiver, key, value, true, SCheckMode::CHECK); in StoreMiss() local 404 bool success = JSObject::SetProperty(&op, value, true); in StoreMiss() local 435 bool success = JSTaggedValue::SetProperty(GetThread(), receiver, propKey, value, true); in StoreTypedArrayValueMiss() local 448 bool success = JSObject::SetProperty(&op, value, true); in StoreTypedArrayValueMiss() local
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/ |
| D | escompat_Date.cpp | 37 UErrorCode success = U_ZERO_ERROR; in EscompatDateGetLocalTimezoneOffset() local 48 UErrorCode success = U_ZERO_ERROR; in EscompatDateGetTimezoneName() local
|
| /arkcompiler/ets_runtime/ecmascript/tests/ |
| D | tagged_tree_test.cpp | 333 bool success = tmap->HasValue(thread, keyValue[1].GetTaggedValue()); // 1 : value index in HWTEST_F_L0() local 781 bool success = IsVaildRBTree<TaggedTreeMap>(thread, tmap, tmap->GetRootEntries()); in RTCommon() local 790 bool success = IsVaildRBTree<TaggedTreeMap>(thread, tmap, tmap->GetRootEntries()); in RTCommon() local 805 bool success = IsVaildRBTree<TaggedTreeSet>(thread, tset, tset->GetRootEntries()); in SetCommon() local 812 bool success = IsVaildRBTree<TaggedTreeSet>(thread, tset, tset->GetRootEntries()); in SetCommon() local 846 bool success = IsVaildRBTree<TaggedTreeMap>(thread, tmap, tmap->GetRootEntries()); in HWTEST_F_L0() local 859 bool success = IsVaildRBTree<TaggedTreeSet>(thread, tset, tset->GetRootEntries()); in HWTEST_F_L0() local 884 bool success = IsVaildRBTree<TaggedTreeMap>(thread, tmap, tmap->GetRootEntries()); in HWTEST_F_L0() local 893 bool success = IsVaildRBTree<TaggedTreeMap>(thread, tmap, tmap->GetRootEntries()); in HWTEST_F_L0() local 915 bool success = IsVaildRBTree<TaggedTreeSet>(thread, tset, tset->GetRootEntries()); in HWTEST_F_L0() local [all …]
|
| D | js_api_tree_set_test.cpp | 110 bool success = JSAPITreeSet::Delete(thread, tset, key); in HWTEST_F_L0() local 117 bool success = JSAPITreeSet::Delete(thread, tset, key); in HWTEST_F_L0() local 244 bool success = JSAPITreeSet::Delete(thread, tset, key); in HWTEST_F_L0() local
|
| /arkcompiler/runtime_core/static_core/bytecode_optimizer/ |
| D | codegen.cpp | 565 … VisitIf32(BytecodeGen *enc, compiler::IfInst *inst, std::vector<pandasm::Ins> &res, bool &success) in VisitIf32() 610 …If64Signed(BytecodeGen *enc, compiler::IfInst *inst, std::vector<pandasm::Ins> &res, bool &success) in VisitIf64Signed() 656 …64Unsigned(BytecodeGen *enc, compiler::IfInst *inst, std::vector<pandasm::Ins> &res, bool &success) in VisitIf64Unsigned() 703 bool &success) in VisitIfRef() 869 …mZero32(BytecodeGen *enc, compiler::IfImmInst *inst, std::vector<pandasm::Ins> &res, bool &success) in IfImmZero32() 913 …ZeroRef(BytecodeGen *enc, compiler::IfImmInst *inst, std::vector<pandasm::Ins> &res, bool &success) in IfImmZeroRef() 973 …nZero32(BytecodeGen *enc, compiler::IfImmInst *inst, std::vector<pandasm::Ins> &res, bool &success) in IfImmNonZero32() 1125 std::vector<pandasm::Ins> &res, bool &success) in VisitCastFromI32() 1167 std::vector<pandasm::Ins> &res, bool &success) in VisitCastFromU32() 1209 std::vector<pandasm::Ins> &res, bool &success) in VisitCastFromI64() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
| D | reg_alloc.cpp | 51 bool success = false; in PhaseRun() local
|
| /arkcompiler/ets_runtime/ecmascript/serializer/tests/ |
| D | serializer_test.cpp | 1267 bool success = serializer->WriteValue(thread, JSHandle<JSTaggedValue>(obj), in HWTEST_F_L0() local 1358 bool success = serializer->WriteValue(thread, JSHandle<JSTaggedValue>(obj), in HWTEST_F_L0() local 1387 bool success = serializer->WriteValue(thread, JSHandle<JSTaggedValue>(obj), in HWTEST_F_L0() local 1432 bool success = serializer->WriteValue(thread, JSHandle<JSTaggedValue>(obj), in HWTEST_F_L0() local 1489 bool success = serializer->WriteValue(thread, JSHandle<JSTaggedValue>(obj1), in HWTEST_F_L0() local 1523 bool success = serializer->WriteValue(thread, JSHandle<JSTaggedValue>(obj2), in HWTEST_F_L0() local 1552 bool success = serializer->WriteValue(thread, JSHandle<JSTaggedValue>(obj1), in HWTEST_F_L0() local 1592 bool success = serializer->WriteValue(thread, JSHandle<JSTaggedValue>(set), in HWTEST_F_L0() local 1621 bool success = serializer->WriteValue(thread, JSHandle<JSTaggedValue>(jsDate), in HWTEST_F_L0() local 1657 bool success = serializer->WriteValue(thread, JSHandle<JSTaggedValue>(map), in HWTEST_F_L0() local [all …]
|
| /arkcompiler/runtime_core/static_core/runtime/tests/ |
| D | mem_stats_gc_test.cpp | 40 bool success = Runtime::Create(options); in SetupRuntime() local 52 bool success = Runtime::Destroy(); in TearDown() local
|
| D | gc_log_test.cpp | 47 [[maybe_unused]] bool success = Runtime::Destroy(); in ~GCTestLog() local 77 [[maybe_unused]] bool success = Runtime::Create(options); in SetupRuntime() local
|
| D | explicit_gc_test.cpp | 47 [[maybe_unused]] bool success = Runtime::Destroy(); in ~ExplicitGC() local 73 [[maybe_unused]] bool success = Runtime::Create(options); in SetupRuntime() local
|
| D | stack_walker_test.cpp | 171 bool success = false; in TEST_F() local 382 bool success = false; in TestModifyManyVregs() local
|
| /arkcompiler/toolchain/tooling/test/client_utils/ |
| D | test_util.cpp | 117 bool success = true; in ForkSocketClient() local 144 …dleAcceptanceMessages(ActionInfo action, WebSocketClient &client, std::string &recv, bool &success) in HandleAcceptanceMessages()
|
| /arkcompiler/toolchain/tooling/agent/ |
| D | tracing_impl.cpp | 100 bool success = false; in RequestMemoryDump() local 171 … [[maybe_unused]] std::string dumpGuid, [[maybe_unused]] bool success) in RequestMemoryDump()
|
| /arkcompiler/ets_frontend/es2panda/aot/ |
| D | emitFiles.cpp | 102 bool success = panda::pandasm::AsmEmitter::EmitPrograms( in Run() local
|
| /arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/ |
| D | cpu_affinity.cpp | 235 bool success = sched_getaffinity(tid, sizeof(CpuSetType), cpuset.GetData()) == 0; in GetThreadAffinity() local 255 bool success = sched_setaffinity(tid, sizeof(CpuSetType), cpuset.GetData()) == 0; in SetAffinityForThread() local
|
| /arkcompiler/runtime_core/static_core/irtoc/backend/ |
| D | function.cpp | 66 bool success = true; in Compile() local
|
| /arkcompiler/runtime_core/static_core/libpandabase/ |
| D | task_runner.h | 266 static void EndTask(RunnerT taskRunner, bool success) in EndTask()
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/ |
| D | g1-evacuate-regions-worker-state-inl.h | 123 auto success = src->AtomicSetMark<true>(markWord, fwdMarkWord, std::memory_order_relaxed); in SetForwardAddress() local
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | object_type_check_elimination.cpp | 169 bool success = false; in IsMember() local
|