HomeSort by: relevance | last modified time | path
    Searched refs:ObjectAddress (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
DebugMap.cpp 46 bool DebugMapObject::addSymbol(StringRef Name, Optional<uint64_t> ObjectAddress,
49 std::make_pair(Name, SymbolMapping(ObjectAddress, LinkedAddress, Size)));
51 if (ObjectAddress && InsertResult.second)
52 AddressToMapping[*ObjectAddress] = &*InsertResult.first;
69 if (Sym.second.ObjectAddress)
70 OS << format("\t%016" PRIx64, uint64_t(*Sym.second.ObjectAddress));
166 io.mapOptional("objAddr", s.second.ObjectAddress);
283 if (Mapping.ObjectAddress)
284 ObjAddress = *Mapping.ObjectAddress;
DwarfLinkerForBinary.h 133 if (Mapping.Size && Mapping.ObjectAddress)
134 AddressRanges[*Mapping.ObjectAddress] = ObjFileAddressRange(
135 *Mapping.ObjectAddress + Mapping.Size,
136 int64_t(Mapping.BinaryAddress) - *Mapping.ObjectAddress);
DebugMap.h 69 /// DIE.relocate(Sym->ObjectAddress, Sym->BinaryAddress);
138 Optional<yaml::Hex64> ObjectAddress;
146 ObjectAddress = *ObjectAddr;
159 bool addSymbol(StringRef SymName, Optional<uint64_t> ObjectAddress,
DwarfLinkerForBinary.cpp 638 const uint64_t ObjectAddress = Mapping.ObjectAddress
639 ? uint64_t(*Mapping.ObjectAddress)
643 << format("0x%016" PRIx64 " => 0x%016" PRIx64 "\n", ObjectAddress,
650 if (Reloc.Mapping->getValue().ObjectAddress)
651 Info.AddrAdjust -= uint64_t(*Reloc.Mapping->getValue().ObjectAddress);

Completed in 34 milliseconds