Lines Matching refs:In
161 for (auto &In : B) { in InstrIndexMap() local
162 if (In.isDebugInstr()) in InstrIndexMap()
164 assert(getIndex(&In) == IndexType::None && "Instruction already in map"); in InstrIndexMap()
165 Map.insert(std::make_pair(Idx, &In)); in InstrIndexMap()
314 for (auto &In : B) { in computeInitialLiveRanges() local
315 if (In.isDebugInstr()) in computeInitialLiveRanges()
317 IndexType Index = IndexMap.getIndex(&In); in computeInitialLiveRanges()
319 for (auto &Op : In.operands()) { in computeInitialLiveRanges()
335 for (auto &Op : In.operands()) { in computeInitialLiveRanges()
349 for (auto &Op : In.operands()) { in computeInitialLiveRanges()
519 for (auto &In : M.Block) { in operator <<() local
520 HexagonBlockRanges::IndexType Idx = M.getIndex(&In); in operator <<()
521 OS << Idx << (Idx == M.Last ? ". " : " ") << In; in operator <<()