blob: 57ad40819fbc45165c69926f82b4a2378a6ccf65 [file] [log] [blame]
Eugene Zelenko8456b162017-06-29 00:05:44 +00001//===- DebugLinesSubsection.cpp -------------------------------------------===//
Zachary Turnerc37cb0c2017-04-27 16:12:16 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Zachary Turner8c099fe2017-05-30 16:36:15 +000010#include "llvm/DebugInfo/CodeView/DebugLinesSubsection.h"
Eugene Zelenko8456b162017-06-29 00:05:44 +000011#include "llvm/ADT/ArrayRef.h"
12#include "llvm/DebugInfo/CodeView/CodeView.h"
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000013#include "llvm/DebugInfo/CodeView/CodeViewError.h"
Zachary Turner8c099fe2017-05-30 16:36:15 +000014#include "llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h"
Eugene Zelenko8456b162017-06-29 00:05:44 +000015#include "llvm/Support/BinaryStreamReader.h"
16#include "llvm/Support/BinaryStreamWriter.h"
17#include "llvm/Support/Error.h"
18#include <cassert>
19#include <cstdint>
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000020
21using namespace llvm;
22using namespace llvm::codeview;
23
Zachary Turner7e62cd12017-06-09 17:54:36 +000024Error LineColumnExtractor::operator()(BinaryStreamRef Stream, uint32_t &Len,
25 LineColumnEntry &Item) {
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000026 const LineBlockFragmentHeader *BlockHeader;
27 BinaryStreamReader Reader(Stream);
28 if (auto EC = Reader.readObject(BlockHeader))
29 return EC;
Zachary Turner5b6e4e02017-04-29 01:13:21 +000030 bool HasColumn = Header->Flags & uint16_t(LF_HaveColumns);
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000031 uint32_t LineInfoSize =
32 BlockHeader->NumLines *
33 (sizeof(LineNumberEntry) + (HasColumn ? sizeof(ColumnNumberEntry) : 0));
34 if (BlockHeader->BlockSize < sizeof(LineBlockFragmentHeader))
35 return make_error<CodeViewError>(cv_error_code::corrupt_record,
36 "Invalid line block record size");
37 uint32_t Size = BlockHeader->BlockSize - sizeof(LineBlockFragmentHeader);
38 if (LineInfoSize > Size)
39 return make_error<CodeViewError>(cv_error_code::corrupt_record,
40 "Invalid line block record size");
41 // The value recorded in BlockHeader->BlockSize includes the size of
42 // LineBlockFragmentHeader.
43 Len = BlockHeader->BlockSize;
44 Item.NameIndex = BlockHeader->NameIndex;
45 if (auto EC = Reader.readArray(Item.LineNumbers, BlockHeader->NumLines))
46 return EC;
47 if (HasColumn) {
48 if (auto EC = Reader.readArray(Item.Columns, BlockHeader->NumLines))
49 return EC;
50 }
51 return Error::success();
52}
53
Zachary Turner8c099fe2017-05-30 16:36:15 +000054DebugLinesSubsectionRef::DebugLinesSubsectionRef()
55 : DebugSubsectionRef(DebugSubsectionKind::Lines) {}
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000056
Zachary Turner8c099fe2017-05-30 16:36:15 +000057Error DebugLinesSubsectionRef::initialize(BinaryStreamReader Reader) {
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000058 if (auto EC = Reader.readObject(Header))
59 return EC;
60
Zachary Turner7e62cd12017-06-09 17:54:36 +000061 LinesAndColumns.getExtractor().Header = Header;
62 if (auto EC = Reader.readArray(LinesAndColumns, Reader.bytesRemaining()))
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000063 return EC;
64
65 return Error::success();
66}
Zachary Turner5b6e4e02017-04-29 01:13:21 +000067
Zachary Turner8c099fe2017-05-30 16:36:15 +000068bool DebugLinesSubsectionRef::hasColumnInfo() const {
Zachary Turner7cc13e52017-05-01 16:46:39 +000069 return !!(Header->Flags & LF_HaveColumns);
Zachary Turner5b6e4e02017-04-29 01:13:21 +000070}
Zachary Turner8a2ebfb2017-05-01 23:27:42 +000071
Zachary Turner8c099fe2017-05-30 16:36:15 +000072DebugLinesSubsection::DebugLinesSubsection(DebugChecksumsSubsection &Checksums,
Zachary Turner591312c2017-05-30 17:13:33 +000073 DebugStringTableSubsection &Strings)
Zachary Turner8c099fe2017-05-30 16:36:15 +000074 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {}
Zachary Turner8a2ebfb2017-05-01 23:27:42 +000075
Zachary Turner8c099fe2017-05-30 16:36:15 +000076void DebugLinesSubsection::createBlock(StringRef FileName) {
Zachary Turnercf468d82017-05-03 17:11:40 +000077 uint32_t Offset = Checksums.mapChecksumOffset(FileName);
78
79 Blocks.emplace_back(Offset);
Zachary Turner8a2ebfb2017-05-01 23:27:42 +000080}
81
Zachary Turner8c099fe2017-05-30 16:36:15 +000082void DebugLinesSubsection::addLineInfo(uint32_t Offset, const LineInfo &Line) {
Zachary Turner8a2ebfb2017-05-01 23:27:42 +000083 Block &B = Blocks.back();
84 LineNumberEntry LNE;
85 LNE.Flags = Line.getRawData();
86 LNE.Offset = Offset;
87 B.Lines.push_back(LNE);
88}
89
Zachary Turner8c099fe2017-05-30 16:36:15 +000090void DebugLinesSubsection::addLineAndColumnInfo(uint32_t Offset,
91 const LineInfo &Line,
92 uint32_t ColStart,
93 uint32_t ColEnd) {
Zachary Turner8a2ebfb2017-05-01 23:27:42 +000094 Block &B = Blocks.back();
95 assert(B.Lines.size() == B.Columns.size());
96
97 addLineInfo(Offset, Line);
98 ColumnNumberEntry CNE;
99 CNE.StartColumn = ColStart;
100 CNE.EndColumn = ColEnd;
101 B.Columns.push_back(CNE);
102}
103
Zachary Turner591312c2017-05-30 17:13:33 +0000104Error DebugLinesSubsection::commit(BinaryStreamWriter &Writer) const {
Zachary Turner8a2ebfb2017-05-01 23:27:42 +0000105 LineFragmentHeader Header;
106 Header.CodeSize = CodeSize;
107 Header.Flags = hasColumnInfo() ? LF_HaveColumns : 0;
108 Header.RelocOffset = RelocOffset;
109 Header.RelocSegment = RelocSegment;
110
111 if (auto EC = Writer.writeObject(Header))
112 return EC;
113
114 for (const auto &B : Blocks) {
115 LineBlockFragmentHeader BlockHeader;
116 assert(B.Lines.size() == B.Columns.size() || B.Columns.empty());
117
118 BlockHeader.NumLines = B.Lines.size();
119 BlockHeader.BlockSize = sizeof(LineBlockFragmentHeader);
120 BlockHeader.BlockSize += BlockHeader.NumLines * sizeof(LineNumberEntry);
121 if (hasColumnInfo())
122 BlockHeader.BlockSize += BlockHeader.NumLines * sizeof(ColumnNumberEntry);
123 BlockHeader.NameIndex = B.ChecksumBufferOffset;
124 if (auto EC = Writer.writeObject(BlockHeader))
125 return EC;
126
127 if (auto EC = Writer.writeArray(makeArrayRef(B.Lines)))
128 return EC;
129
130 if (hasColumnInfo()) {
131 if (auto EC = Writer.writeArray(makeArrayRef(B.Columns)))
132 return EC;
133 }
134 }
135 return Error::success();
136}
137
Zachary Turner591312c2017-05-30 17:13:33 +0000138uint32_t DebugLinesSubsection::calculateSerializedSize() const {
Zachary Turner8a2ebfb2017-05-01 23:27:42 +0000139 uint32_t Size = sizeof(LineFragmentHeader);
140 for (const auto &B : Blocks) {
141 Size += sizeof(LineBlockFragmentHeader);
142 Size += B.Lines.size() * sizeof(LineNumberEntry);
143 if (hasColumnInfo())
144 Size += B.Columns.size() * sizeof(ColumnNumberEntry);
145 }
146 return Size;
147}
148
Zachary Turner8c099fe2017-05-30 16:36:15 +0000149void DebugLinesSubsection::setRelocationAddress(uint16_t Segment,
Bob Haarmanfdf499b2017-06-09 01:18:10 +0000150 uint32_t Offset) {
Zachary Turner8a2ebfb2017-05-01 23:27:42 +0000151 RelocOffset = Offset;
152 RelocSegment = Segment;
153}
154
Zachary Turner8c099fe2017-05-30 16:36:15 +0000155void DebugLinesSubsection::setCodeSize(uint32_t Size) { CodeSize = Size; }
Zachary Turner8a2ebfb2017-05-01 23:27:42 +0000156
Zachary Turner8c099fe2017-05-30 16:36:15 +0000157void DebugLinesSubsection::setFlags(LineFlags Flags) { this->Flags = Flags; }
Zachary Turner8a2ebfb2017-05-01 23:27:42 +0000158
Zachary Turner8c099fe2017-05-30 16:36:15 +0000159bool DebugLinesSubsection::hasColumnInfo() const {
Zachary Turner8a2ebfb2017-05-01 23:27:42 +0000160 return Flags & LF_HaveColumns;
161}