Home
last modified time | relevance | path

Searched refs:maxDepth (Results 1 - 11 of 11) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dloop_analysis.cpp28 LOG_COMPILER(INFO) << "MaxDepth: " << loopInfo->maxDepth; in PrintLoop()
123 loopInfo->maxDepth = std::max(loopInfo->maxDepth, dep); in UpdateLoopInfo()
H A Dloop_analysis.h33 size_t maxDepth{0};
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/optimizations/interop_js/
H A Dinterop_intrinsic_optimization.cpp867 GetInfo(block).maxDepth = -1L; in MarkPartiallyAnticipated()
882 info.maxDepth = -1L; in CalculateDownSafe()
902 info.maxDepth = std::max(info.maxDepth, GetInfo(dom).maxDepth); in CalculateDownSafe()
963 if (info.maxDepth > static_cast<int32_t>(depth)) { in CanHoistTo()
966 if (GetInfo(dom).maxDepth >= 0 && (domDepth > depth || !HasSaveState(dom))) { in CanHoistTo()
1104 GetInfo(block).maxDepth = block->GetLoop()->GetDepth(); in DoRedundancyElimination()
H A Dinterop_intrinsic_optimization.h84 int32_t maxDepth {};
/arkcompiler/toolchain/tooling/base/
H A Dpt_params.cpp291 int32_t maxDepth; in Create() local
292 ret = params.GetInt("maxDepth", &maxDepth); in Create()
294 paramsObject->maxDepth_ = maxDepth; in Create()
296 error += "Unknown or wrong type of 'maxDepth';"; in Create()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/
H A Dlitecg_ir_builder.cpp1619 uint32_t maxDepth = acc_.GetFrameDepth(frameArgs, OpCode::FRAME_ARGS); in CollectExraCallSiteInfo() local
1620 if (maxDepth == 0) { in CollectExraCallSiteInfo()
1624 maxDepth = std::min(maxDepth, MAX_METHOD_OFFSET_NUM); in CollectExraCallSiteInfo()
1627 for (int32_t curDepth = static_cast<int32_t>(maxDepth - 1); curDepth >= 0; curDepth--) { in CollectExraCallSiteInfo()
2936 size_t maxDepth = 0; in VisitDeoptCheck() local
2939 maxDepth++; in VisitDeoptCheck()
2943 lmirBuilder_->ConstVal(lmirBuilder_->CreateIntConst(lmirBuilder_->u32Type, static_cast<uint32_t>(maxDepth))); in VisitDeoptCheck()
2945 size_t shift = Deoptimizier::ComputeShift(maxDepth); in VisitDeoptCheck()
2948 for (int32_t curDepth = static_cast<int32_t>(maxDepth); curDept in VisitDeoptCheck()
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/
H A Dllvm_ir_builder.cpp930 uint32_t maxDepth = acc_.GetFrameDepth(frameArgs, OpCode::FRAME_ARGS); in CollectExraCallSiteInfo() local
931 if (maxDepth == 0) { in CollectExraCallSiteInfo()
935 maxDepth = std::min(maxDepth, MAX_METHOD_OFFSET_NUM); in CollectExraCallSiteInfo()
938 for (int32_t curDepth = static_cast<int32_t>(maxDepth - 1); curDepth >= 0; curDepth--) { in CollectExraCallSiteInfo()
2889 size_t maxDepth = acc_.GetFrameDepth(deoptFrameState, OpCode::FRAME_STATE); in VisitDeoptCheck() local
2890 params.push_back(ConvertInt32ToTaggedInt(LLVMConstInt(GetInt32T(), static_cast<uint32_t>(maxDepth), false))); in VisitDeoptCheck()
2891 size_t shift = Deoptimizier::ComputeShift(maxDepth); in VisitDeoptCheck()
2894 for (int32_t curDepth = static_cast<int32_t>(maxDepth); curDepth >= 0; curDepth--) { in VisitDeoptCheck()
/arkcompiler/runtime_core/static_core/runtime/include/tooling/
H A Ddebug_interface.h539 virtual std::optional<Error> SetAsyncCallStackDepth(uint32_t maxDepth) const = 0;
/arkcompiler/runtime_core/static_core/runtime/tooling/
H A Ddebugger.h353 std::optional<Error> SetAsyncCallStackDepth([[maybe_unused]] uint32_t maxDepth) const override
/arkcompiler/toolchain/tooling/test/
H A Ddebugger_params_test.cpp816 msg = std::string() + R"({"id":0,"method":"Debugger.Test","params":{"maxDepth":true}})"; in HWTEST_F_L0()
820 msg = std::string() + R"({"id":0,"method":"Debugger.Test","params":{"maxDepth":5}})"; in HWTEST_F_L0()
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
H A Dcocos_worker_test.js17335 this.maxDepth = r;
17343 this.maxDepth = t.maxDepth;
[all...]

Completed in 55 milliseconds