Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h111 class DbgValueLoc {
120 DbgValueLoc(const DIExpression *Expr, ArrayRef<DbgValueLocEntry> Locs) in DbgValueLoc() function
123 DbgValueLoc(const DIExpression *Expr, ArrayRef<DbgValueLocEntry> Locs, in DbgValueLoc() function
135 DbgValueLoc(const DIExpression *Expr, DbgValueLocEntry Loc) in DbgValueLoc() function
144 bool isEquivalent(const DbgValueLoc &Other) const { in isEquivalent()
169 friend bool operator==(const DbgValueLoc &, const DbgValueLoc &);
170 friend bool operator<(const DbgValueLoc &, const DbgValueLoc &);
190 SmallVector<DbgValueLoc, 1> Values;
197 ArrayRef<DbgValueLoc> Vals) in DebugLocEntry()
221 ArrayRef<DbgValueLoc> getValues() const { return Values; } in getValues()
[all …]
H A DDwarfDebug.h132 std::unique_ptr<DbgValueLoc> ValueLoc;
136 explicit Single(DbgValueLoc ValueLoc);
138 const DbgValueLoc &getValueLoc() const { return *ValueLoc; } in getValueLoc()
319 DbgValueLoc Value; ///< Corresponding location for the parameter value at
322 DbgCallSiteParam(unsigned Reg, DbgValueLoc Val) in DbgCallSiteParam()
328 DbgValueLoc getValue() const { return Value; } in getValue()
933 const DbgValueLoc &Value,
H A DDwarfDebug.cpp239 static DbgValueLoc getDebugLocValue(const MachineInstr *MI) { in getDebugLocValue()
269 return DbgValueLoc(Expr, DbgValueLocEntries, IsVariadic); in getDebugLocValue()
286 Loc::Single::Single(DbgValueLoc ValueLoc) in Single()
287 : ValueLoc(std::make_unique<DbgValueLoc>(ValueLoc)), in Single()
629 DbgValueLoc DbgLocVal(CombinedExpr, DbgValueLocEntry(Val)); in finishCallSiteParams()
1703 std::pair<DbgValueHistoryMap::EntryIndex, DbgValueLoc>; in buildLocationList()
1775 SmallVector<DbgValueLoc, 4> Values; in buildLocationList()
3075 const DbgValueLoc &Value, in emitDebugLocValue()
3179 const DbgValueLoc &Value = Values[0]; in finalize()
3182 assert(llvm::all_of(Values, [](DbgValueLoc P) { in finalize()
H A DDwarfCompileUnit.cpp813 const DbgValueLoc *DVal = &Single.getValueLoc(); in applyConcreteDbgVariableAttributes()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp154 using DbgValueLoc = std::pair<SlotIndex, MachineInstr *>; typedef in __anonf9586a8a0111::RegisterCoalescer
155 DenseMap<Register, std::vector<DbgValueLoc>> DbgVRegToValues;