Home
last modified time | relevance | path

Searched refs:FnVarLocs (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DAssignmentTrackingAnalysis.cpp375 FunctionVarLocsBuilder *FnVarLocs; member in __anon3afac2c40211::MemLocFragmentFill
668 DebugVariable DbgVar = FnVarLocs->getVariable(VarLoc.VariableID); in addDef()
834 if (const auto *Locs = FnVarLocs->getWedge(&DVR)) { in process()
840 if (const auto *Locs = FnVarLocs->getWedge(&I)) { in process()
875 void run(FunctionVarLocsBuilder *FnVarLocs) { in run() argument
879 this->FnVarLocs = FnVarLocs; in run()
978 FnVarLocs->addVarLoc(InsertBefore, Var, Expr, FragMemLoc.DL, in run()
1298 FunctionVarLocsBuilder *FnVarLocs; member in __anon3afac2c40211::AssignmentTrackingLowering
1309 return static_cast<VariableID>(FnVarLocs->insertVariable(Var)); in getVariableID()
1385 bool emitPromotedVarLocs(FunctionVarLocsBuilder *FnVarLocs);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp507 FunctionVarLocs const *FnVarLocs = nullptr; in initializeAnalysisResults() local
509 FnVarLocs = &FAM.getResult<DebugAssignmentTrackingAnalysis>(Fn); in initializeAnalysisResults()
512 CurDAG->init(*MF, *ORE, MFAM, LibInfo, UA, PSI, BFI, FnVarLocs); in initializeAnalysisResults()
558 FunctionVarLocs const *FnVarLocs = nullptr; in initializeAnalysisResults() local
560 FnVarLocs = MFP.getAnalysis<AssignmentTrackingAnalysis>().getResults(); in initializeAnalysisResults()
565 CurDAG->init(*MF, *ORE, &MFP, LibInfo, UA, PSI, BFI, FnVarLocs); in initializeAnalysisResults()
1592 FunctionVarLocs const *FnVarLocs) { in processSingleLocVars() argument
1593 for (auto It = FnVarLocs->single_locs_begin(), in processSingleLocVars()
1594 End = FnVarLocs->single_locs_end(); in processSingleLocVars()
1598 FnVarLocs->getDILocalVariable(It->VariableID), It->DL); in processSingleLocVars()
H A DSelectionDAGBuilder.cpp1235 if (FunctionVarLocs const *FnVarLocs = DAG.getFunctionVarLocs()) { in visitDbgInfo() local
1238 for (auto It = FnVarLocs->locs_begin(&I), End = FnVarLocs->locs_end(&I); in visitDbgInfo()
1240 auto *Var = FnVarLocs->getDILocalVariable(It->VariableID); in visitDbgInfo()
1253 FnVarLocs->getDILocalVariable(It->VariableID), in visitDbgInfo()
H A DSelectionDAG.cpp1348 FnVarLocs = VarLocs; in init()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h232 const FunctionVarLocs *FnVarLocs = nullptr;
462 BlockFrequencyInfo *BFIin, FunctionVarLocs const *FnVarLocs);
468 FunctionVarLocs const *FnVarLocs) {
469 init(NewMF, NewORE, nullptr, LibraryInfo, UA, PSIin, BFIin, FnVarLocs);
498 const FunctionVarLocs *getFunctionVarLocs() const { return FnVarLocs; }