Searched refs:anc (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/runtime_core/compiler/optimizer/analysis/ |
H A D | dominators_tree.cpp | 98 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 D | dominators_tree.cpp | 99 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 D | fast_divisor.h | 45 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 D | cleanup.cpp | 531 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 D | cleanup.h | 115 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 D | cleanup.cpp | 652 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 D | cleanup.h | 136 void SetAncestor(Inst *inst, Inst *anc) in SetAncestor() argument 138 ancestors_[GetInstId(inst)] = anc; in SetAncestor()
|
Completed in 5 milliseconds