Lines Matching refs:LiveMap
290 RegToRangeMap &LiveMap) { in computeInitialLiveRanges() argument
302 auto closeRange = [&LastUse,&LastDef,&LiveMap] (RegisterRef R) -> void { in computeInitialLiveRanges()
308 LiveMap[R].add(LD, LU, false, false); in computeInitialLiveRanges()
414 for (auto &P : LiveMap) in computeInitialLiveRanges()
420 RegToRangeMap LiveMap; in computeLiveMap() local
422 computeInitialLiveRanges(IndexMap, LiveMap); in computeLiveMap()
424 << PrintRangeMap(LiveMap, TRI) << '\n'); in computeLiveMap()
425 return LiveMap; in computeLiveMap()
429 InstrIndexMap &IndexMap, RegToRangeMap &LiveMap) { in computeDeadMap() argument
432 auto addDeadRanges = [&IndexMap,&LiveMap,&DeadMap] (RegisterRef R) -> void { in computeDeadMap()
433 auto F = LiveMap.find(R); in computeDeadMap()
434 if (F == LiveMap.end() || F->second.empty()) { in computeDeadMap()
481 for (auto &P : LiveMap) in computeDeadMap()