/arkcompiler/runtime_core/compiler/tests/ |
H A D | liveness_analyzer_test.cpp | 238 EXPECT_EQ(life_inter.GetRanges(), LIVE_RANGES_DEQUE({35, 50}, {80, 100})); in TEST_F() 242 EXPECT_EQ(life_inter.GetRanges(), LIVE_RANGES_DEQUE({30, 34}, {35, 50}, {80, 100})); in TEST_F() 246 EXPECT_EQ(life_inter.GetRanges(), LIVE_RANGES_DEQUE({10, 25}, {30, 34}, {35, 50}, {80, 100})); in TEST_F() 249 EXPECT_EQ(life_inter.GetRanges(), LIVE_RANGES_DEQUE({10, 79}, {80, 100})); in TEST_F() 252 EXPECT_EQ(life_inter.GetRanges(), LIVE_RANGES_DEQUE({10, 100})); in TEST_F() 342 EXPECT_EQ(const0->GetRanges()[0], LiveRange(b0_lifetime.GetBegin() + 2, b3_lifetime.GetEnd())); in TEST_F() 343 EXPECT_EQ(const1->GetRanges()[0], LiveRange(b0_lifetime.GetBegin() + 4, phi0->GetRanges()[0].GetBegin())); in TEST_F() 344 EXPECT_EQ(const2->GetRanges()[0], LiveRange(b0_lifetime.GetBegin() + 6, add->GetRanges()[ in TEST_F() [all...] |
H A D | liveness_analyzer_new_test.cpp | 269 auto intervals = life_intervals.GetRanges(); in HWTEST_F() 305 auto intervals = life_intervals.GetRanges(); in HWTEST_F() 461 auto intervals = life_intervals.GetRanges(); in HWTEST_F()
|
H A D | life_intervals_test.cpp | 52 auto li_ranges = interval->GetRanges(); in CheckRanges()
|
H A D | compiler_regalloc_test.cpp | 880 EXPECT_EQ(param->GetRanges().size(), 2); in HWTEST_F() 891 EXPECT_EQ(interval->GetRanges().size(), 1); in HWTEST_F()
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | liveness_analyzer_test.cpp | 215 EXPECT_EQ(lifeInter.GetRanges(), LIVE_RANGES_VECTOR({80U, 100U}, {35U, 50U})); in TEST_F() 219 EXPECT_EQ(lifeInter.GetRanges(), LIVE_RANGES_VECTOR({80U, 100U}, {35U, 50U}, {30U, 34U})); in TEST_F() 223 EXPECT_EQ(lifeInter.GetRanges(), LIVE_RANGES_VECTOR({80U, 100U}, {35U, 50U}, {30U, 34U}, {10U, 25U})); in TEST_F() 226 EXPECT_EQ(lifeInter.GetRanges(), LIVE_RANGES_VECTOR({80U, 100U}, {10U, 79U})); in TEST_F() 229 EXPECT_EQ(lifeInter.GetRanges(), LIVE_RANGES_VECTOR({10U, 100U})); in TEST_F() 319 EXPECT_EQ(const0->GetRanges()[0U], LiveRange(b0Lifetime.GetBegin() + 2U, b3Lifetime.GetEnd())); in TEST_F() 320 EXPECT_EQ(const1->GetRanges()[0U], LiveRange(b0Lifetime.GetBegin() + 4U, phi0->GetRanges()[1U].GetBegin())); in TEST_F() 321 EXPECT_EQ(const2->GetRanges()[0U], LiveRange(b0Lifetime.GetBegin() + 6U, add->GetRanges()[ in TEST_F() [all...] |
H A D | life_intervals_test.cpp | 54 auto liRanges = interval->GetRanges(); in CheckRanges()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/ |
H A D | liveness_analyzer.h | 200 const ArenaVector<LiveRange> &GetRanges() const in GetRanges() function in ark::compiler::LifeIntervals 207 ASSERT(!GetRanges().empty()); in GetBegin() 208 return GetRanges().back().GetBegin(); in GetBegin() 213 ASSERT(!GetRanges().empty()); in GetEnd() 214 return GetRanges().front().GetEnd(); in GetEnd() 220 for (auto range : GetRanges()) { in SplitCover() 378 for (auto it = GetRanges().rbegin(); it != GetRanges().rend(); it++) { in ToString()
|
H A D | liveness_analyzer.cpp | 945 for (auto it = GetRanges().rbegin(); it != GetRanges().rend(); it++) { in GetFirstIntersectionWith() 950 for (auto otherIt = other->GetRanges().rbegin(); otherIt != other->GetRanges().rend(); otherIt++) { in GetFirstIntersectionWith() 974 for (auto &range : GetRanges()) { in FindRangeCoveringPosition()
|
/arkcompiler/runtime_core/compiler/optimizer/analysis/ |
H A D | liveness_analyzer.h | 194 const ArenaDeque<LiveRange> &GetRanges() const in GetRanges() function in panda::compiler::LifeIntervals 201 ASSERT(!GetRanges().empty()); in GetBegin() 202 return GetRanges().front().GetBegin(); in GetBegin() 207 ASSERT(!GetRanges().empty()); in GetEnd() 208 return GetRanges().back().GetEnd(); in GetEnd() 214 for (auto range : GetRanges()) { in SplitCover() 351 for (const auto &range : GetRanges()) { in ToString()
|
H A D | liveness_analyzer.cpp | 662 for (auto range : GetRanges()) { in GetFirstIntersectionWith() 666 for (auto other_range : other->GetRanges()) { in GetFirstIntersectionWith()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
H A D | reg_alloc_lsra.cpp | 62 for (auto range : li.GetRanges()) { in PrintLiveRanges() 444 if (li->GetRanges().empty()) { in SetupLiveInterval() 447 li->GetRanges().back().SetEnd(insn.GetId()); in SetupLiveInterval() 624 if (li->GetRanges().empty()) { in ComputeLiveOut() 627 li->GetRanges().back().SetEnd(insnNum); in ComputeLiveOut() 984 if (posRange == activeLi->GetRanges().end()) { in UpdateActiveAllocateInfo() 1100 for (auto range : li.GetRanges()) { in NeedSaveAcrossCall() 1679 if (posRange == li->GetRanges().end() || posRange->GetStart() > curId) { in CollectCallerNoNeedReloadByInsn()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | reg_alloc_lsra.h | 218 const MapleVector<LinearRange> &GetRanges() const in GetRanges() function in maplebe::LSRALinearScanRegAllocator::LiveInterval 223 MapleVector<LinearRange> &GetRanges() in GetRanges() function in maplebe::LSRALinearScanRegAllocator::LiveInterval
|
/arkcompiler/runtime_core/static_core/static_linker/ |
H A D | linker_context.h | 68 const std::vector<std::pair<size_t, size_t>> &GetRanges() const in GetRanges() function in ark::static_linker::CodePatcher
|
/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
H A D | bit_table_test.cpp | 328 TEST_F(BitTableTest, GetRanges) in TEST_F()
|
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_types.h | 2429 const std::vector<std::unique_ptr<Coverage>> *GetRanges() const in GetRanges() function in panda::ecmascript::tooling::final::final
|
/arkcompiler/toolchain/tooling/test/ |
H A D | debugger_types_test.cpp | 2352 const std::vector<std::unique_ptr<Coverage>> *ranges = functionCoverage->GetRanges();
|