/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/ |
D | reg_alloc_resolver.cpp | 69 if (input_interval->GetLocation() != catch_phi_interval->GetLocation()) { in AddCatchPhiMoves() 89 auto location = inst->GetLocation(i); in ResolveInputs() 99 if (location.IsFixedRegister() && sibling->GetLocation() == location) { in ResolveInputs() 111 inst->SetLocation(i, sibling->GetLocation()); in ResolveInputs() 116 if (sibling->GetLocation() != location) { in ResolveInputs() 117 AddMoveToFixedLocation(inst, sibling->GetLocation(), i); in ResolveInputs() 136 auto fixed_location = inst->GetLocation(input_num); in AddMoveToFixedLocation() 203 AddLocationToRoots(sibling->GetLocation(), target_ss, GetGraph()); in FillSaveStateRootsMask() 211 ASSERT(sibling->GetLocation() == input_interval->FindSiblingAt(udst_ln)->GetLocation()); in FillSaveStateRootsMask() 238 inst->CastToParameter()->GetLocationData().SetDst(inst_interval->GetLocation()); in ResolveOutput()
|
D | split_resolver.cpp | 49 if (prev->GetEnd() != curr->GetBegin() || prev->GetLocation() == curr->GetLocation() || in ConnectSiblings() 50 curr->GetLocation().IsConstant()) { in ConnectSiblings() 96 …if (succ_split == nullptr || succ_split->GetLocation().IsConstant() || !succ_split->SplitCover(suc… in ProcessBlock() 120 if (src_split == nullptr || src_split->GetLocation() == target_split->GetLocation()) { in ConnectSpiltFromPredBlock()
|
D | reg_alloc_graph_coloring.cpp | 92 return liveness->IsPhysical() && liveness->GetLocation() == location; in FindFixedNode() 141 auto location = inst->GetLocation(i); in PrecolorIG() 357 ASSERT(interval->GetLocation().IsInvalid()); in InitWorkingRanges() 395 if (!interval->GetLocation().IsFixedRegister()) { in Presplit() 402 if (interval->GetLocation() == next->GetLocation() && interval->IntersectsWith(next)) { in Presplit() 413 … if (interval->GetLocation() == physical->GetLocation() && interval->IntersectsWith(physical)) { in Presplit()
|
D | reg_alloc_base.cpp | 160 ASSERT(interval->GetLocation().IsInvalid()); in SetType() 254 spill_fill->AddSpillFill(src->GetLocation(), dst->GetLocation(), dst->GetType()); in ConnectIntervals()
|
D | reg_alloc_stat.cpp | 31 auto location = interv->GetLocation(); in RegAllocStat()
|
/arkcompiler/toolchain/tooling/test/testcases/ |
D | js_syntax_exception_test.h | 33 auto jsLocation = callFrames[0]->GetLocation(); in JsSyntaxExceptionTest() 49 auto jsLocation = callFrames[0]->GetLocation(); in JsSyntaxExceptionTest() 60 location_ = TestUtil::GetLocation(sourceFile_.c_str(), 27, 0, pandaFile_.c_str()); in JsSyntaxExceptionTest()
|
D | js_exception_test.h | 33 auto jsLocation = callFrames[0]->GetLocation(); in JsExceptionTest() 49 auto jsLocation = callFrames[0]->GetLocation(); in JsExceptionTest() 60 location_ = TestUtil::GetLocation(sourceFile_.c_str(), 22, 0, pandaFile_.c_str()); in JsExceptionTest()
|
D | js_range_error_test.h | 33 auto jsLocation = callFrames[0]->GetLocation(); in JsRangeErrorTest() 49 auto jsLocation = callFrames[0]->GetLocation(); in JsRangeErrorTest() 60 location_ = TestUtil::GetLocation(sourceFile_.c_str(), 20, 0, pandaFile_.c_str()); in JsRangeErrorTest()
|
D | js_throw_exception_test.h | 33 auto jsLocation = callFrames[0]->GetLocation(); in JsThrowExceptionTest() 49 auto jsLocation = callFrames[0]->GetLocation(); in JsThrowExceptionTest() 61 location_ = TestUtil::GetLocation(sourceFile_.c_str(), 28, 0, pandaFile_.c_str()); in JsThrowExceptionTest()
|
D | js_single_step_test.h | 35 locationStart_ = TestUtil::GetLocation(sourceFile_.c_str(), 19, 0, pandaFile_.c_str()); in JsSingleStepTest() 37 locationEnd_ = TestUtil::GetLocation(sourceFile_.c_str(), 22, 0, pandaFile_.c_str()); in JsSingleStepTest()
|
D | js_breakpoint_test.h | 37 location_ = TestUtil::GetLocation(sourceFile_.c_str(), 22, 0, pandaFile_.c_str()); in JsBreakpointTest()
|
D | js_breakpoint_async_test.h | 37 location_ = TestUtil::GetLocation(sourceFile_.c_str(), 18, 0, pandaFile_.c_str()); in JsBreakpointAsyncTest()
|
D | js_breakpoint_arrow_test.h | 37 location_ = TestUtil::GetLocation(sourceFile_.c_str(), 18, 0, pandaFile_.c_str()); in JsBreakpointArrowTest()
|
D | js_step_into_test.h | 113 JSPtLocation location = TestUtil::GetLocation(sourceFile_.c_str(), arr[i * LINE_COLUMN], in SetJSPtLocation()
|
D | js_step_over_test.h | 113 … JSPtLocation location_ = TestUtil::GetLocation(sourceFile_.c_str(), arr[i * LINE_COLUMN], in SetJSPtLocation()
|
D | js_step_out_test.h | 113 … JSPtLocation location_ = TestUtil::GetLocation(sourceFile_.c_str(), arr[i * LINE_COLUMN], in SetJSPtLocation()
|
D | js_local_variable_scope_test.h | 41 location_ = TestUtil::GetLocation(sourceFile.c_str(), 37, 0, pandaFile.c_str()); in JsLocalVariableScopeTest()
|
/arkcompiler/toolchain/test/fuzztest/base/ptevents/breakpointresolved/baseptsbreakpointgetlocation_fuzzer/ |
D | baseptsbreakpointgetlocation_fuzzer.cpp | 35 breakpointResolved.GetLocation(); in BasePtsBreakpointGetLocationFuzzTest()
|
/arkcompiler/ets_frontend/es2panda/util/ |
D | concurrent.cpp | 44 …auto column = (const_cast<lexer::LineIndex &>(lineIndex)).GetLocation(expr->Range().start).col - 1; in ThrowInvalidConcurrentFunction()
|
/arkcompiler/ets_frontend/es2panda/lexer/token/ |
D | sourceLocation.cpp | 81 SourceLocation LineIndex::GetLocation(SourcePosition pos) noexcept in GetLocation() function in panda::es2panda::lexer::LineIndex
|
D | sourceLocation.h | 106 SourceLocation GetLocation(SourcePosition pos) noexcept;
|
/arkcompiler/ets_frontend/es2panda/typescript/ |
D | checker.cpp | 80 lexer::SourceLocation loc = index.GetLocation(pos); in ThrowTypeError()
|
/arkcompiler/runtime_core/compiler/tests/ |
D | life_intervals_test.cpp | 231 EXPECT_EQ(same_settings, interval0->GetLocation() == interval1->GetLocation()); in TEST_F()
|
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
D | locations.h | 230 Location GetLocation(size_t index) const in GetLocation() function
|
/arkcompiler/ets_frontend/es2panda/ir/ |
D | astDump.cpp | 252 lexer::SourceLocation loc = index_.GetLocation(pos); in SerializeSourcePosition()
|