Searched refs:DbgValueLocEntry (Results 1 – 3 of 3) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| 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 90 friend bool operator==(const DbgValueLocEntry &, const DbgValueLocEntry &); 112 SmallVector<DbgValueLocEntry, 2> ValueLocEntries; 117 DbgValueLoc(const DIExpression *Expr, ArrayRef<DbgValueLocEntry> Locs) in DbgValueLoc() 127 DbgValueLoc(const DIExpression *Expr, ArrayRef<DbgValueLocEntry> Locs, in DbgValueLoc() [all …]
|
| D | DwarfDebug.cpp | 240 SmallVector<DbgValueLocEntry, 4> DbgValueLocEntries; in getDebugLocValue() 245 DbgValueLocEntries.push_back(DbgValueLocEntry(MLoc)); in getDebugLocValue() 248 DbgValueLocEntry(TargetIndexLocation(Op.getIndex(), Op.getOffset()))); in getDebugLocValue() 250 DbgValueLocEntries.push_back(DbgValueLocEntry(Op.getImm())); in getDebugLocValue() 252 DbgValueLocEntries.push_back(DbgValueLocEntry(Op.getFPImm())); in getDebugLocValue() 254 DbgValueLocEntries.push_back(DbgValueLocEntry(Op.getCImm())); in getDebugLocValue() 640 DbgValueLoc DbgLocVal(CombinedExpr, DbgValueLocEntry(Val)); in finishCallSiteParams() 2562 &AP](const DbgValueLocEntry &Entry, in emitDebugLocValue() 2617 if (any_of(Value.getLocEntries(), [](const DbgValueLocEntry &Entry) { in emitDebugLocValue()
|
| D | DwarfCompileUnit.cpp | 735 const DbgValueLocEntry *Entry = DVal->getLocEntries().begin(); in constructVariableDIEImpl() 769 if (any_of(DVal->getLocEntries(), [](const DbgValueLocEntry &Entry) { in constructVariableDIEImpl() 781 auto AddEntry = [&](const DbgValueLocEntry &Entry, in constructVariableDIEImpl()
|