OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ObjectAddress
(Results
1 - 6
of
6
) sorted by null
/external/llvm/tools/dsymutil/
DebugMap.cpp
27
bool DebugMapObject::addSymbol(StringRef Name, Optional<uint64_t>
ObjectAddress
,
30
std::make_pair(Name, SymbolMapping(
ObjectAddress
, LinkedAddress, Size)));
32
if (
ObjectAddress
&& InsertResult.second)
33
AddressToMapping[*
ObjectAddress
] = &*InsertResult.first;
50
if (Sym.second.
ObjectAddress
)
51
OS << format("\t%016" PRIx64, uint64_t(*Sym.second.
ObjectAddress
));
142
io.mapOptional("objAddr", s.second.
ObjectAddress
);
249
if (Mapping.
ObjectAddress
)
250
ObjAddress = *Mapping.
ObjectAddress
;
DebugMap.h
62
/// DIE.relocate(Sym->
ObjectAddress
, Sym->BinaryAddress);
120
Optional<yaml::Hex64>
ObjectAddress
;
127
ObjectAddress
= *ObjectAddr;
138
bool addSymbol(llvm::StringRef SymName, Optional<uint64_t>
ObjectAddress
,
DwarfLinker.cpp
[
all
...]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DebugMap.cpp
47
bool DebugMapObject::addSymbol(StringRef Name, Optional<uint64_t>
ObjectAddress
,
50
std::make_pair(Name, SymbolMapping(
ObjectAddress
, LinkedAddress, Size)));
52
if (
ObjectAddress
&& InsertResult.second)
53
AddressToMapping[*
ObjectAddress
] = &*InsertResult.first;
70
if (Sym.second.
ObjectAddress
)
71
OS << format("\t%016" PRIx64, uint64_t(*Sym.second.
ObjectAddress
));
167
io.mapOptional("objAddr", s.second.
ObjectAddress
);
275
if (Mapping.
ObjectAddress
)
276
ObjAddress = *Mapping.
ObjectAddress
;
DebugMap.h
70
/// DIE.relocate(Sym->
ObjectAddress
, Sym->BinaryAddress);
135
Optional<yaml::Hex64>
ObjectAddress
;
143
ObjectAddress
= *ObjectAddr;
156
bool addSymbol(StringRef SymName, Optional<uint64_t>
ObjectAddress
,
DwarfLinker.cpp
315
if (Mapping.Size && Mapping.
ObjectAddress
)
316
Context.Ranges[*Mapping.
ObjectAddress
] = DebugMapObjectRange(
317
*Mapping.
ObjectAddress
+ Mapping.Size,
318
int64_t(Mapping.BinaryAddress) - *Mapping.
ObjectAddress
);
495
uint64_t
ObjectAddress
= Mapping.
ObjectAddress
496
? uint64_t(*Mapping.
ObjectAddress
)
501
<< format("\t%016" PRIx64 " => %016" PRIx64,
ObjectAddress
,
505
if (Mapping.
ObjectAddress
)
506
Info.AddrAdjust -=
ObjectAddress
;
[
all
...]
Completed in 847 milliseconds