Searched defs:SawStore (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/CodeGen/
H A DLiveRangeEdit.cpp233 bool SawStore = false; local
234 if (!MI->isSafeToMove(&TII, 0, SawStore)) {
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 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))

Completed in 249 milliseconds