Searched refs:SawStore (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiDelaySlotFiller.cpp72 bool &SawStore, SmallSet<unsigned, 32> &RegDefs,
153 bool SawStore = false; local
168 if (delayHasHazard(FI, SawLoad, SawStore, RegDefs, RegUses)) {
179 bool &SawStore, SmallSet<unsigned, 32> &RegDefs,
187 if (SawStore)
193 if (SawStore)
195 SawStore = true;
178 delayHasHazard(MachineBasicBlock::instr_iterator MI, bool &SawLoad, bool &SawStore, SmallSet<unsigned, 32> &RegDefs, SmallSet<unsigned, 32> &RegUses) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveRangeShrink.cpp126 bool SawStore = false; local
136 SawStore = true;
155 if (!MI.isSafeToMove(nullptr, SawStore)) {
161 SawStore = false;
H A DDeadMachineInstructionElim.cpp71 bool SawStore = false;
72 if (!MI->isSafeToMove(nullptr, SawStore) && !MI->isPHI())
H A DLiveRangeEdit.cpp219 bool SawStore = true;
220 if (!DefMI->isSafeToMove(nullptr, SawStore))
278 bool SawStore = false; local
279 if (!MI->isSafeToMove(nullptr, SawStore)) {
H A DMachineSink.cpp178 bool SinkInstruction(MachineInstr &MI, bool &SawStore,
390 bool ProcessedBegin, SawStore = false; local
412 if (SinkInstruction(MI, SawStore, AllSuccessors)) {
881 bool MachineSinking::SinkInstruction(MachineInstr &MI, bool &SawStore, argument
888 if (!MI.isSafeToMove(AA, SawStore))
H A DMachineInstr.cpp1196 /// SawStore is set to true, it means that there is a store (or call) between
1198 bool MachineInstr::isSafeToMove(AAResults *AA, bool &SawStore) const {
1206 SawStore = true;
1222 return !SawStore;
H A DModuloSchedule.cpp718 bool SawStore = false; local
721 if (!MI->isSafeToMove(nullptr, SawStore) && !MI->isPHI()) {
H A DIfConversion.cpp2116 bool SawStore = true; local
2117 if (!MI.isSafeToMove(nullptr, SawStore))
H A DRegisterCoalescer.cpp1272 bool SawStore = false;
1273 if (!DefMI->isSafeToMove(AA, SawStore))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DUtils.cpp185 bool SawStore = false; local
186 if (!MI.isSafeToMove(/*AA=*/nullptr, SawStore) && !MI.isPHI())
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstr.h1525 /// SawStore is set to true, it means that there is a store (or call) between
1527 bool isSafeToMove(AAResults *AA, bool &SawStore) const;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp4320 bool SawStore = false; local
4321 if (!DefMI->isSafeToMove(nullptr, SawStore))

Completed in 294 milliseconds