Home | History | Annotate | Download | only in llvm-readobj

Lines Matching defs:Address

19 //        |         Function Entry Address        |
41 // | Function Entry Address |
43 // | Exception Data Entry Address |
47 // first resolve the exception data entry address. This structure
96 static std::string formatSymbol(StringRef Name, uint64_t Address,
105 OS << format("+0x%X (0x%" PRIX64 ")", Offset, Address);
107 OS << format("(0x%" PRIX64 ")", Address);
109 OS << format("0x%" PRIX64, Address);
189 uint64_t Address = Section.getAddress();
192 if (VA >= Address && (VA - Address) <= Size)
207 Expected<uint64_t> Address = Symbol.getAddress();
208 if (!Address)
209 return errorToErrorCode(Address.takeError());
210 if (*Address == VA)
562 const uint32_t Address = XData.ExceptionHandlerRVA();
571 Symbol = getSymbol(COFF, Address, /*FunctionOnly=*/true);
583 SW.printString("Routine", formatSymbol(*Name, Address));
657 uint64_t Address = *AddressOrErr;
659 SW.printString("ExceptionRecord", formatSymbol(*Name, Address));
669 return dumpXDataRecord(COFF, *SI, FunctionAddress, Address);
675 uint64_t Address = PEHeader->ImageBase + RF.ExceptionInformationRVA();
676 SW.printString("ExceptionRecord", formatSymbol("", Address));