Home
last modified time | relevance | path

Searched refs:DbgValues (Results 1 – 25 of 32) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyDebugValueManager.cpp43 DbgValues.push_back(&*MI); in WebAssemblyDebugValueManager()
65 if (DbgValues.empty()) in getSinkableDebugValues()
114 if (!llvm::is_contained(DbgValues, DV)) { in getSinkableDebugValues()
132 for (auto *DV : DbgValues) { in getSinkableDebugValues()
288 if (DbgValues.empty()) in sink()
338 for (MachineInstr *DV : DbgValues) in sink()
341 DbgValues.swap(NewDbgValues); in sink()
376 if (DbgValues.empty()) in cloneSink()
396 for (auto *DBI : DbgValues) in updateReg()
405 for (auto *DBI : DbgValues) { in replaceWithLocal()
[all …]
H A DWebAssemblyDebugValueManager.h30 SmallVector<MachineInstr *, 1> DbgValues; variable
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAntiDepBreaker.h47 DbgValueVector &DbgValues) = 0;
75 void UpdateDbgValues(const DbgValueVector &DbgValues, MachineInstr *ParentMI, in UpdateDbgValues() argument
80 for (const auto &DV : make_range(DbgValues.crbegin(), DbgValues.crend())) { in UpdateDbgValues()
H A DDebugHandlerBase.h85 DbgValueHistoryMap DbgValues; variable
H A DDbgEntityHistoryCalculator.h151 DbgValueHistoryMap &DbgValues,
H A DScheduleDAGInstrs.h250 DbgValueVector DbgValues; variable
H A DSelectionDAG.h161 SmallVector<SDDbgValue*, 32> DbgValues;
182 DbgValues.clear();
191 return DbgValues.empty() && ByvalParmDbgValues.empty() && DbgLabels.empty();
204 DbgIterator DbgBegin() { return DbgValues.begin(); }
205 DbgIterator DbgEnd() { return DbgValues.end(); }
H A DMachineInstr.h1928 void collectDebugValues(SmallVectorImpl<MachineInstr *> &DbgValues);
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDebugHandlerBase.cpp270 assert(DbgValues.empty() && "DbgValues map wasn't cleaned!"); in beginFunction()
273 DbgValues, DbgLabels); in beginFunction()
276 DbgValues.trimLocationRanges(*MF, LScopes, InstOrdering); in beginFunction()
277 LLVM_DEBUG(DbgValues.dump(MF->getName())); in beginFunction()
280 for (const auto &I : DbgValues) { in beginFunction()
412 DbgValues.clear(); in endFunction()
H A DDbgEntityHistoryCalculator.cpp458 DbgValueHistoryMap &DbgValues, in calculateDbgEntityHistory() argument
477 handleNewDebugValue(Var, MI, RegVars, LiveEntries, DbgValues); in calculateDbgEntityHistory()
506 clobberRegisterUses(RegVars, MO.getReg(), DbgValues, LiveEntries, in calculateDbgEntityHistory()
517 clobberRegisterUses(RegVars, *AI, DbgValues, LiveEntries, MI); in calculateDbgEntityHistory()
532 clobberRegisterUses(RegVars, Reg, DbgValues, LiveEntries, MI); in calculateDbgEntityHistory()
548 EntryIndex ClobIdx = DbgValues.startClobber(Pair.first, MBB.back()); in calculateDbgEntityHistory()
552 DbgValueHistoryMap::Entry &Ent = DbgValues.getEntry(Pair.first, Idx); in calculateDbgEntityHistory()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSSAUpdater.h126 SmallVectorImpl<DbgValueInst *> &DbgValues);
127 void UpdateDebugValues(Instruction *I, SmallVectorImpl<DPValue *> &DbgValues);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp201 SmallVector<DbgValueInst *, 4> DbgValues; in UpdateDebugValues() local
203 llvm::findDbgValues(DbgValues, I, &DPValues); in UpdateDebugValues()
204 for (auto &DbgValue : DbgValues) { in UpdateDebugValues()
217 SmallVectorImpl<DbgValueInst *> &DbgValues) { in UpdateDebugValues() argument
218 for (auto &DbgValue : DbgValues) { in UpdateDebugValues()
H A DLCSSA.cpp244 SmallVector<DbgValueInst *, 4> DbgValues; in formLCSSAForInstructions() local
246 llvm::findDbgValues(DbgValues, I, &DPValues); in formLCSSAForInstructions()
249 for (auto *DVI : DbgValues) { in formLCSSAForInstructions()
H A DLoopRotationUtils.cpp161 SmallVector<DbgValueInst *, 1> DbgValues; in RewriteUsesOfClonedInstructions() local
163 llvm::findDbgValues(DbgValues, OrigHeaderVal, &DPValues); in RewriteUsesOfClonedInstructions()
164 for (auto &DbgValue : DbgValues) { in RewriteUsesOfClonedInstructions()
H A DLocal.cpp1572 SmallVector<DbgValueInst *, 1> DbgValues; in PhiHasDebugValue() local
1574 findDbgValues(DbgValues, APN, &DPValues); in PhiHasDebugValue()
1575 for (auto *DVI : DbgValues) { in PhiHasDebugValue()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DPostRASchedulerList.cpp393 EndIndex, DbgValues); in schedule()
687 DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) { in EmitSchedule()
693 DbgValues.clear(); in EmitSchedule()
H A DCriticalAntiDepBreaker.h86 DbgValueVector &DbgValues) override;
H A DAggressiveAntiDepBreaker.h149 DbgValueVector &DbgValues) override;
H A DCriticalAntiDepBreaker.cpp441 DbgValueVector &DbgValues) { in BreakAntiDependencies() argument
661 UpdateDbgValues(DbgValues, Q->second->getParent(), in BreakAntiDependencies()
H A DScheduleDAGInstrs.cpp120 DbgValues.clear(); in ScheduleDAGInstrs()
789 DbgValues.clear(); in buildSchedGraph()
813 DbgValues.emplace_back(DbgMI, &MI); in buildSchedGraph()
H A DMachineInstr.cpp2316 SmallVectorImpl<MachineInstr *> &DbgValues) { in collectDebugValues() argument
2327 DbgValues.push_back(&*DI); in collectDebugValues()
2333 SmallVector<MachineInstr *, 2> DbgValues; in changeDebugValuesDefReg() local
2345 DbgValues.push_back(DI); in changeDebugValuesDefReg()
2350 for (auto *DBI : DbgValues) in changeDebugValuesDefReg()
H A DAggressiveAntiDepBreaker.cpp734 DbgValueVector &DbgValues) { in BreakAntiDependencies() argument
929 UpdateDbgValues(DbgValues, Q.second.Operand->getParent(), in BreakAntiDependencies()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNIterativeScheduler.cpp323 const auto DbgB = DbgValues.begin(), DbgE = DbgValues.end(); in detachSchedule()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp1960 SmallVector<DbgValueInst *, 4> DbgValues; in updateSSA() local
1978 findDbgValues(DbgValues, &I, &DPValues); in updateSSA()
1979 llvm::erase_if(DbgValues, [&](const DbgValueInst *DbgVal) { in updateSSA()
1987 if (UsesToRename.empty() && DbgValues.empty() && DPValues.empty()) in updateSSA()
2000 if (!DbgValues.empty() || !DPValues.empty()) { in updateSSA()
2001 SSAUpdate.UpdateDebugValues(&I, DbgValues); in updateSSA()
2003 DbgValues.clear(); in updateSSA()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfo.h48 void findDbgValues(SmallVectorImpl<DbgValueInst *> &DbgValues,

12