Home
last modified time | relevance | path

Searched refs:anc (Results 1 - 7 of 7) sorted by relevance

/arkcompiler/runtime_core/compiler/optimizer/analysis/
H A Ddominators_tree.cpp98 auto anc = GetAncestor(block); in Compress() local
99 ASSERT(anc != nullptr); in Compress()
101 if (GetAncestor(anc) != nullptr) { in Compress()
102 Compress(anc); in Compress()
103 if (GetSemi(GetLabel(anc)) < GetSemi(GetLabel(block))) { in Compress()
104 SetLabel(block, GetLabel(anc)); in Compress()
106 SetAncestor(block, GetAncestor(anc)); in Compress()
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
H A Ddominators_tree.cpp99 auto anc = GetAncestor(block); in Compress() local
100 ASSERT(anc != nullptr); in Compress()
102 if (GetAncestor(anc) != nullptr) { in Compress()
103 Compress(anc); in Compress()
104 if (GetSemi(GetLabel(anc)) < GetSemi(GetLabel(block))) { in Compress()
105 SetLabel(block, GetLabel(anc)); in Compress()
107 SetAncestor(block, GetAncestor(anc)); in Compress()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H A Dfast_divisor.h45 uint64_t anc = t - 1U - t % ad; in FastConstSignedDivisor() local
47 uint64_t q1 = highOne / anc; in FastConstSignedDivisor()
48 uint64_t r1 = highOne - q1 * anc; in FastConstSignedDivisor()
57 if (r1 >= anc) { in FastConstSignedDivisor()
59 r1 -= anc; in FastConstSignedDivisor()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
H A Dcleanup.cpp531 auto anc = GetAncestor(inst); in Compress() local
532 ASSERT(anc != nullptr); in Compress()
534 if (GetAncestor(anc) != nullptr) { in Compress()
535 Compress(anc); in Compress()
536 if (GetSemi(GetLabel(anc)) < GetSemi(GetLabel(inst))) { in Compress()
537 SetLabel(inst, GetLabel(anc)); in Compress()
539 SetAncestor(inst, GetAncestor(anc)); in Compress()
H A Dcleanup.h115 void SetAncestor(Inst *inst, Inst *anc) in SetAncestor() argument
117 ancestors_[GetInstId(inst)] = anc; in SetAncestor()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H A Dcleanup.cpp652 auto anc = GetAncestor(inst); in Compress() local
653 ASSERT(anc != nullptr); in Compress()
655 if (GetAncestor(anc) != nullptr) { in Compress()
656 Compress(anc); in Compress()
657 if (GetSemi(GetLabel(anc)) < GetSemi(GetLabel(inst))) { in Compress()
658 SetLabel(inst, GetLabel(anc)); in Compress()
660 SetAncestor(inst, GetAncestor(anc)); in Compress()
H A Dcleanup.h136 void SetAncestor(Inst *inst, Inst *anc) in SetAncestor() argument
138 ancestors_[GetInstId(inst)] = anc; in SetAncestor()

Completed in 5 milliseconds