| /arkcompiler/runtime_core/static_core/compiler/tests/ |
| D | life_intervals_test.cpp | 28 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), inst); in Create() local 198 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), add); in TEST_F() local 203 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), add); in TEST_F() local 208 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), add); in TEST_F() local 213 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), add); in TEST_F() local 218 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), con42); in TEST_F() local 223 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), con42); in TEST_F() local 228 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), con0); in TEST_F() local 273 LifeIntervals li(GetAllocator()); in TEST_F() local 282 LifeIntervals li(GetAllocator()); in TEST_F() local [all …]
|
| D | live_registers_test.cpp | 51 for (auto &li : intervals) { in TEST_F() local 59 tree->VisitIntervals(5, [&mask]([[maybe_unused]] const auto &li) { in TEST_F() 66 tree->VisitIntervals(11, [&mask]([[maybe_unused]] const auto &li) { in TEST_F() 73 tree->VisitIntervals(8, [&mask]([[maybe_unused]] const auto &li) { in TEST_F() 80 tree->VisitIntervals(4, [&mask]([[maybe_unused]] const auto &li) { in TEST_F() 88 tree->VisitIntervals<false>(8, [&mask]([[maybe_unused]] const auto &li) { in TEST_F() 103 for (auto &li : intervals) { in TEST_F() local 111 tree->VisitIntervals(5, [&mask]([[maybe_unused]] const auto &li) { in TEST_F() 118 tree->VisitIntervals(0, [&mask]([[maybe_unused]] const auto &li) { in TEST_F() 125 tree->VisitIntervals(9, [&mask]([[maybe_unused]] const auto &li) { in TEST_F() [all …]
|
| D | liveness_analyzer_test.cpp | 687 LifeIntervals li(GetAllocator()); in TEST_F() local 812 LifeIntervals li(GetAllocator()); in TEST_F() local 833 LifeIntervals li(GetAllocator()); in TEST_F() local 847 LifeIntervals li(GetAllocator()); in TEST_F() local
|
| D | reg_alloc_linear_scan_test.cpp | 1417 lr.VisitIntervalsWithLiveRegisters(&INS(3), [graph](const auto &li) { in TEST_F()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
| D | reg_alloc_lsra.cpp | 83 …arScanRegAllocator::CheckForReg(Operand &opnd, const Insn &insn, const LiveInterval &li, regno_t r… in CheckForReg() 131 for (auto *li : liveIntervalsArray) { in PrintAllLiveRanges() local 169 for (auto *li : liveIntervalsArray) { in PrintLiveRangesGraph() local 267 … auto *li = liveIntervalsArray[(static_cast<const RegOperand *>(opnd))->GetRegisterNumber()]; in SpillStackMapInfo() local 284 auto *li = liveIntervalsArray[regNO]; in SpillStackMapInfo() local 306 void LSRALinearScanRegAllocator::PrintLiveInterval(const LiveInterval &li, const std::string &str) … in PrintLiveInterval() argument 335 LiveInterval *li = que.front(); in PrintParamQueue() local 362 for (auto *li : active) { in PrintActiveList() local 373 for (const auto *li : active) { in PrintActiveListSimple() local 389 for (auto *li : liveIntervalsArray) { in PrintLiveIntervals() local [all …]
|
| D | reg_coalesce.cpp | 60 LiveInterval *li = it.second; in Dump() local
|
| /arkcompiler/runtime_core/compiler/tests/ |
| D | life_intervals_test.cpp | 27 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), inst); in Create() local 186 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), add); in TEST_F() local 191 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), add); in TEST_F() local 196 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), add); in TEST_F() local 201 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), add); in TEST_F() local 206 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), con42); in TEST_F() local 211 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), con42); in TEST_F() local 216 auto li = GetAllocator()->New<LifeIntervals>(GetAllocator(), con0); in TEST_F() local
|
| D | liveness_analyzer_test.cpp | 682 LifeIntervals li(GetAllocator()); in TEST_F() local 782 LifeIntervals li(GetAllocator()); in TEST_F() local 802 LifeIntervals li(GetAllocator()); in TEST_F() local 815 LifeIntervals li(GetAllocator()); in TEST_F() local
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/ |
| D | liveness_analyzer.cpp | 62 std::back_inserter(instLifeIntervals_), [](auto li) { return li != nullptr; }); in RunImpl() 64 std::back_inserter(instLifeIntervals_), [](auto li) { return li != nullptr; }); in RunImpl() 269 auto li = GetInstLifeIntervals(inputInst); in SetUsePositions() local 283 auto li = GetInstLifeIntervals(userInst); in SetUsePositions() local 422 auto li = GetInstLifeIntervals(user.GetInst()); in GetPropagatedLiveRange() local
|
| D | live_registers.h | 172 auto li = la.GetInstLifeIntervals(inst); in VisitIntervalsWithLiveRegisters() local
|
| D | reg_alloc_verifier.cpp | 173 bool IsRegisterPair(const LifeIntervals *li) in IsRegisterPair()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/be/ |
| D | bbt.h | 54 void SetLabelIdx(LabelIdx li) in SetLabelIdx()
|
| /arkcompiler/runtime_core/compiler/optimizer/analysis/ |
| D | liveness_analyzer.cpp | 53 std::back_inserter(inst_life_intervals_), [](auto li) { return li != nullptr; }); in RunImpl() 55 std::back_inserter(inst_life_intervals_), [](auto li) { return li != nullptr; }); in RunImpl()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
| D | aarch64_reg_coalesce.cpp | 272 LiveInterval *li = GetLiveInterval(lin); in ComputeLiveIntervals() local
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/ |
| D | interference_graph.h | 226 const ColorNode *FindNode(const LifeIntervals *li) const in FindNode()
|
| D | reg_alloc_graph_coloring.cpp | 267 LifeIntervals *li) in AddAffinityEdge()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
| D | reg_alloc_lsra.h | 336 void SetSplitParent(LiveInterval &li) in SetSplitParent()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
| D | codegen.cpp | 42 la.EnumerateLiveIntervalsForInst(saveState_, [this, codegen, encoder](const auto &li) { in FixIntervals() 79 static void EncodeConstantMove(const LifeIntervals *li, Encoder *encoder) in EncodeConstantMove()
|
| /arkcompiler/ets_frontend/legacy_bin/api8/src/ |
| D | index.js | 2 …lue" argument must not be a number');return a=e,"ArrayBuffer"===t.call(a).slice(8,-1)?function(e,t… function
|