blob: d5cd640231f99ff0945b12ff2d56ffd70540a42d [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- DebugFrameDataSubsection.h ------------------------------*- C++ -*-===//
2//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_DEBUGINFO_CODEVIEW_DEBUGFRAMEDATASUBSECTION_H
10#define LLVM_DEBUGINFO_CODEVIEW_DEBUGFRAMEDATASUBSECTION_H
11
12#include "llvm/DebugInfo/CodeView/CodeView.h"
13#include "llvm/DebugInfo/CodeView/DebugSubsection.h"
14#include "llvm/Support/BinaryStreamReader.h"
Andrew Walbran16937d02019-10-22 13:54:20 +010015#include "llvm/Support/Endian.h"
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010016#include "llvm/Support/Error.h"
17
18namespace llvm {
19namespace codeview {
20class DebugFrameDataSubsectionRef final : public DebugSubsectionRef {
21public:
22 DebugFrameDataSubsectionRef()
23 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {}
24 static bool classof(const DebugSubsection *S) {
25 return S->kind() == DebugSubsectionKind::FrameData;
26 }
27
28 Error initialize(BinaryStreamReader Reader);
Andrew Scull0372a572018-11-16 15:47:06 +000029 Error initialize(BinaryStreamRef Stream);
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010030
31 FixedStreamArray<FrameData>::Iterator begin() const { return Frames.begin(); }
32 FixedStreamArray<FrameData>::Iterator end() const { return Frames.end(); }
33
Andrew Walbran16937d02019-10-22 13:54:20 +010034 const support::ulittle32_t *getRelocPtr() const { return RelocPtr; }
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010035
36private:
Andrew Walbran16937d02019-10-22 13:54:20 +010037 const support::ulittle32_t *RelocPtr = nullptr;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010038 FixedStreamArray<FrameData> Frames;
39};
40
41class DebugFrameDataSubsection final : public DebugSubsection {
42public:
Andrew Scull0372a572018-11-16 15:47:06 +000043 DebugFrameDataSubsection(bool IncludeRelocPtr)
44 : DebugSubsection(DebugSubsectionKind::FrameData),
45 IncludeRelocPtr(IncludeRelocPtr) {}
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010046 static bool classof(const DebugSubsection *S) {
47 return S->kind() == DebugSubsectionKind::FrameData;
48 }
49
50 uint32_t calculateSerializedSize() const override;
51 Error commit(BinaryStreamWriter &Writer) const override;
52
53 void addFrameData(const FrameData &Frame);
54 void setFrames(ArrayRef<FrameData> Frames);
55
56private:
Andrew Scull0372a572018-11-16 15:47:06 +000057 bool IncludeRelocPtr = false;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010058 std::vector<FrameData> Frames;
59};
60}
61}
62
63#endif