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

/external/llvm/lib/Target/Lanai/
H A DLanaiDelaySlotFiller.cpp73 bool &SawStore, SmallSet<unsigned, 32> &RegDefs,
155 bool SawStore = false; local
170 if (delayHasHazard(FI, SawLoad, SawStore, RegDefs, RegUses)) {
181 bool &SawStore, SmallSet<unsigned, 32> &RegDefs,
189 if (SawStore)
195 if (SawStore)
197 SawStore = true;
180 delayHasHazard(MachineBasicBlock::instr_iterator MI, bool &SawLoad, bool &SawStore, SmallSet<unsigned, 32> &RegDefs, SmallSet<unsigned, 32> &RegUses) argument
/external/llvm/lib/CodeGen/
H A DDeadMachineInstructionElim.cpp72 bool SawStore = false;
73 if (!MI->isSafeToMove(nullptr, SawStore) && !MI->isPHI())
H A DLiveRangeEdit.cpp197 bool SawStore = true;
198 if (!DefMI->isSafeToMove(nullptr, SawStore))
253 bool SawStore = false; local
254 if (!MI->isSafeToMove(nullptr, SawStore)) {
H A DMachineSink.cpp127 bool SinkInstruction(MachineInstr &MI, bool &SawStore,
328 bool ProcessedBegin, SawStore = false; local
347 if (SinkInstruction(MI, SawStore, AllSuccessors)) {
718 bool MachineSinking::SinkInstruction(MachineInstr &MI, bool &SawStore, argument
725 if (!MI.isSafeToMove(AA, SawStore))
H A DImplicitNullChecks.cpp275 bool SawStore = true;
276 if (!MI->isSafeToMove(&AA, SawStore) || MI->mayLoad())
H A DMachineInstr.cpp1510 /// SawStore is set to true, it means that there is a store (or call) between
1512 bool MachineInstr::isSafeToMove(AliasAnalysis *AA, bool &SawStore) const {
1520 SawStore = true;
1536 return !SawStore;
H A DIfConversion.cpp1593 bool SawStore = true; local
1594 if (!MI.isSafeToMove(nullptr, SawStore))
H A DRegisterCoalescer.cpp910 bool SawStore = false;
911 if (!DefMI->isSafeToMove(AA, SawStore))
H A DMachinePipeliner.cpp2826 bool SawStore = false; local
2829 if (!MI->isSafeToMove(nullptr, SawStore) && !MI->isPHI()) {
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DDeadMachineInstructionElim.cpp64 bool SawStore = false;
65 if (!MI->isSafeToMove(TII, 0, SawStore) && !MI->isPHI())
H A DMachineSink.cpp89 bool SinkInstruction(MachineInstr *MI, bool &SawStore);
255 bool ProcessedBegin, SawStore = false; local
274 if (SinkInstruction(MI, SawStore))
406 bool MachineSinking::SinkInstruction(MachineInstr *MI, bool &SawStore) { argument
413 if (!MI->isSafeToMove(TII, AA, SawStore))
H A DLiveRangeEdit.cpp233 bool SawStore = false; local
234 if (!MI->isSafeToMove(&TII, 0, SawStore)) {
H A DMachineInstr.cpp1156 /// SawStore is set to true, it means that there is a store (or call) between
1160 bool &SawStore) const {
1163 SawStore = true;
1179 return !SawStore && !hasVolatileMemoryRef();
1189 bool SawStore = false; local
1191 !isSafeToMove(TII, AA, SawStore))
H A DRegisterCoalescer.cpp817 bool SawStore = false;
818 if (!DefMI->isSafeToMove(TII, AA, SawStore))
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineInstr.h469 /// SawStore is set to true, it means that there is a store (or call) between
472 bool &SawStore) const;
/external/llvm/include/llvm/CodeGen/
H A DMachineInstr.h1117 /// SawStore is set to true, it means that there is a store (or call) between
1119 bool isSafeToMove(AliasAnalysis *AA, bool &SawStore) const;
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp5351 bool SawStore = false; local
5352 if (!DefMI->isSafeToMove(nullptr, SawStore))

Completed in 422 milliseconds