Home
last modified time | relevance | path

Searched refs:CurrentLiveInEntry (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DAssignmentTrackingAnalysis.cpp602 auto CurrentLiveInEntry = LiveIn.find(&BB); in meet() local
604 if (CurrentLiveInEntry == LiveIn.end()) { in meet()
613 if (!varFragMapsAreEqual(BBLiveIn, CurrentLiveInEntry->second)) { in meet()
615 CurrentLiveInEntry->second = std::move(BBLiveIn); in meet()
2056 auto CurrentLiveInEntry = LiveIn.find(&BB); in join() local
2060 if (CurrentLiveInEntry == LiveIn.end()) in join()
2062 else if (PredLiveOut != CurrentLiveInEntry->second) in join()
2063 CurrentLiveInEntry->second = PredLiveOut; in join()
2085 auto CurrentLiveInEntry = LiveIn.find(&BB); in join() local
2088 if (CurrentLiveInEntry == LiveIn.end()) in join()
[all …]