Lines Matching refs:LiveMap
284 RegToRangeMap &LiveMap) { in computeInitialLiveRanges() argument
297 auto closeRange = [&LastUse,&LastDef,&LiveMap] (RegisterRef R) -> void { in computeInitialLiveRanges()
303 LiveMap[R].add(LD, LU, false, false); in computeInitialLiveRanges()
362 for (auto &P : LiveMap) in computeInitialLiveRanges()
369 RegToRangeMap LiveMap; in computeLiveMap() local
371 computeInitialLiveRanges(IndexMap, LiveMap); in computeLiveMap()
373 << PrintRangeMap(LiveMap, TRI) << '\n'); in computeLiveMap()
374 return LiveMap; in computeLiveMap()
379 InstrIndexMap &IndexMap, RegToRangeMap &LiveMap) { in computeDeadMap() argument
382 auto addDeadRanges = [&IndexMap,&LiveMap,&DeadMap] (RegisterRef R) -> void { in computeDeadMap()
383 auto F = LiveMap.find(R); in computeDeadMap()
384 if (F == LiveMap.end() || F->second.empty()) { in computeDeadMap()
431 for (auto &P : LiveMap) in computeDeadMap()