Searched refs:toAddress (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFFormValue.h261 inline Optional<uint64_t> toAddress(const Optional<DWARFFormValue> &V) { function in namespace:llvm::dwarf
280 inline uint64_t toAddress(const Optional<DWARFFormValue> &V, uint64_t Default) { function in namespace:llvm::dwarf
281 return toAddress(V).getValueOr(Default);
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DArchHandler_x86.cpp362 uint32_t toAddress; local
372 toAddress = reloc1.value;
375 if (auto ec = atomFromAddr(0, toAddress, target, &offsetInTo))
384 *addend = toAddress - value - fromAddress;
395 uint32_t ta = fromAddress + value - toAddress;
399 *addend = fromAddress + value - toAddress;
H A DArchHandler_arm.cpp794 uint32_t toAddress; local
801 toAddress = reloc1.value;
803 if (auto ec = atomFromAddr(0, toAddress, target, &offsetInTo))
812 *addend = (int32_t)(value - (toAddress - fixupAddress));
814 toAddress = reloc1.value;
816 if (auto ec = atomFromAddr(0, toAddress, target, &offsetInTo))
851 int64_t ta = (int64_t) value - (toAddress - fromAddress);
889 toAddress = reloc1.value;
892 toAddress = value;
895 if (auto ec = atomFromAddr(sectIndex, toAddress, targe
[all...]

Completed in 124 milliseconds