Lines Matching refs:LoaderSecRelEntPtr
76 void printLoaderSectionRelocationEntry(LoadSectionRelocTy *LoaderSecRelEntPtr,
310 LoadSectionRelocTy *LoaderSecRelEntPtr, StringRef SymbolName) { in printLoaderSectionRelocationEntry() argument
311 uint16_t Type = LoaderSecRelEntPtr->Type; in printLoaderSectionRelocationEntry()
328 W.printHex("Virtual Address", LoaderSecRelEntPtr->VirtualAddr); in printLoaderSectionRelocationEntry()
329 W.printNumber("Symbol", SymbolName, LoaderSecRelEntPtr->SymbolIndex); in printLoaderSectionRelocationEntry()
335 W.printNumber("SectionNumber", LoaderSecRelEntPtr->SectionNum); in printLoaderSectionRelocationEntry()
337 W.startLine() << format_hex(LoaderSecRelEntPtr->VirtualAddr, in printLoaderSectionRelocationEntry()
342 << ")" << format_decimal(LoaderSecRelEntPtr->SectionNum, 8) in printLoaderSectionRelocationEntry()
344 << LoaderSecRelEntPtr->SymbolIndex << ")\n"; in printLoaderSectionRelocationEntry()
354 const LoaderSectionRelocationEntry *LoaderSecRelEntPtr = in printLoaderSectionRelocationEntriesHelper() local
364 ++i, ++LoaderSecRelEntPtr) { in printLoaderSectionRelocationEntriesHelper()
366 if (LoaderSecRelEntPtr->SymbolIndex >= FirstSymIdxOfLoaderSec) { in printLoaderSectionRelocationEntriesHelper()
371 (LoaderSecRelEntPtr->SymbolIndex - FirstSymIdxOfLoaderSec) * in printLoaderSectionRelocationEntriesHelper()
387 getImplicitLoaderSectionSymName(LoaderSecRelEntPtr->SymbolIndex); in printLoaderSectionRelocationEntriesHelper()
389 printLoaderSectionRelocationEntry(LoaderSecRelEntPtr, SymbolName); in printLoaderSectionRelocationEntriesHelper()