Home
last modified time | relevance | path

Searched refs:LocExpr (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DSourcePrinter.cpp30 if (LocExpr.Range == std::nullopt) in liveAtAddress()
32 return LocExpr.Range->SectionIndex == Addr.SectionIndex && in liveAtAddress()
33 LocExpr.Range->LowPC <= Addr.Address && in liveAtAddress()
34 LocExpr.Range->HighPC > Addr.Address; in liveAtAddress()
38 DataExtractor Data({LocExpr.Expr.data(), LocExpr.Expr.size()}, in print()
70 for (const DWARFLocationExpression &LocExpr : *Locs) { in addVariable()
71 if (LocExpr.Range) { in addVariable()
72 LiveVariables.emplace_back(LocExpr, VarName, U, FuncDie); in addVariable()
74 // If the LocExpr doe in addVariable()
[all...]
H A DSourcePrinter.h28 DWARFLocationExpression LocExpr; member
33 LiveVariable(const DWARFLocationExpression &LocExpr, const char *VarName, in LiveVariable()
35 : LocExpr(LocExpr), VarName(VarName), Unit(Unit), FuncDie(FuncDie) {} in LiveVariable()