reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
513 InstrToCycle.clear(); 554 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); 555 if (it == InstrToCycle.end()) 563 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SU); 564 assert(it != InstrToCycle.end() && "Instruction hasn't been scheduled.");lib/CodeGen/MachinePipeliner.cpp
2323 InstrToCycle.insert(std::make_pair(SU, curCycle)); 2349 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(PrevSU); 2350 if (it == InstrToCycle.end()) 2372 std::map<SUnit *, int>::const_iterator it = InstrToCycle.find(SuccSU); 2373 if (it == InstrToCycle.end())