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.cpp601 auto CurrentLiveInEntry = LiveIn.find(&BB); in meet() local
603 if (CurrentLiveInEntry == LiveIn.end()) { in meet()
614 CurrentLiveInEntry->second = std::move(BBLiveIn); in meet()
2049 auto CurrentLiveInEntry = LiveIn.find(&BB); in join() local
2053 if (CurrentLiveInEntry == LiveIn.end()) in join()
2055 else if (PredLiveOut != CurrentLiveInEntry->second) in join()
2056 CurrentLiveInEntry->second = PredLiveOut; in join()
2078 auto CurrentLiveInEntry = LiveIn.find(&BB); in join() local
2081 if (CurrentLiveInEntry == LiveIn.end()) in join()
2083 else if (BBLiveIn != CurrentLiveInEntry->second) in join()
[all …]