Lines Matching refs:LiveMap
291 RegToRangeMap &LiveMap) { in computeInitialLiveRanges() argument
303 auto closeRange = [&LastUse,&LastDef,&LiveMap] (RegisterRef R) -> void { in computeInitialLiveRanges()
309 LiveMap[R].add(LD, LU, false, false); in computeInitialLiveRanges()
417 for (auto &P : LiveMap) in computeInitialLiveRanges()
423 RegToRangeMap LiveMap; in computeLiveMap() local
425 computeInitialLiveRanges(IndexMap, LiveMap); in computeLiveMap()
427 << PrintRangeMap(LiveMap, TRI) << '\n'); in computeLiveMap()
428 return LiveMap; in computeLiveMap()
432 InstrIndexMap &IndexMap, RegToRangeMap &LiveMap) { in computeDeadMap() argument
435 auto addDeadRanges = [&IndexMap,&LiveMap,&DeadMap] (RegisterRef R) -> void { in computeDeadMap()
436 auto F = LiveMap.find(R); in computeDeadMap()
437 if (F == LiveMap.end() || F->second.empty()) { in computeDeadMap()
484 for (auto &P : LiveMap) in computeDeadMap()