Home
last modified time | relevance | path

Searched refs:LocExprAddrAndRelocAdjustment (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDependencyTracker.cpp742 std::pair<bool, std::optional<int64_t>> LocExprAddrAndRelocAdjustment = in isLiveVariableEntry() local
746 if (LocExprAddrAndRelocAdjustment.first) in isLiveVariableEntry()
749 if (!LocExprAddrAndRelocAdjustment.second) in isLiveVariableEntry()
H A DDWARFLinkerCompileUnit.cpp1387 std::pair<bool, std::optional<int64_t>> LocExprAddrAndRelocAdjustment = in createPlainDIEandCloneAttributes() local
1391 HasLocationExpressionAddress = LocExprAddrAndRelocAdjustment.first; in createPlainDIEandCloneAttributes()
1392 if (LocExprAddrAndRelocAdjustment.first && in createPlainDIEandCloneAttributes()
1393 LocExprAddrAndRelocAdjustment.second) in createPlainDIEandCloneAttributes()
1394 VarAddressAdjustment = *LocExprAddrAndRelocAdjustment.second; in createPlainDIEandCloneAttributes()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinker.cpp516 std::pair<bool, std::optional<int64_t>> LocExprAddrAndRelocAdjustment = in shouldKeepVariableDIE() local
519 if (LocExprAddrAndRelocAdjustment.first) in shouldKeepVariableDIE()
522 if (!LocExprAddrAndRelocAdjustment.second) in shouldKeepVariableDIE()
525 MyInfo.AddrAdjust = *LocExprAddrAndRelocAdjustment.second; in shouldKeepVariableDIE()