diff options
author | Zachary Turner <zturner@google.com> | 2017-06-09 20:46:52 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-06-09 20:46:52 +0000 |
commit | 3226fe95bbb8b6bcc477ce7ec4f158a20669694d (patch) | |
tree | 1d4d6f4ca5207c72ae037268eee150f0a2c5fd58 /llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp | |
parent | 6455b0dbf3131a5f1df3fb9f2207ae728f0ef937 (diff) | |
download | llvm-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/DebugSymbolRVASubsection.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp b/llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp new file mode 100644 index 0000000..5f91b68 --- /dev/null +++ b/llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp @@ -0,0 +1,31 @@ +//===- DebugSymbolRVASubsection.cpp ------------------------------*- C++-*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h" + +using namespace llvm; +using namespace llvm::codeview; + +DebugSymbolRVASubsectionRef::DebugSymbolRVASubsectionRef() + : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} + +Error DebugSymbolRVASubsectionRef::initialize(BinaryStreamReader &Reader) { + return Reader.readArray(RVAs, Reader.bytesRemaining() / sizeof(uint32_t)); +} + +DebugSymbolRVASubsection::DebugSymbolRVASubsection() + : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} + +Error DebugSymbolRVASubsection::commit(BinaryStreamWriter &Writer) const { + return Writer.writeArray(makeArrayRef(RVAs)); +} + +uint32_t DebugSymbolRVASubsection::calculateSerializedSize() const { + return RVAs.size() * sizeof(uint32_t); +} |