Home
last modified time | relevance | path

Searched refs:getMayStore (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DLSUnit.cpp73 assert((IS.getMayLoad() || IS.getMayStore()) && "Not a memory operation!"); in dispatch()
77 if (IS.getMayStore()) in dispatch()
80 if (IS.getMayStore()) { in dispatch()
200 if (IS.getMayStore() && isSQFull()) in isAvailable()
217 bool IsAStore = IS.getMayStore(); in onInstructionRetired()
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DSchedulerStatistics.cpp56 if (SQResourceID && Inst.getMayStore() && in onEvent()
67 if (SQResourceID && Inst.getMayStore()) { in onEvent()
/freebsd/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DExecuteStage.cpp168 assert(!Inst.getMayLoad() && !Inst.getMayStore() && in verifyInstructionEliminated()
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstruction.h589 bool getMayStore() const { return MayStore; } in getMayStore() function