Searched refs:LoaderSectionAddr (Results 1 - 2 of 2) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DXCOFFDumper.cpp161 uintptr_t LoaderSectionAddr = LoaderSectionAddrOrError.get(); local
163 if (LoaderSectionAddr == 0)
168 printLoaderSectionHeader(LoaderSectionAddr);
171 printLoaderSectionSymbols(LoaderSectionAddr);
174 printLoaderSectionRelocationEntries(LoaderSectionAddr);
179 void XCOFFDumper::printLoaderSectionHeader(uintptr_t LoaderSectionAddr) { argument
196 reinterpret_cast<const LoaderSectionHeader64 *>(LoaderSectionAddr);
202 reinterpret_cast<const LoaderSectionHeader32 *>(LoaderSectionAddr);
227 void XCOFFDumper::printLoaderSectionSymbolsHelper(uintptr_t LoaderSectionAddr) { argument
229 reinterpret_cast<const LoaderSectionHeader *>(LoaderSectionAddr);
265 printLoaderSectionSymbols(uintptr_t LoaderSectionAddr) argument
350 printLoaderSectionRelocationEntriesHelper( uintptr_t LoaderSectionAddr) argument
393 printLoaderSectionRelocationEntries( uintptr_t LoaderSectionAddr) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp1102 uintptr_t LoaderSectionAddr = LoaderSectionAddrOrError.get();
1103 if (!LoaderSectionAddr)
1110 viewAs<LoaderSectionHeader64>(LoaderSectionAddr);
1115 viewAs<LoaderSectionHeader32>(LoaderSectionAddr);
1122 reinterpret_cast<void *>(LoaderSectionAddr + OffsetToImportFileTable),
1128 Twine::utohexstr(LoaderSectionAddr + OffsetToImportFileTable) +
1136 Twine::utohexstr(LoaderSectionAddr + OffsetToImportFileTable) +

Completed in 116 milliseconds