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

/freebsd-11-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-11-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.cpp218 bool SawStore = true;
219 if (!DefMI->isSafeToMove(nullptr, SawStore))
276 bool SawStore = false; local
277 if (!MI->isSafeToMove(nullptr, SawStore)) {
H A DMachineSink.cpp178 bool SinkInstruction(MachineInstr &MI, bool &SawStore,
385 bool ProcessedBegin, SawStore = false; local
407 if (SinkInstruction(MI, SawStore, AllSuccessors)) {
869 bool MachineSinking::SinkInstruction(MachineInstr &MI, bool &SawStore, argument
876 if (!MI.isSafeToMove(AA, SawStore))
H A DMachineInstr.cpp1160 /// SawStore is set to true, it means that there is a store (or call) between
1162 bool MachineInstr::isSafeToMove(AAResults *AA, bool &SawStore) const {
1170 SawStore = true;
1186 return !SawStore;
H A DIfConversion.cpp2116 bool SawStore = true; local
2117 if (!MI.isSafeToMove(nullptr, SawStore))
H A DModuloSchedule.cpp717 bool SawStore = false; local
720 if (!MI->isSafeToMove(nullptr, SawStore) && !MI->isPHI()) {
H A DRegisterCoalescer.cpp1264 bool SawStore = false;
1265 if (!DefMI->isSafeToMove(AA, SawStore))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DUtils.cpp162 bool SawStore = false; local
163 if (!MI.isSafeToMove(/*AA=*/nullptr, SawStore) && !MI.isPHI())
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstr.h1438 /// SawStore is set to true, it means that there is a store (or call) between
1440 bool isSafeToMove(AAResults *AA, bool &SawStore) const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp3838 bool SawStore = false; local
3839 if (!DefMI->isSafeToMove(nullptr, SawStore))

Completed in 247 milliseconds