Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DAssignmentTrackingAnalysis.cpp569 VarFragMap &LiveSet) { in addDef() argument
614 auto FragIt = LiveSet.find(Var); in addDef()
617 if (FragIt == LiveSet.end()) { in addDef()
619 auto P = LiveSet.try_emplace(Var, FragsInMemMap(IntervalMapAlloc)); in addDef()
727 void process(BasicBlock &BB, VarFragMap &LiveSet) { in process() argument
732 addDef(Loc, I, *I.getParent(), LiveSet); in process()
821 VarFragMap LiveSet = LiveIn[BB]; in run() local
824 process(*BB, LiveSet); in run()
827 if (!varFragMapsAreEqual(LiveOut[BB], LiveSet)) { in run()
830 LiveOut[BB] = std::move(LiveSet); in run()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp241 MapVector<BasicBlock *, SetVector<Value *>> LiveSet; member
271 StatepointLiveSetTy LiveSet; member
386 StatepointLiveSetTy LiveSet; in analyzeParsePointLiveness() local
387 findLiveSetAtInst(Call, OriginalLivenessData, LiveSet); in analyzeParsePointLiveness()
391 for (Value *V : LiveSet) in analyzeParsePointLiveness()
396 dbgs() << "Number live values: " << LiveSet.size() << "\n"; in analyzeParsePointLiveness()
398 Result.LiveSet = LiveSet; in analyzeParsePointLiveness()
1366 StatepointLiveSetTy PotentiallyDerivedPointers = result.LiveSet; in findBasePointers()
1963 const auto &LiveSet = Result.LiveSet; in makeStatepointExplicit() local
1967 LiveVec.reserve(LiveSet.size()); in makeStatepointExplicit()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/IPO/
H A DDeadArgumentElimination.h108 using LiveSet = std::set<RetOrArg>; variable
112 LiveSet LiveValues;