Lines Matching refs:In
162 for (auto &In : B) { in InstrIndexMap() local
163 if (In.isDebugInstr()) in InstrIndexMap()
165 assert(getIndex(&In) == IndexType::None && "Instruction already in map"); in InstrIndexMap()
166 Map.insert(std::make_pair(Idx, &In)); in InstrIndexMap()
316 for (auto &In : B) { in computeInitialLiveRanges() local
317 if (In.isDebugInstr()) in computeInitialLiveRanges()
319 IndexType Index = IndexMap.getIndex(&In); in computeInitialLiveRanges()
321 for (auto &Op : In.operands()) { in computeInitialLiveRanges()
337 for (auto &Op : In.operands()) { in computeInitialLiveRanges()
351 for (auto &Op : In.operands()) { in computeInitialLiveRanges()
523 for (auto &In : M.Block) { in operator <<() local
524 HexagonBlockRanges::IndexType Idx = M.getIndex(&In); in operator <<()
525 OS << Idx << (Idx == M.Last ? ". " : " ") << In; in operator <<()