aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2017-06-09 20:46:52 +0000
committerZachary Turner <zturner@google.com>2017-06-09 20:46:52 +0000
commit3226fe95bbb8b6bcc477ce7ec4f158a20669694d (patch)
tree1d4d6f4ca5207c72ae037268eee150f0a2c5fd58 /llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp
parent6455b0dbf3131a5f1df3fb9f2207ae728f0ef937 (diff)
downloadllvm-3226fe95bbb8b6bcc477ce7ec4f158a20669694d.zip
llvm-3226fe95bbb8b6bcc477ce7ec4f158a20669694d.tar.gz
llvm-3226fe95bbb8b6bcc477ce7ec4f158a20669694d.tar.bz2
[pdb] Support CoffSymbolRVA debug subsection.
llvm-svn: 305108
Diffstat (limited to 'llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp')
-rw-r--r--llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp b/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp
index be56ea1..8550107 100644
--- a/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp
+++ b/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp
@@ -17,6 +17,7 @@
#include "llvm/DebugInfo/CodeView/DebugLinesSubsection.h"
#include "llvm/DebugInfo/CodeView/DebugStringTableSubsection.h"
#include "llvm/DebugInfo/CodeView/DebugSubsectionRecord.h"
+#include "llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h"
#include "llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h"
#include "llvm/DebugInfo/CodeView/DebugUnknownSubsection.h"
#include "llvm/Support/BinaryStreamReader.h"
@@ -111,6 +112,12 @@ Error llvm::codeview::visitDebugSubsection(const DebugSubsectionRecord &R,
return EC;
return V.visitFrameData(Section, State);
}
+ case DebugSubsectionKind::CoffSymbolRVA: {
+ DebugSymbolRVASubsectionRef Section;
+ if (auto EC = Section.initialize(Reader))
+ return EC;
+ return V.visitCOFFSymbolRVAs(Section, State);
+ }
default: {
DebugUnknownSubsectionRef Fragment(R.kind(), R.getRecordData());
return V.visitUnknown(Fragment);