Home
last modified time | relevance | path

Searched refs:MayStore (Results 1 – 10 of 10) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DLSUnit.cpp72 assert((Desc.MayLoad || Desc.MayStore) && "Not a memory operation!"); in dispatch()
76 if (Desc.MayStore) in dispatch()
79 if (Desc.MayStore) { in dispatch()
199 if (Desc.MayStore && isSQFull()) in isAvailable()
216 bool IsAStore = Desc.MayStore; in onInstructionRetired()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DSchedulerStatistics.cpp56 if (SQResourceID && Inst.getDesc().MayStore && in onEvent()
67 if (SQResourceID && Inst.getDesc().MayStore) { in onEvent()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCInstrDesc.h166 MayStore, enumerator
435 bool mayStore() const { return Flags & (1ULL << MCID::MayStore); } in mayStore()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstruction.h476 unsigned MayStore : 1; member
562 bool isMemOp() const { return Desc.MayLoad || Desc.MayStore; } in isMemOp()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp195 bool updateDefsUses(ValueType V, bool MayStore);
518 bool MemDefsUses::updateDefsUses(ValueType V, bool MayStore) { in updateDefsUses() argument
519 if (MayStore) in updateDefsUses()
H A DMips16InstrInfo.td519 class MayStore {
988 "", [], II_SAVE >, MayStore {
996 "", [], II_SAVE >, MayStore {
1007 FEXT_RRI16_mem2_ins<0b11000, "sb", mem16, II_SB>, MayStore;
1145 FEXT_RRI16_mem2_ins<0b11001, "sh", mem16, II_SH>, MayStore;
1280 def SwRxRyOffMemX16: FEXT_RRI16_mem2_ins<0b11011, "sw", mem16, II_SW>, MayStore;
1287 def SwRxSpImmX16: FEXT_RRI16_mem2_ins<0b11010, "sw", mem16sp, II_SW>, MayStore;
/freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DExecuteStage.cpp169 assert(!Desc.MayLoad && !Desc.MayStore && "Cannot eliminate a memory op!"); in verifyInstructionEliminated()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/
H A DInstrBuilder.cpp597 ID->MayStore = MCDesc.mayStore(); in createInstrDescImpl()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstr.h1024 return hasProperty(MCID::MayStore, Type);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonPatterns.td3234 // because the SDNode ISD::PREFETCH has properties MayLoad and MayStore.