Searched refs:DbgValueLocEntry (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DebugLocEntry.h | 40 class DbgValueLocEntry { 67 DbgValueLocEntry(int64_t i) : EntryKind(E_Integer) { Constant.Int = i; } in DbgValueLocEntry() function 68 DbgValueLocEntry(const ConstantFP *CFP) : EntryKind(E_ConstantFP) { in DbgValueLocEntry() function 71 DbgValueLocEntry(const ConstantInt *CIP) : EntryKind(E_ConstantInt) { in DbgValueLocEntry() function 74 DbgValueLocEntry(MachineLocation Loc) : EntryKind(E_Location), Loc(Loc) {} in DbgValueLocEntry() function 75 DbgValueLocEntry(TargetIndexLocation Loc) in DbgValueLocEntry() function 93 friend bool operator==(const DbgValueLocEntry &, const DbgValueLocEntry &); 115 SmallVector<DbgValueLocEntry, 2> ValueLocEntries; 120 DbgValueLoc(const DIExpression *Expr, ArrayRef<DbgValueLocEntry> Locs) in DbgValueLoc() 124 DbgValueLoc(const DIExpression *Expr, ArrayRef<DbgValueLocEntry> Locs, in DbgValueLoc() [all …]
|
| H A D | DwarfDebug.cpp | 238 SmallVector<DbgValueLocEntry, 4> DbgValueLocEntries; in getDebugLocValue() 243 DbgValueLocEntries.push_back(DbgValueLocEntry(MLoc)); in getDebugLocValue() 246 DbgValueLocEntry(TargetIndexLocation(Op.getIndex(), Op.getOffset()))); in getDebugLocValue() 248 DbgValueLocEntries.push_back(DbgValueLocEntry(Op.getImm())); in getDebugLocValue() 250 DbgValueLocEntries.push_back(DbgValueLocEntry(Op.getFPImm())); in getDebugLocValue() 252 DbgValueLocEntries.push_back(DbgValueLocEntry(Op.getCImm())); in getDebugLocValue() 640 DbgValueLoc DbgLocVal(CombinedExpr, DbgValueLocEntry(Val)); in finishCallSiteParams() 2618 &AP](const DbgValueLocEntry &Entry, in emitDebugLocValue() 2673 if (any_of(Value.getLocEntries(), [](const DbgValueLocEntry &Entry) { in emitDebugLocValue()
|
| H A D | DwarfCompileUnit.cpp | 749 const DbgValueLocEntry *Entry = DVal->getLocEntries().begin(); in constructVariableDIEImpl() 783 if (any_of(DVal->getLocEntries(), [](const DbgValueLocEntry &Entry) { in constructVariableDIEImpl() 795 auto AddEntry = [&](const DbgValueLocEntry &Entry, in constructVariableDIEImpl()
|