Searched refs:RVA (Results 1 - 16 of 16) sorted by relevance

/external/llvm/lib/DebugInfo/PDB/DIA/
H A DDIALineNumber.cpp49 DWORD RVA = 0; local
50 return (S_OK == LineNumber->get_relativeVirtualAddress(&RVA)) ? RVA : 0;
H A DDIASession.cpp170 DWORD RVA = static_cast<DWORD>(Address - LoadAddr);
171 if (S_OK != Session->findSymbolByRVA(RVA, EnumVal, &Symbol))
H A DDIARawSymbol.cpp395 PDB_NameSearchFlags Flags, uint32_t RVA) const {
405 Symbol->findChildrenExByRVA(EnumVal, Name16Str, CompareFlags, RVA,
413 DIARawSymbol::findInlineFramesByRVA(uint32_t RVA) const {
415 if (S_OK != Symbol->findInlineFramesByRVA(RVA, &DiaEnumerator))
/external/llvm/lib/DebugInfo/PDB/
H A DPDBSymbol.cpp135 PDB_NameSearchFlags Flags, uint32_t RVA) const {
136 return RawSymbol->findChildrenByRVA(Type, Name, Flags, RVA);
140 PDBSymbol::findInlineFramesByRVA(uint32_t RVA) const {
141 return RawSymbol->findInlineFramesByRVA(RVA);
/external/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbol.h83 uint32_t RVA) const;
84 std::unique_ptr<IPDBEnumSymbols> findInlineFramesByRVA(uint32_t RVA) const;
H A DIPDBRawSymbol.h43 uint32_t RVA) const = 0;
45 findInlineFramesByRVA(uint32_t RVA) const = 0;
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp441 // Returns the file offset for the given RVA.
457 COFFObjectFile::getRvaAndSizeAsBytes(uint32_t RVA, uint32_t Size, argument
462 // Check if this RVA is within the section bounds. Be careful about integer
464 uint32_t OffsetIntoSection = RVA - SectionStart;
465 if (SectionStart <= RVA && OffsetIntoSection < Section->VirtualSize &&
521 // First, we get the RVA of the import table. If the file lacks a pointer to
533 // Find the section that contains the RVA. This is needed because the RVA is
553 uint32_t RVA = DataEntry->RelativeVirtualAddress;
558 if (std::error_code EC = getRvaPtr(RVA, IntPt
1227 importedSymbolBegin(uint32_t RVA, const COFFObjectFile *Object) argument
1234 importedSymbolEnd(uint32_t RVA, const COFFObjectFile *Object) argument
1331 uint32_t RVA = Table[Index].DelayImportAddressTable + local
1431 uint32_t RVA; local
1453 uint32_t RVA; local
1489 uint32_t RVA; local
[all...]
/external/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIARawSymbol.h34 uint32_t RVA) const override;
36 findInlineFramesByRVA(uint32_t RVA) const override;
/external/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp409 outs() << " Ordinal RVA Name\n";
414 uint32_t RVA;
415 if (I->getExportRVA(RVA))
427 outs() << format(" % 4d %# 8x", Ordinal, RVA);
H A Dllvm-objdump.cpp1038 uint32_t RVA;
1039 error(ExportEntry.getExportRVA(RVA));
1041 uint64_t VA = COFFObj->getImageBase() + RVA;
/external/llvm/unittests/DebugInfo/PDB/
H A DPDBApiTest.cpp143 uint32_t RVA) const override {
147 findInlineFramesByRVA(uint32_t RVA) const override {
/external/mesa3d/src/gallium/auxiliary/util/
H A 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;
/external/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp550 W.printHex(FieldName + "RVA", Data->RelativeVirtualAddress);
1451 uint32_t Ordinal, RVA; local
1455 error(E.getExportRVA(RVA));
1459 W.printHex("RVA", RVA);
1495 uint32_t RVA; local
1496 error(I.getRVA(RVA));
1500 W.printHex("Address", RVA);
/external/syslinux/gpxe/src/include/gpxe/efi/IndustryStandard/
H A DPeImage.h675 UINT32 RVA; ///< The address of the debug data when loaded, relative to the image base member in struct:__anon20554
/external/syslinux/gpxe/src/util/
H A Delf2efi.c137 * @v rva RVA
344 /* Extract current RVA limits from file header */
371 /* Fill in section characteristics and update RVA limits */
419 /* Update RVA limits */
433 /* Write RVA limits back to file header */
579 contents->debug.RVA = ( debug->hdr.VirtualAddress +
/external/llvm/include/llvm/Object/
H A DCOFF.h204 assert(!isOrdinal() && "ILT entry is not a Hint/Name RVA!");
864 /// Given an RVA base and size, returns a valid array of bytes or an error
865 /// code if the RVA and size is not contained completely within a valid
867 std::error_code getRvaAndSizeAsBytes(uint32_t RVA, uint32_t Size,

Completed in 234 milliseconds