Lines Matching refs:LiveMap
292 RegToRangeMap &LiveMap) { in computeInitialLiveRanges() argument
304 auto closeRange = [&LastUse,&LastDef,&LiveMap] (RegisterRef R) -> void { in computeInitialLiveRanges()
310 LiveMap[R].add(LD, LU, false, false); in computeInitialLiveRanges()
418 for (auto &P : LiveMap) in computeInitialLiveRanges()
424 RegToRangeMap LiveMap; in computeLiveMap() local
426 computeInitialLiveRanges(IndexMap, LiveMap); in computeLiveMap()
428 << PrintRangeMap(LiveMap, TRI) << '\n'); in computeLiveMap()
429 return LiveMap; in computeLiveMap()
433 InstrIndexMap &IndexMap, RegToRangeMap &LiveMap) { in computeDeadMap() argument
436 auto addDeadRanges = [&IndexMap,&LiveMap,&DeadMap] (RegisterRef R) -> void { in computeDeadMap()
437 auto F = LiveMap.find(R); in computeDeadMap()
438 if (F == LiveMap.end() || F->second.empty()) { in computeDeadMap()
485 for (auto &P : LiveMap) in computeDeadMap()