| /openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyDebugValueManager.cpp | 35 DbgValues.push_back(&*DI); in WebAssemblyDebugValueManager() 41 for (MachineInstr *DBI : reverse(DbgValues)) in move() 46 for (auto *DBI : DbgValues) in updateReg() 56 for (MachineInstr *DBI : reverse(DbgValues)) { in clone() 65 for (auto *DBI : DbgValues) { in replaceWithLocal()
|
| H A D | WebAssemblyDebugValueManager.h | 25 SmallVector<MachineInstr *, 2> DbgValues; variable
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | AntiDepBreaker.h | 48 DbgValueVector &DbgValues) = 0; 76 void UpdateDbgValues(const DbgValueVector &DbgValues, MachineInstr *ParentMI, in UpdateDbgValues() argument 81 for (const auto &DV : make_range(DbgValues.crbegin(), DbgValues.crend())) { in UpdateDbgValues()
|
| H A D | DebugHandlerBase.h | 85 DbgValueHistoryMap DbgValues; variable
|
| H A D | DbgEntityHistoryCalculator.h | 151 DbgValueHistoryMap &DbgValues,
|
| H A D | ScheduleDAGInstrs.h | 249 DbgValueVector DbgValues; variable
|
| H A D | SelectionDAG.h | 157 SmallVector<SDDbgValue*, 32> DbgValues; 178 DbgValues.clear(); 187 return DbgValues.empty() && ByvalParmDbgValues.empty() && DbgLabels.empty(); 200 DbgIterator DbgBegin() { return DbgValues.begin(); } 201 DbgIterator DbgEnd() { return DbgValues.end(); }
|
| H A D | MachineInstr.h | 1875 void collectDebugValues(SmallVectorImpl<MachineInstr *> &DbgValues);
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DebugHandlerBase.cpp | 269 assert(DbgValues.empty() && "DbgValues map wasn't cleaned!"); in beginFunction() 272 DbgValues, DbgLabels); in beginFunction() 275 DbgValues.trimLocationRanges(*MF, LScopes, InstOrdering); in beginFunction() 276 LLVM_DEBUG(DbgValues.dump()); in beginFunction() 279 for (const auto &I : DbgValues) { in beginFunction() 411 DbgValues.clear(); in endFunction()
|
| H A D | DbgEntityHistoryCalculator.cpp | 451 DbgValueHistoryMap &DbgValues, in calculateDbgEntityHistory() argument 470 handleNewDebugValue(Var, MI, RegVars, LiveEntries, DbgValues); in calculateDbgEntityHistory() 499 clobberRegisterUses(RegVars, MO.getReg(), DbgValues, LiveEntries, in calculateDbgEntityHistory() 510 clobberRegisterUses(RegVars, *AI, DbgValues, LiveEntries, MI); in calculateDbgEntityHistory() 525 clobberRegisterUses(RegVars, Reg, DbgValues, LiveEntries, MI); in calculateDbgEntityHistory() 541 EntryIndex ClobIdx = DbgValues.startClobber(Pair.first, MBB.back()); in calculateDbgEntityHistory() 545 DbgValueHistoryMap::Entry &Ent = DbgValues.getEntry(Pair.first, Idx); in calculateDbgEntityHistory()
|
| H A D | DwarfDebug.cpp | 1862 for (const auto &I : DbgValues) { in collectEntityInfo() 1872 if (!DbgValues.hasNonEmptyLocation(HistoryMapEntries)) in collectEntityInfo()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | PostRASchedulerList.cpp | 394 EndIndex, DbgValues); in schedule() 688 DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) { in EmitSchedule() 694 DbgValues.clear(); in EmitSchedule()
|
| H A D | CriticalAntiDepBreaker.h | 86 DbgValueVector &DbgValues) override;
|
| H A D | AggressiveAntiDepBreaker.h | 146 DbgValueVector &DbgValues) override;
|
| H A D | CriticalAntiDepBreaker.cpp | 448 DbgValueVector &DbgValues) { in BreakAntiDependencies() argument 668 UpdateDbgValues(DbgValues, Q->second->getParent(), in BreakAntiDependencies()
|
| H A D | MachineInstr.cpp | 2280 SmallVectorImpl<MachineInstr *> &DbgValues) { in collectDebugValues() argument 2291 DbgValues.push_back(&*DI); in collectDebugValues() 2297 SmallVector<MachineInstr *, 2> DbgValues; in changeDebugValuesDefReg() local 2309 DbgValues.push_back(DI); in changeDebugValuesDefReg() 2314 for (auto *DBI : DbgValues) in changeDebugValuesDefReg()
|
| H A D | ScheduleDAGInstrs.cpp | 120 DbgValues.clear(); in ScheduleDAGInstrs() 778 DbgValues.clear(); in buildSchedGraph() 802 DbgValues.emplace_back(DbgMI, &MI); in buildSchedGraph()
|
| H A D | AggressiveAntiDepBreaker.cpp | 743 DbgValueVector &DbgValues) { in BreakAntiDependencies() argument 960 UpdateDbgValues(DbgValues, Q.second.Operand->getParent(), in BreakAntiDependencies()
|
| H A D | MachineScheduler.cpp | 921 DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) { in placeDebugValues()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| H A D | LCSSA.cpp | 240 SmallVector<DbgValueInst *, 4> DbgValues; in formLCSSAForInstructions() local 241 llvm::findDbgValues(DbgValues, I); in formLCSSAForInstructions() 244 for (auto *DVI : DbgValues) { in formLCSSAForInstructions()
|
| H A D | LoopRotationUtils.cpp | 156 SmallVector<DbgValueInst *, 1> DbgValues; in RewriteUsesOfClonedInstructions() local 157 llvm::findDbgValues(DbgValues, OrigHeaderVal); in RewriteUsesOfClonedInstructions() 158 for (auto &DbgValue : DbgValues) { in RewriteUsesOfClonedInstructions()
|
| H A D | Local.cpp | 1469 SmallVector<DbgValueInst *, 1> DbgValues; in PhiHasDebugValue() local 1470 findDbgValues(DbgValues, APN); in PhiHasDebugValue() 1471 for (auto *DVI : DbgValues) { in PhiHasDebugValue()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | DebugInfo.h | 48 void findDbgValues(SmallVectorImpl<DbgValueInst *> &DbgValues, Value *V);
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | GCNIterativeScheduler.cpp | 323 const auto DbgB = DbgValues.begin(), DbgE = DbgValues.end(); in detachSchedule()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | DebugInfo.cpp | 79 void llvm::findDbgValues(SmallVectorImpl<DbgValueInst *> &DbgValues, Value *V) { in findDbgValues() argument 92 DbgValues.push_back(DVI); in findDbgValues() 99 DbgValues.push_back(DVI); in findDbgValues()
|