Home
last modified time | relevance | path

Searched refs:IsAccRead (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/bytecode_optimizer/
Dreg_acc_alloc.cpp58 if (inst->IsAccRead()) { in IsAccWriteBetween()
85 bool RegAccAlloc::IsAccRead(compiler::Inst *inst) const in IsAccRead() function in panda::bytecodeopt::RegAccAlloc
87 return UNLIKELY(inst->IsPhi()) ? IsPhiOptimizable(inst) : inst->IsAccRead(); in IsAccRead()
110 if (!IsAccRead(user) || IsAccWriteBetween(inst, user)) { in CanUserReadAcc()
177 if (!IsAccRead(inst)) { in SetNeedLda()
Dcommon.cpp24 if (inst->IsIntrinsic() && inst->IsAccRead()) { in AccReadIndex()
Dreg_acc_alloc.h47 bool IsAccRead(compiler::Inst *inst) const;
Dreg_encoder.cpp339 return !inst->IsCall() && inst->IsAccRead() && pos == AccReadIndex(inst); in IsAccReadPosition()
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dinst.cpp491 bool Inst::IsAccRead() const in IsAccRead() function in panda::compiler::Inst
Dinst.h819 bool IsAccRead() const;
/arkcompiler/runtime_core/compiler/tests/
Ddump_test.cpp555 EXPECT_TRUE(inst->IsAccRead()); in __anonb8e9e89d0a02()