Searched refs:GetNeedBarrier (Results 1 - 13 of 13) sorted by relevance
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | graph_comparator.h | 170 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 D | memory_coalescing.cpp | 700 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 D | adjust_arefs.cpp | 35 return !inst->CastToStoreArray()->GetNeedBarrier(); in IsRefAdjustable() 37 return !inst->CastToLoadArray()->GetNeedBarrier() && !inst->CastToLoadArray()->IsString(); in IsRefAdjustable()
|
H A D | locations_builder.cpp | 399 if (inst->CastToStoreStatic()->GetNeedBarrier()) { in LOCATIONS_BUILDER()
|
H A D | lowering.cpp | 1135 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 D | codegen_fastpath.cpp | 50 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 D | encode_visitor.cpp | 559 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 D | codegen.cpp | 2502 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 D | inst.h | 1816 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 D | graph_checker.cpp | 1549 [[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 D | graph_comparator.h | 128 CHECK_INST(LoadString, GetNeedBarrier) in Compare()
|
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/ |
H A D | llvm_ir_constructor.cpp | 3370 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 D | inst.h | 1473 bool GetNeedBarrier() const in GetNeedBarrier() function in NeedBarrierMixin
|
Completed in 44 milliseconds