Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DAssignmentTrackingAnalysis.cpp665 VarFragMap &LiveSet) { in addDef() argument
710 auto FragIt = LiveSet.find(Var); in addDef()
713 if (FragIt == LiveSet.end()) { in addDef()
715 auto P = LiveSet.try_emplace(Var, FragsInMemMap(IntervalMapAlloc)); in addDef()
828 void process(BasicBlock &BB, VarFragMap &LiveSet) { in process() argument
834 addDef(Loc, &DVR, *I.getParent(), LiveSet); in process()
840 addDef(Loc, &I, *I.getParent(), LiveSet); in process()
931 VarFragMap LiveSet = LiveIn[BB]; in run() local
934 process(*BB, LiveSet); in run()
937 if (!varFragMapsAreEqual(LiveOut[BB], LiveSet)) { in run()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp173 MapVector<BasicBlock *, SetVector<Value *>> LiveSet; member
203 StatepointLiveSetTy LiveSet; member
317 StatepointLiveSetTy LiveSet; in analyzeParsePointLiveness() local
318 findLiveSetAtInst(Call, OriginalLivenessData, LiveSet, GC); in analyzeParsePointLiveness()
322 for (Value *V : LiveSet) in analyzeParsePointLiveness()
327 dbgs() << "Number live values: " << LiveSet.size() << "\n"; in analyzeParsePointLiveness()
329 Result.LiveSet = LiveSet; in analyzeParsePointLiveness()
1330 StatepointLiveSetTy PotentiallyDerivedPointers = result.LiveSet; in findBasePointers()
1945 const auto &LiveSet = Result.LiveSet; in makeStatepointExplicit() local
1949 LiveVec.reserve(LiveSet.size()); in makeStatepointExplicit()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DDeadArgumentElimination.h108 using LiveSet = std::set<RetOrArg>; variable
112 LiveSet LiveValues;