Searched refs:maxDepth (Results 1 - 11 of 11) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | loop_analysis.cpp | 28 LOG_COMPILER(INFO) << "MaxDepth: " << loopInfo->maxDepth; in PrintLoop() 123 loopInfo->maxDepth = std::max(loopInfo->maxDepth, dep); in UpdateLoopInfo()
|
H A D | loop_analysis.h | 33 size_t maxDepth{0};
|
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/optimizations/interop_js/ |
H A D | interop_intrinsic_optimization.cpp | 867 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 D | interop_intrinsic_optimization.h | 84 int32_t maxDepth {};
|
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_params.cpp | 291 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 D | litecg_ir_builder.cpp | 1619 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 D | llvm_ir_builder.cpp | 930 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 D | debug_interface.h | 539 virtual std::optional<Error> SetAsyncCallStackDepth(uint32_t maxDepth) const = 0;
|
/arkcompiler/runtime_core/static_core/runtime/tooling/ |
H A D | debugger.h | 353 std::optional<Error> SetAsyncCallStackDepth([[maybe_unused]] uint32_t maxDepth) const override
|
/arkcompiler/toolchain/tooling/test/ |
H A D | debugger_params_test.cpp | 816 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 D | cocos_worker_test.js | 17335 this.maxDepth = r; 17343 this.maxDepth = t.maxDepth; [all...] |
Completed in 55 milliseconds