Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/
H A DAssignmentTrackingAnalysis.cpp667 VarFragMap &LiveSet) { in addDef()
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()
836 addDef(Loc, &DVR, *I.getParent(), LiveSet); in process()
842 addDef(Loc, &I, *I.getParent(), LiveSet); in process()
931 // the terminator LiveSet is the LiveOut set for BB. in run()
933 VarFragMap LiveSet = LiveIn[BB]; in run()
936 process(*BB, LiveSet); in run()
666 addDef(const VarLocInfo & VarLoc,VarLocInsertPt Before,BasicBlock & BB,VarFragMap & LiveSet) addDef() argument
829 process(BasicBlock & BB,VarFragMap & LiveSet) process() argument
932 VarFragMap LiveSet = LiveIn[BB]; run() local
1407 setLocKind(BlockInfo * LiveSet,VariableID Var,LocKind K) setLocKind() argument
1409 __anon504de5160402(BlockInfo *LiveSet, VariableID Var, LocKind K) setLocKind() argument
1421 getLocKind(BlockInfo * LiveSet,VariableID Var) getLocKind() argument
1425 addMemDef(BlockInfo * LiveSet,VariableID Var,const Assignment & AV) addMemDef() argument
1438 addDbgDef(BlockInfo * LiveSet,VariableID Var,const Assignment & AV) addDbgDef() argument
1467 hasVarWithAssignment(BlockInfo * LiveSet,BlockInfo::AssignmentKind Kind,VariableID Var,const Assignment & AV) hasVarWithAssignment() argument
1597 processNonDbgInstruction(Instruction & I,AssignmentTrackingLowering::BlockInfo * LiveSet) processNonDbgInstruction() argument
1605 processUntaggedInstruction(Instruction & I,AssignmentTrackingLowering::BlockInfo * LiveSet) processUntaggedInstruction() argument
1674 processTaggedInstruction(Instruction & I,AssignmentTrackingLowering::BlockInfo * LiveSet) processTaggedInstruction() argument
1764 processDbgAssign(AssignRecord Assign,BlockInfo * LiveSet) processDbgAssign() argument
1812 processDbgValue(PointerUnion<DbgValueInst *,DPValue * > DbgValueRecord,BlockInfo * LiveSet) processDbgValue() argument
1848 processDbgInstruction(DbgInfoIntrinsic & I,AssignmentTrackingLowering::BlockInfo * LiveSet) processDbgInstruction() argument
1863 processDPValue(DPValue & DPV,AssignmentTrackingLowering::BlockInfo * LiveSet) processDPValue() argument
1888 process(BasicBlock & BB,BlockInfo * LiveSet) process() argument
2345 BlockInfo LiveSet = LiveIn[BB]; run() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp174 MapVector<BasicBlock *, SetVector<Value *>> LiveSet; member
204 StatepointLiveSetTy LiveSet; member
215 /// They are not included into 'LiveSet' field.
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()
1938 const auto &LiveSet = Result.LiveSet; makeStatepointExplicit() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DDeadArgumentElimination.h108 using LiveSet = std::set<RetOrArg>; variable
112 LiveSet LiveValues;