Home
last modified time | relevance | path

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

/src/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()
/src/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinker.cpp527 std::pair<bool, std::optional<int64_t>> LocExprAddrAndRelocAdjustment = in shouldKeepVariableDIE() local
530 if (LocExprAddrAndRelocAdjustment.first) in shouldKeepVariableDIE()
533 if (!LocExprAddrAndRelocAdjustment.second) in shouldKeepVariableDIE()
536 MyInfo.AddrAdjust = *LocExprAddrAndRelocAdjustment.second; in shouldKeepVariableDIE()