Searched refs:LocExpr (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/llvm/tools/llvm-objdump/ |
| H A D | SourcePrinter.cpp | 34 if (LocExpr.Range == None) in liveAtAddress() 36 return LocExpr.Range->SectionIndex == Addr.SectionIndex && in liveAtAddress() 37 LocExpr.Range->LowPC <= Addr.Address && in liveAtAddress() 38 LocExpr.Range->HighPC > Addr.Address; in liveAtAddress() 42 DataExtractor Data({LocExpr.Expr.data(), LocExpr.Expr.size()}, in print() 64 for (const DWARFLocationExpression &LocExpr : *Locs) { in addVariable() 65 if (LocExpr.Range) { in addVariable() 66 LiveVariables.emplace_back(LocExpr, VarName, U, FuncDie); in addVariable() 73 DWARFAddressRange(FuncLowPC, FuncHighPC, SectionIndex), LocExpr.Expr}; in addVariable() 128 dbgs() << LV.VarName << " @ " << LV.LocExpr.Range << ": "; in dump()
|
| H A D | SourcePrinter.h | 27 DWARFLocationExpression LocExpr; member 32 LiveVariable(const DWARFLocationExpression &LocExpr, const char *VarName, in LiveVariable() 34 : LocExpr(LocExpr), VarName(VarName), Unit(Unit), FuncDie(FuncDie) {} in LiveVariable()
|
| /llvm-project-15.0.7/bolt/lib/Rewrite/ |
| H A D | DWARFRewriter.cpp | 629 DWARFExpression LocExpr(Data, Unit.getAddressByteSize(), in updateUnitDebugInfo() local 634 for (auto &Expr : LocExpr) { in updateUnitDebugInfo()
|