Home
last modified time | relevance | path

Searched refs:GetNeedBarrier (Results 1 - 13 of 13) sorted by relevance

/arkcompiler/runtime_core/static_core/compiler/tests/
H A Dgraph_comparator.h170 CHECK_OR_RETURN(LoadArray, GetNeedBarrier) in InstAdditionalPropertiesCompare()
171 CHECK_OR_RETURN(LoadArrayPair, GetNeedBarrier) in InstAdditionalPropertiesCompare()
172 CHECK_OR_RETURN(StoreArray, GetNeedBarrier) in InstAdditionalPropertiesCompare()
173 CHECK_OR_RETURN(StoreArrayPair, GetNeedBarrier) in InstAdditionalPropertiesCompare()
174 CHECK_OR_RETURN(LoadArrayI, GetNeedBarrier) in InstAdditionalPropertiesCompare()
175 CHECK_OR_RETURN(LoadArrayPairI, GetNeedBarrier) in InstAdditionalPropertiesCompare()
176 CHECK_OR_RETURN(StoreArrayI, GetNeedBarrier) in InstAdditionalPropertiesCompare()
177 CHECK_OR_RETURN(StoreArrayPairI, GetNeedBarrier) in InstAdditionalPropertiesCompare()
178 CHECK_OR_RETURN(LoadStatic, GetNeedBarrier) in InstAdditionalPropertiesCompare()
179 CHECK_OR_RETURN(StoreStatic, GetNeedBarrier) in InstAdditionalPropertiesCompare()
[all...]
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H A Dmemory_coalescing.cpp700 pload->CastToLoadArrayPair()->SetNeedBarrier(first->CastToLoadArray()->GetNeedBarrier() || in ReplaceLoadArray()
701 second->CastToLoadArray()->GetNeedBarrier()); in ReplaceLoadArray()
725 pload->CastToLoadObjectPair()->SetNeedBarrier(first->CastToLoadObject()->GetNeedBarrier() || in ReplaceLoadObject()
726 second->CastToLoadObject()->GetNeedBarrier()); in ReplaceLoadObject()
742 pload->CastToLoadArrayPairI()->SetNeedBarrier(first->CastToLoadArrayI()->GetNeedBarrier() || in ReplaceLoadArrayI()
743 second->CastToLoadArrayI()->GetNeedBarrier()); in ReplaceLoadArrayI()
762 pstore->CastToStoreArrayPair()->SetNeedBarrier(first->CastToStoreArray()->GetNeedBarrier() || in ReplaceStoreArray()
763 second->CastToStoreArray()->GetNeedBarrier()); in ReplaceStoreArray()
789 pstore->CastToStoreObjectPair()->SetNeedBarrier(first->CastToStoreObject()->GetNeedBarrier() || in ReplaceStoreObject()
790 second->CastToStoreObject()->GetNeedBarrier()); in ReplaceStoreObject()
[all...]
H A Dadjust_arefs.cpp35 return !inst->CastToStoreArray()->GetNeedBarrier(); in IsRefAdjustable()
37 return !inst->CastToLoadArray()->GetNeedBarrier() && !inst->CastToLoadArray()->IsString(); in IsRefAdjustable()
H A Dlocations_builder.cpp399 if (inst->CastToStoreStatic()->GetNeedBarrier()) { in LOCATIONS_BUILDER()
H A Dlowering.cpp1135 newInst->CastToStoreArrayI()->SetNeedBarrier(inst->CastToStoreArray()->GetNeedBarrier()); in LowerConstArrayIndex()
1139 newInst->CastToLoadArrayI()->SetNeedBarrier(inst->CastToLoadArray()->GetNeedBarrier()); in LowerConstArrayIndex()
/arkcompiler/runtime_core/static_core/irtoc/backend/compiler/
H A Dcodegen_fastpath.cpp50 if (inst->CastToStore()->GetNeedBarrier()) { in InstHasRuntimeCall()
55 if (inst->CastToStoreI()->GetNeedBarrier()) { in InstHasRuntimeCall()
60 if (inst->CastToStoreArray()->GetNeedBarrier()) { in InstHasRuntimeCall()
65 if (inst->CastToStoreObject()->GetNeedBarrier()) { in InstHasRuntimeCall()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H A Dencode_visitor.cpp559 if (inst->CastToStoreArray()->GetNeedBarrier()) { in VisitStoreArray()
571 if (inst->CastToStoreArray()->GetNeedBarrier()) { in VisitStoreArray()
577 if (inst->CastToStoreArray()->GetNeedBarrier()) { in VisitStoreArray()
609 if (static_cast<LoadInst *>(inst)->GetNeedBarrier()) { in VisitLoadArray()
888 if (loadObj->GetNeedBarrier()) { in VisitLoadObject()
913 if (resolver->GetNeedBarrier()) { in VisitResolveObjectField()
943 if (load->GetNeedBarrier()) { in VisitLoadResolvedObjectField()
992 if (inst->CastToStoreI()->GetNeedBarrier()) { in VisitStoreI()
1000 if (inst->CastToStoreI()->GetNeedBarrier()) { in VisitStoreI()
1022 if (inst->CastToStoreObject()->GetNeedBarrier()) { in VisitStoreObject()
[all...]
H A Dcodegen.cpp2502 return inst->CastToLoadObject()->GetNeedBarrier(); in GetNeedBarrierProperty()
2505 return inst->CastToStoreObject()->GetNeedBarrier(); in GetNeedBarrierProperty()
2508 return inst->CastToLoadObjectPair()->GetNeedBarrier(); in GetNeedBarrierProperty()
2511 return inst->CastToStoreObjectPair()->GetNeedBarrier(); in GetNeedBarrierProperty()
2514 return inst->CastToLoadArray()->GetNeedBarrier(); in GetNeedBarrierProperty()
2517 return inst->CastToStoreArray()->GetNeedBarrier(); in GetNeedBarrierProperty()
2520 return inst->CastToLoadArrayI()->GetNeedBarrier(); in GetNeedBarrierProperty()
2523 return inst->CastToStoreArrayI()->GetNeedBarrier(); in GetNeedBarrierProperty()
2526 return inst->CastToLoadArrayPair()->GetNeedBarrier(); in GetNeedBarrierProperty()
2529 return inst->CastToStoreArrayPair()->GetNeedBarrier(); in GetNeedBarrierProperty()
[all...]
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H A Dinst.h1816 bool GetNeedBarrier() const in GetNeedBarrier() function in NeedBarrierMixin
3991 return Inst::IsBarrier() || GetNeedBarrier();
4102 return Inst::IsBarrier() || GetNeedBarrier();
4178 return Inst::IsBarrier() || GetNeedBarrier();
4228 return Inst::IsBarrier() || GetNeedBarrier();
4258 return Inst::IsBarrier() || GetNeedBarrier();
4313 return Inst::IsBarrier() || GetNeedBarrier();
4804 return Inst::IsBarrier() || GetNeedBarrier() || GetVolatile();
4856 return Inst::IsBarrier() || GetNeedBarrier() || GetVolatile();
4960 return Inst::IsBarrier() || GetNeedBarrier() || GetVolatil
[all...]
H A Dgraph_checker.cpp1549 [[maybe_unused]] bool needBarrier = inst->CastToStoreArrayPair()->GetNeedBarrier(); in CheckUserOfInt32()
1558 bool needBarrier = storeObj->GetNeedBarrier(); in CheckUserOfInt32()
1583 bool needBarrier = inst->CastToStoreArrayPairI()->GetNeedBarrier(); in CheckUserOfInt32()
1601 bool needBarrier = inst->CastToStore()->GetNeedBarrier(); in CheckUserOfInt32()
1607 bool needBarrier = inst->CastToStoreI()->GetNeedBarrier(); in CheckUserOfInt32()
1613 bool needBarrier = inst->CastToStoreArray()->GetNeedBarrier(); in CheckUserOfInt32()
1625 bool needBarrier = inst->CastToStoreArrayI()->GetNeedBarrier(); in CheckUserOfInt32()
1637 bool needBarrier = inst->CastToStoreStatic()->GetNeedBarrier(); in CheckUserOfInt32()
1668 bool needBarrier = inst->CastToUnresolvedStoreStatic()->GetNeedBarrier(); in CheckUserOfInt32()
1685 bool needBarrier = inst->CastToStoreObject()->GetNeedBarrier(); in CheckUserOfInt32()
[all...]
/arkcompiler/runtime_core/compiler/tests/
H A Dgraph_comparator.h128 CHECK_INST(LoadString, GetNeedBarrier) in Compare()
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
H A Dllvm_ir_constructor.cpp3370 if (inst->CastToStoreArray()->GetNeedBarrier()) { in VisitStoreArray()
3376 if (inst->CastToStoreArray()->GetNeedBarrier()) { in VisitStoreArray()
3426 if (inst->CastToStore()->GetNeedBarrier()) { in VisitStore()
3432 if (inst->CastToStore()->GetNeedBarrier()) { in VisitStore()
3461 if (inst->CastToStoreI()->GetNeedBarrier()) { in VisitStoreI()
3467 if (inst->CastToStoreI()->GetNeedBarrier()) { in VisitStoreI()
3499 if (inst->CastToStoreObject()->GetNeedBarrier()) { in VisitStoreObject()
3505 if (inst->CastToStoreObject()->GetNeedBarrier()) { in VisitStoreObject()
3546 if (inst->CastToStoreResolvedObjectField()->GetNeedBarrier()) { in VisitStoreResolvedObjectField()
3552 if (inst->CastToStoreResolvedObjectField()->GetNeedBarrier()) { in VisitStoreResolvedObjectField()
[all...]
/arkcompiler/runtime_core/compiler/optimizer/ir/
H A Dinst.h1473 bool GetNeedBarrier() const in GetNeedBarrier() function in NeedBarrierMixin

Completed in 44 milliseconds