Home
last modified time | relevance | path

Searched refs:RVA (Results 1 – 25 of 26) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
DPDBSymbolData.cpp24 if (auto RVA = RawSymbol->getRelativeVirtualAddress()) in getLineNumbers() local
25 return Session.findLineNumbersByRVA(RVA, Len); in getLineNumbers()
43 if (auto RVA = RawSymbol->getRelativeVirtualAddress()) in getCompilandId() local
44 Session.addressForRVA(RVA, DataSection, DataOffset); in getCompilandId()
DPDBSymbol.cpp159 PDB_NameSearchFlags Flags, uint32_t RVA) const { in findChildrenByRVA()
160 return RawSymbol->findChildrenByRVA(Type, Name, Flags, RVA); in findChildrenByRVA()
164 PDBSymbol::findInlineFramesByRVA(uint32_t RVA) const { in findInlineFramesByRVA()
165 return RawSymbol->findInlineFramesByRVA(RVA); in findInlineFramesByRVA()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/
DDIASession.cpp171 bool DIASession::addressForRVA(uint32_t RVA, uint32_t &Section, in addressForRVA() argument
174 if (S_OK == Session->addressForRVA(RVA, &ArgSection, &ArgOffset)) { in addressForRVA()
201 DWORD RVA = static_cast<DWORD>(Address - LoadAddr); in findSymbolByAddress() local
202 if (S_OK != Session->findSymbolByRVA(RVA, EnumVal, &Symbol)) in findSymbolByAddress()
209 std::unique_ptr<PDBSymbol> DIASession::findSymbolByRVA(uint32_t RVA, in findSymbolByRVA() argument
214 if (S_OK != Session->findSymbolByRVA(RVA, EnumVal, &Symbol)) in findSymbolByRVA()
256 DWORD RVA = static_cast<DWORD>(Address - LoadAddr); in findLineNumbersByAddress() local
257 if (S_OK != Session->findLinesByRVA(RVA, Length, &LineNumbers)) in findLineNumbersByAddress()
264 DIASession::findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const { in findLineNumbersByRVA() argument
266 if (S_OK != Session->findLinesByRVA(RVA, Length, &LineNumbers)) in findLineNumbersByRVA()
DDIALineNumber.cpp48 DWORD RVA = 0; in getRelativeVirtualAddress() local
49 return (S_OK == LineNumber->get_relativeVirtualAddress(&RVA)) ? RVA : 0; in getRelativeVirtualAddress()
DDIARawSymbol.cpp470 PDB_NameSearchFlags Flags, uint32_t RVA) const { in findChildrenByRVA()
479 if (S_OK != Symbol->findChildrenExByRVA(EnumVal, Name16Str, CompareFlags, RVA, in findChildrenByRVA()
496 DIARawSymbol::findInlineFramesByRVA(uint32_t RVA) const { in findInlineFramesByRVA()
498 if (S_OK != Symbol->findInlineFramesByRVA(RVA, &DiaEnumerator)) in findInlineFramesByRVA()
533 DIARawSymbol::findInlineeLinesByRVA(uint32_t RVA, uint32_t Length) const { in findInlineeLinesByRVA() argument
535 if (S_OK != Symbol->findInlineeLinesByRVA(RVA, Length, &DiaEnumerator)) in findInlineeLinesByRVA()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DCOFFObjectFile.cpp472 COFFObjectFile::getRvaAndSizeAsBytes(uint32_t RVA, uint32_t Size, in getRvaAndSizeAsBytes() argument
479 uint32_t OffsetIntoSection = RVA - SectionStart; in getRvaAndSizeAsBytes()
480 if (SectionStart <= RVA && OffsetIntoSection < Section->VirtualSize && in getRvaAndSizeAsBytes()
570 uint32_t RVA = DataEntry->RelativeVirtualAddress; in initDelayImportTablePtr() local
575 if (std::error_code EC = getRvaPtr(RVA, IntPtr)) in initDelayImportTablePtr()
1324 importedSymbolBegin(uint32_t RVA, const COFFObjectFile *Object) { in importedSymbolBegin() argument
1326 Object->getRvaPtr(RVA, IntPtr); in importedSymbolBegin()
1331 importedSymbolEnd(uint32_t RVA, const COFFObjectFile *Object) { in importedSymbolEnd() argument
1333 Object->getRvaPtr(RVA, IntPtr); in importedSymbolEnd()
1443 uint32_t RVA = Table[Index].DelayImportAddressTable + in getImportAddress() local
[all …]
DMinidump.cpp134 getDataSlice(Data, Loc.RVA, Loc.DataSize); in create()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/DIA/
DDIASession.h38 bool addressForRVA(uint32_t RVA, uint32_t &Section,
43 std::unique_ptr<PDBSymbol> findSymbolByRVA(uint32_t RVA,
55 findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const override;
DDIARawSymbol.h41 uint32_t RVA) const override;
46 findInlineFramesByRVA(uint32_t RVA) const override;
55 findInlineeLinesByRVA(uint32_t RVA, uint32_t Length) const override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/
DIPDBSession.h37 virtual bool addressForRVA(uint32_t RVA, uint32_t &Section,
48 findSymbolByRVA(uint32_t RVA, PDB_SymType Type) const = 0;
59 findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const = 0;
DIPDBRawSymbol.h71 uint32_t RVA) const = 0;
76 findInlineFramesByRVA(uint32_t RVA) const = 0;
85 findInlineeLinesByRVA(uint32_t RVA, uint32_t Length) const = 0;
DPDBSymbol.h145 uint32_t RVA) const;
146 std::unique_ptr<IPDBEnumSymbols> findInlineFramesByRVA(uint32_t RVA) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DDebugSymbolRVASubsection.h56 void addRVA(uint32_t RVA) { RVAs.push_back(support::ulittle32_t(RVA)); } in addRVA() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
DNativeSession.h46 bool addressForRVA(uint32_t RVA, uint32_t &Section,
51 std::unique_ptr<PDBSymbol> findSymbolByRVA(uint32_t RVA,
63 findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const override;
DNativeRawSymbol.h46 uint32_t RVA) const override;
51 findInlineFramesByRVA(uint32_t RVA) const override;
60 findInlineeLinesByRVA(uint32_t RVA, uint32_t Length) const override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DMinidump.h40 return getData().slice(Stream.Location.RVA, Stream.Location.DataSize); in getRawStream()
51 return getDataSlice(getData(), Desc.RVA, Desc.DataSize); in getRawData()
DCOFF.h1053 std::error_code getRvaAndSizeAsBytes(uint32_t RVA, uint32_t Size,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DNativeSession.cpp112 NativeSession::findSymbolByRVA(uint32_t RVA, PDB_SymType Type) const { in findSymbolByRVA() argument
135 NativeSession::findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const { in findLineNumbersByRVA() argument
DNativeRawSymbol.cpp56 PDB_NameSearchFlags Flags, uint32_t RVA) const { in findChildrenByRVA()
67 NativeRawSymbol::findInlineFramesByRVA(uint32_t RVA) const { in findInlineFramesByRVA()
88 NativeRawSymbol::findInlineeLinesByRVA(uint32_t RVA, uint32_t Length) const { in findInlineeLinesByRVA() argument
/third_party/mesa3d/src/gallium/auxiliary/util/
Ddbghelp.h904 typedef DWORD RVA; typedef
909 RVA Rva;
931 RVA StreamDirectoryRva;
983 RVA CSDVersionRva;
1049 RVA ModuleNameRva;
1088 RVA TypeNameRva;
1089 RVA ObjectNameRva;
1125 RVA ModuleNameRva;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DMinidumpEmitter.cpp175 Result.Location.RVA = File.tell(); in layout()
222 DataEnd.getValueOr(File.tell()) - Result.Location.RVA; in layout()
DCodeViewYAMLDebugSections.cpp535 for (const auto &RVA : RVAs) in toCodeViewSubsection() local
536 Result->addRVA(RVA); in toCodeViewSubsection()
740 for (const auto &RVA : Section) { in fromCodeViewSubsection() local
741 Result->RVAs.push_back(RVA); in fromCodeViewSubsection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldCOFFAArch64.h291 uint64_t RVA = Value + RE.Addend - getImageBase(); in resolveRelocation() local
292 write32le(Target, RVA); in resolveRelocation()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DMinidump.h61 support::ulittle32_t RVA; member
/third_party/mesa3d/src/freedreno/.gitlab-ci/traces/
Dcrash.devcore2407RVA,oa8cI<!<<*"M]Dej1ZAB:VuQgJci=%G!<<*"\-2jl^n:Z-\-2jlci=%G!<<*"bJF5Y!<<*"a8c2D!<<*"W!*/KbJ=/X!<<…

12