summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
diff options
context:
space:
mode:
authorAaron Smith <aaron.smith@microsoft.com>2018-03-26 22:13:22 +0000
committerAaron Smith <aaron.smith@microsoft.com>2018-03-26 22:13:22 +0000
commited81a9db297f5079cee41c7b91187e86b2e1b730 (patch)
treea64c716bb0b87aaeb23debdda6164211618a92b8 /llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
parent53708a5e9e60bfc5e7dc9c1135262d50f39454b4 (diff)
downloadbcm5719-llvm-ed81a9db297f5079cee41c7b91187e86b2e1b730.tar.gz
bcm5719-llvm-ed81a9db297f5079cee41c7b91187e86b2e1b730.zip
[DebugInfoPDB] Add DIA implementation of findLineNumbersByRVA
This method is used to find line numbers for PDBSymbolData that have an invalid virtual address. llvm-svn: 328586
Diffstat (limited to 'llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp')
-rw-r--r--llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp b/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
index 1eaecc49761..37b1a9167a5 100644
--- a/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
+++ b/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
@@ -213,6 +213,11 @@ NativeSession::findLineNumbersByAddress(uint64_t Address,
}
std::unique_ptr<IPDBEnumLineNumbers>
+NativeSession::findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const {
+ return nullptr;
+}
+
+std::unique_ptr<IPDBEnumLineNumbers>
NativeSession::findLineNumbersBySectOffset(uint32_t Section, uint32_t Offset,
uint32_t Length) const {
return nullptr;
OpenPOWER on IntegriCloud