Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/
DPDBSymbolData.cpp31 if (auto RVA = RawSymbol->getRelativeVirtualAddress()) in getLineNumbers() local
32 return Session.findLineNumbersByRVA(RVA, Len); in getLineNumbers()
50 if (auto RVA = RawSymbol->getRelativeVirtualAddress()) in getCompilandId() local
51 Session.addressForRVA(RVA, DataSection, DataOffset); in getCompilandId()
DPDBSymbol.cpp150 PDB_NameSearchFlags Flags, uint32_t RVA) const { in findChildrenByRVA()
151 return RawSymbol->findChildrenByRVA(Type, Name, Flags, RVA); in findChildrenByRVA()
155 PDBSymbol::findInlineFramesByRVA(uint32_t RVA) const { in findInlineFramesByRVA()
156 return RawSymbol->findInlineFramesByRVA(RVA); in findInlineFramesByRVA()
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-pdbdump/
Dload-address.test2 ; RUN: | FileCheck --check-prefix=RVA %s
6 ; RVA: ---EXTERNALS---
7 ; RVA: [0x00001010] _main
/external/llvm/test/tools/llvm-pdbdump/
Dload-address.test2 ; RUN: | FileCheck --check-prefix=RVA %s
6 ; RVA: ---EXTERNALS---
7 ; RVA: [0x00001010] _main
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/DIA/
DDIASession.cpp180 bool DIASession::addressForRVA(uint32_t RVA, uint32_t &Section, in addressForRVA() argument
183 if (S_OK == Session->addressForRVA(RVA, &ArgSection, &ArgOffset)) { in addressForRVA()
209 DWORD RVA = static_cast<DWORD>(Address - LoadAddr); in findSymbolByAddress() local
210 if (S_OK != Session->findSymbolByRVA(RVA, EnumVal, &Symbol)) in findSymbolByAddress()
217 std::unique_ptr<PDBSymbol> DIASession::findSymbolByRVA(uint32_t RVA, in findSymbolByRVA() argument
222 if (S_OK != Session->findSymbolByRVA(RVA, EnumVal, &Symbol)) in findSymbolByRVA()
264 DWORD RVA = static_cast<DWORD>(Address - LoadAddr); in findLineNumbersByAddress() local
265 if (S_OK != Session->findLinesByRVA(RVA, Length, &LineNumbers)) in findLineNumbersByAddress()
272 DIASession::findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const { in findLineNumbersByRVA() argument
274 if (S_OK != Session->findLinesByRVA(RVA, Length, &LineNumbers)) in findLineNumbersByRVA()
DDIALineNumber.cpp49 DWORD RVA = 0; in getRelativeVirtualAddress() local
50 return (S_OK == LineNumber->get_relativeVirtualAddress(&RVA)) ? RVA : 0; in getRelativeVirtualAddress()
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-readobj/
Dcoff-exports.test8 CHECK-X86: RVA: 0x1000
9 CHECK-X64: RVA: 0x1000
10 CHECK-ARM: RVA: 0x1001
/external/llvm/test/tools/llvm-readobj/
Dcoff-exports.test8 CHECK-X86: RVA: 0x1000
9 CHECK-X64: RVA: 0x1000
10 CHECK-ARM: RVA: 0x1001
/external/llvm/lib/Object/
DCOFFObjectFile.cpp457 COFFObjectFile::getRvaAndSizeAsBytes(uint32_t RVA, uint32_t Size, in getRvaAndSizeAsBytes() argument
464 uint32_t OffsetIntoSection = RVA - SectionStart; in getRvaAndSizeAsBytes()
465 if (SectionStart <= RVA && OffsetIntoSection < Section->VirtualSize && in getRvaAndSizeAsBytes()
553 uint32_t RVA = DataEntry->RelativeVirtualAddress; in initDelayImportTablePtr() local
558 if (std::error_code EC = getRvaPtr(RVA, IntPtr)) in initDelayImportTablePtr()
1227 importedSymbolBegin(uint32_t RVA, const COFFObjectFile *Object) { in importedSymbolBegin() argument
1229 Object->getRvaPtr(RVA, IntPtr); in importedSymbolBegin()
1234 importedSymbolEnd(uint32_t RVA, const COFFObjectFile *Object) { in importedSymbolEnd() argument
1236 Object->getRvaPtr(RVA, IntPtr); in importedSymbolEnd()
1331 uint32_t RVA = Table[Index].DelayImportAddressTable + in getImportAddress() local
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DCOFFObjectFile.cpp474 COFFObjectFile::getRvaAndSizeAsBytes(uint32_t RVA, uint32_t Size, in getRvaAndSizeAsBytes() argument
481 uint32_t OffsetIntoSection = RVA - SectionStart; in getRvaAndSizeAsBytes()
482 if (SectionStart <= RVA && OffsetIntoSection < Section->VirtualSize && in getRvaAndSizeAsBytes()
572 uint32_t RVA = DataEntry->RelativeVirtualAddress; in initDelayImportTablePtr() local
577 if (std::error_code EC = getRvaPtr(RVA, IntPtr)) in initDelayImportTablePtr()
1313 importedSymbolBegin(uint32_t RVA, const COFFObjectFile *Object) { in importedSymbolBegin() argument
1315 Object->getRvaPtr(RVA, IntPtr); in importedSymbolBegin()
1320 importedSymbolEnd(uint32_t RVA, const COFFObjectFile *Object) { in importedSymbolEnd() argument
1322 Object->getRvaPtr(RVA, IntPtr); in importedSymbolEnd()
1432 uint32_t RVA = Table[Index].DelayImportAddressTable + in getImportAddress() local
[all …]
/external/llvm/lib/DebugInfo/PDB/
DPDBSymbol.cpp135 PDB_NameSearchFlags Flags, uint32_t RVA) const { in findChildrenByRVA()
136 return RawSymbol->findChildrenByRVA(Type, Name, Flags, RVA); in findChildrenByRVA()
140 PDBSymbol::findInlineFramesByRVA(uint32_t RVA) const { in findInlineFramesByRVA()
141 return RawSymbol->findInlineFramesByRVA(RVA); in findInlineFramesByRVA()
/external/llvm/lib/DebugInfo/PDB/DIA/
DDIALineNumber.cpp49 DWORD RVA = 0; in getRelativeVirtualAddress() local
50 return (S_OK == LineNumber->get_relativeVirtualAddress(&RVA)) ? RVA : 0; in getRelativeVirtualAddress()
/external/swiftshader/third_party/llvm-7.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;
DPDBSymbol.h115 uint32_t RVA) const;
116 std::unique_ptr<IPDBEnumSymbols> findInlineFramesByRVA(uint32_t RVA) const;
DIPDBRawSymbol.h53 uint32_t RVA) const = 0;
58 findInlineFramesByRVA(uint32_t RVA) const = 0;
67 findInlineeLinesByRVA(uint32_t RVA, uint32_t Length) const = 0;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/DIA/
DDIASession.h39 bool addressForRVA(uint32_t RVA, uint32_t &Section,
44 std::unique_ptr<PDBSymbol> findSymbolByRVA(uint32_t RVA,
56 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;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DDebugSymbolRVASubsection.h57 void addRVA(uint32_t RVA) { RVAs.push_back(support::ulittle32_t(RVA)); } in addRVA() argument
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
DNativeSession.h58 bool addressForRVA(uint32_t RVA, uint32_t &Section,
63 std::unique_ptr<PDBSymbol> findSymbolByRVA(uint32_t RVA,
75 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;
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/PDB/
DPDBApiTest.cpp82 bool addressForRVA(uint32_t RVA, uint32_t &Section, in addressForRVA() argument
90 std::unique_ptr<PDBSymbol> findSymbolByRVA(uint32_t RVA, in findSymbolByRVA() argument
109 findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const override { in findLineNumbersByRVA() argument
192 uint32_t RVA) const override { in findChildrenByRVA()
200 findInlineFramesByRVA(uint32_t RVA) const override { in findInlineFramesByRVA()
216 findInlineeLinesByRVA(uint32_t RVA, uint32_t Length) const override { in findInlineeLinesByRVA() argument
/external/llvm/include/llvm/DebugInfo/PDB/
DPDBSymbol.h83 uint32_t RVA) const;
84 std::unique_ptr<IPDBEnumSymbols> findInlineFramesByRVA(uint32_t RVA) const;
DIPDBRawSymbol.h43 uint32_t RVA) const = 0;
45 findInlineFramesByRVA(uint32_t RVA) const = 0;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DNativeRawSymbol.cpp47 PDB_NameSearchFlags Flags, uint32_t RVA) const { in findChildrenByRVA()
58 NativeRawSymbol::findInlineFramesByRVA(uint32_t RVA) const { in findInlineFramesByRVA()
79 NativeRawSymbol::findInlineeLinesByRVA(uint32_t RVA, uint32_t Length) const { in findInlineeLinesByRVA() argument
/external/llvm/include/llvm/DebugInfo/PDB/DIA/
DDIARawSymbol.h34 uint32_t RVA) const override;
36 findInlineFramesByRVA(uint32_t RVA) const override;

12