Searched refs:LiveSet (Results 1 – 3 of 3) sorted by relevance
| /src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | AssignmentTrackingAnalysis.cpp | 667 VarFragMap &LiveSet) { in addDef() argument 712 auto FragIt = LiveSet.find(Var); in addDef() 715 if (FragIt == LiveSet.end()) { in addDef() 717 auto P = LiveSet.try_emplace(Var, FragsInMemMap(IntervalMapAlloc)); in addDef() 830 void process(BasicBlock &BB, VarFragMap &LiveSet) { in process() argument 836 addDef(Loc, &DVR, *I.getParent(), LiveSet); in process() 842 addDef(Loc, &I, *I.getParent(), LiveSet); in process() 933 VarFragMap LiveSet = LiveIn[BB]; in run() local 936 process(*BB, LiveSet); in run() 939 if (!varFragMapsAreEqual(LiveOut[BB], LiveSet)) { in run() [all …]
|
| /src/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | RewriteStatepointsForGC.cpp | 174 MapVector<BasicBlock *, SetVector<Value *>> LiveSet; member 204 StatepointLiveSetTy LiveSet; member 318 StatepointLiveSetTy LiveSet; in analyzeParsePointLiveness() local 319 findLiveSetAtInst(Call, OriginalLivenessData, LiveSet, GC); in analyzeParsePointLiveness() 323 for (Value *V : LiveSet) in analyzeParsePointLiveness() 328 dbgs() << "Number live values: " << LiveSet.size() << "\n"; in analyzeParsePointLiveness() 330 Result.LiveSet = LiveSet; in analyzeParsePointLiveness() 1324 StatepointLiveSetTy PotentiallyDerivedPointers = result.LiveSet; in findBasePointers() 1939 const auto &LiveSet = Result.LiveSet; in makeStatepointExplicit() local 1943 LiveVec.reserve(LiveSet.size()); in makeStatepointExplicit() [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
| H A D | DeadArgumentElimination.h | 108 using LiveSet = std::set<RetOrArg>; variable 112 LiveSet LiveValues;
|