Home
last modified time | relevance | path

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

12345

/external/llvm-project/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()
169 PDBSymbol::findInlineFramesByRVA(uint32_t RVA) const { in findInlineFramesByRVA()
170 return RawSymbol->findInlineFramesByRVA(RVA); in findInlineFramesByRVA()
179 PDBSymbol::findInlineeLinesByRVA(uint32_t RVA, uint32_t Length) const { in findInlineeLinesByRVA() argument
180 return RawSymbol->findInlineeLinesByRVA(RVA, Length); in findInlineeLinesByRVA()
/external/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()
/external/llvm-project/lld/test/COFF/
Dlto-icf.ll11 ; CHECK: RVA: 0x[[RVA:.*]]
13 ; CHECK: RVA: 0x[[RVA]]
Dexport.test8 CHECK1: Ordinal RVA Name
18 CHECK2: Ordinal RVA Name
33 CHECK3: Ordinal RVA Name
48 CHECK4: Ordinal RVA Name
63 CHECK5: Ordinal RVA Name
96 FORWARDER: Ordinal RVA Name
105 MERGE: Ordinal RVA Name
Dexport32.test12 # CHECK1: Ordinal RVA Name
29 # CHECK2: Ordinal RVA Name
45 # CHECK3: Ordinal RVA Name
59 # CHECK4: Ordinal RVA Name
77 # CHECK5: Ordinal RVA Name
96 # CHECK7: Ordinal RVA Name
Dicf-pdata.s12 # CHECK-NEXT: RVA: 0x1010
14 # CHECK-NEXT: RVA: 0x1010
16 # CHECK-NEXT: RVA: 0x1030
/external/llvm/test/tools/llvm-pdbdump/
Dload-address.test2 ; RUN: | FileCheck --check-prefix=RVA %s
6 ; RVA: ---EXTERNALS---
7 ; RVA: [0x00001010] _main
/external/llvm-project/llvm/test/tools/llvm-pdbutil/
Dload-address.test4 ; RUN: | FileCheck --check-prefix=RVA %s
8 ; RVA: ---EXTERNALS---
9 ; RVA: [0x00001010] _main
/external/llvm-project/llvm/test/tools/llvm-readobj/COFF/
Dexports.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-project/llvm/lib/DebugInfo/PDB/Native/
DNativeSession.cpp214 uint32_t RVA = VA - getLoadAddress(); in addressForVA() local
215 return addressForRVA(RVA, Section, Offset); in addressForVA()
218 bool NativeSession::addressForRVA(uint32_t RVA, uint32_t &Section, in addressForRVA() argument
227 if ((int32_t)RVA < 0) in addressForRVA()
230 Offset = RVA; in addressForRVA()
233 if (RVA < Sec.VirtualAddress) in addressForRVA()
235 Offset = RVA - Sec.VirtualAddress; in addressForRVA()
248 std::unique_ptr<PDBSymbol> NativeSession::findSymbolByRVA(uint32_t RVA, in findSymbolByRVA() argument
252 addressForRVA(RVA, Section, Offset); in findSymbolByRVA()
278 NativeSession::findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const { in findLineNumbersByRVA() argument
[all …]
/external/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()
/external/llvm-project/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()
/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/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/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-project/llvm/lib/Object/
DCOFFObjectFile.cpp477 Error COFFObjectFile::getRvaAndSizeAsBytes(uint32_t RVA, uint32_t Size, in getRvaAndSizeAsBytes() argument
484 uint32_t OffsetIntoSection = RVA - SectionStart; in getRvaAndSizeAsBytes()
485 if (SectionStart <= RVA && OffsetIntoSection < Section->VirtualSize && in getRvaAndSizeAsBytes()
574 uint32_t RVA = DataEntry->RelativeVirtualAddress; in initDelayImportTablePtr() local
579 if (Error E = getRvaPtr(RVA, IntPtr)) in initDelayImportTablePtr()
1346 importedSymbolBegin(uint32_t RVA, const COFFObjectFile *Object) { in importedSymbolBegin() argument
1349 cantFail(Object->getRvaPtr(RVA, IntPtr)); in importedSymbolBegin()
1354 importedSymbolEnd(uint32_t RVA, const COFFObjectFile *Object) { in importedSymbolEnd() argument
1357 cantFail(Object->getRvaPtr(RVA, IntPtr)); in importedSymbolEnd()
1466 uint32_t RVA = Table[Index].DelayImportAddressTable + in getImportAddress() local
[all …]
/external/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 …]
/external/llvm-project/llvm/unittests/Object/
DMinidumpTest.cpp53 EXPECT_EQ(0x2cu, Stream0.Location.RVA); in TEST()
360 EXPECT_EQ(0x08070605u, M.CvRecord.RVA); in TEST()
362 EXPECT_EQ(0x06050403u, M.MiscRecord.RVA); in TEST()
461 EXPECT_EQ(0x00090807u, T.Stack.Memory.RVA); in TEST()
463 EXPECT_EQ(0x08070605u, T.Context.RVA); in TEST()
511 EXPECT_EQ(0x00090807u, MD.Memory.RVA); in TEST()
769 EXPECT_EQ(0x88878685, ExpectedStream->ThreadContext.RVA); in TEST()
/external/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;
/external/llvm-project/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;
/external/llvm-project/llvm/include/llvm/DebugInfo/PDB/
DIPDBSession.h37 virtual bool addressForRVA(uint32_t RVA, uint32_t &Section,
47 virtual std::unique_ptr<PDBSymbol> findSymbolByRVA(uint32_t RVA,
58 findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const = 0;

12345