blob: ea16c0a6c6714774e475a39b97bdea6fa34b0436 [file] [log] [blame]
Eugene Zelenko8456b162017-06-29 00:05:44 +00001//===- DebugLinesSubsection.cpp -------------------------------------------===//
Zachary Turnerc37cb0c2017-04-27 16:12:16 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Zachary Turnerc37cb0c2017-04-27 16:12:16 +00006//
7//===----------------------------------------------------------------------===//
8
Zachary Turner8c099fe2017-05-30 16:36:15 +00009#include "llvm/DebugInfo/CodeView/DebugLinesSubsection.h"
Eugene Zelenko8456b162017-06-29 00:05:44 +000010#include "llvm/ADT/ArrayRef.h"
11#include "llvm/DebugInfo/CodeView/CodeView.h"
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000012#include "llvm/DebugInfo/CodeView/CodeViewError.h"
Zachary Turner8c099fe2017-05-30 16:36:15 +000013#include "llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h"
Eugene Zelenko8456b162017-06-29 00:05:44 +000014#include "llvm/Support/BinaryStreamReader.h"
15#include "llvm/Support/BinaryStreamWriter.h"
16#include "llvm/Support/Error.h"
17#include <cassert>
18#include <cstdint>
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000019
20using namespace llvm;
21using namespace llvm::codeview;
22
Zachary Turner7e62cd12017-06-09 17:54:36 +000023Error LineColumnExtractor::operator()(BinaryStreamRef Stream, uint32_t &Len,
24 LineColumnEntry &Item) {
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000025 const LineBlockFragmentHeader *BlockHeader;
26 BinaryStreamReader Reader(Stream);
27 if (auto EC = Reader.readObject(BlockHeader))
28 return EC;
Zachary Turner5b6e4e02017-04-29 01:13:21 +000029 bool HasColumn = Header->Flags & uint16_t(LF_HaveColumns);
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000030 uint32_t LineInfoSize =
31 BlockHeader->NumLines *
32 (sizeof(LineNumberEntry) + (HasColumn ? sizeof(ColumnNumberEntry) : 0));
33 if (BlockHeader->BlockSize < sizeof(LineBlockFragmentHeader))
34 return make_error<CodeViewError>(cv_error_code::corrupt_record,
35 "Invalid line block record size");
36 uint32_t Size = BlockHeader->BlockSize - sizeof(LineBlockFragmentHeader);
37 if (LineInfoSize > Size)
38 return make_error<CodeViewError>(cv_error_code::corrupt_record,
39 "Invalid line block record size");
40 // The value recorded in BlockHeader->BlockSize includes the size of
41 // LineBlockFragmentHeader.
42 Len = BlockHeader->BlockSize;
43 Item.NameIndex = BlockHeader->NameIndex;
44 if (auto EC = Reader.readArray(Item.LineNumbers, BlockHeader->NumLines))
45 return EC;
46 if (HasColumn) {
47 if (auto EC = Reader.readArray(Item.Columns, BlockHeader->NumLines))
48 return EC;
49 }
50 return Error::success();
51}
52
Zachary Turner8c099fe2017-05-30 16:36:15 +000053DebugLinesSubsectionRef::DebugLinesSubsectionRef()
54 : DebugSubsectionRef(DebugSubsectionKind::Lines) {}
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000055
Zachary Turner8c099fe2017-05-30 16:36:15 +000056Error DebugLinesSubsectionRef::initialize(BinaryStreamReader Reader) {
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000057 if (auto EC = Reader.readObject(Header))
58 return EC;
59
Zachary Turner7e62cd12017-06-09 17:54:36 +000060 LinesAndColumns.getExtractor().Header = Header;
61 if (auto EC = Reader.readArray(LinesAndColumns, Reader.bytesRemaining()))
Zachary Turnerc37cb0c2017-04-27 16:12:16 +000062 return EC;
63
64 return Error::success();
65}
Zachary Turner5b6e4e02017-04-29 01:13:21 +000066
Zachary Turner8c099fe2017-05-30 16:36:15 +000067bool DebugLinesSubsectionRef::hasColumnInfo() const {
Zachary Turner7cc13e52017-05-01 16:46:39 +000068 return !!(Header->Flags & LF_HaveColumns);
Zachary Turner5b6e4e02017-04-29 01:13:21 +000069}
Zachary Turner8a2ebfb2017-05-01 23:27:42 +000070
Zachary Turner8c099fe2017-05-30 16:36:15 +000071DebugLinesSubsection::DebugLinesSubsection(DebugChecksumsSubsection &Checksums,
Zachary Turner591312c2017-05-30 17:13:33 +000072 DebugStringTableSubsection &Strings)
Zachary Turner8c099fe2017-05-30 16:36:15 +000073 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {}
Zachary Turner8a2ebfb2017-05-01 23:27:42 +000074
Zachary Turner8c099fe2017-05-30 16:36:15 +000075void DebugLinesSubsection::createBlock(StringRef FileName) {
Zachary Turnercf468d82017-05-03 17:11:40 +000076 uint32_t Offset = Checksums.mapChecksumOffset(FileName);
77
78 Blocks.emplace_back(Offset);
Zachary Turner8a2ebfb2017-05-01 23:27:42 +000079}
80
Zachary Turner8c099fe2017-05-30 16:36:15 +000081void DebugLinesSubsection::addLineInfo(uint32_t Offset, const LineInfo &Line) {
Zachary Turner8a2ebfb2017-05-01 23:27:42 +000082 Block &B = Blocks.back();
83 LineNumberEntry LNE;
84 LNE.Flags = Line.getRawData();
85 LNE.Offset = Offset;
86 B.Lines.push_back(LNE);
87}
88
Zachary Turner8c099fe2017-05-30 16:36:15 +000089void DebugLinesSubsection::addLineAndColumnInfo(uint32_t Offset,
90 const LineInfo &Line,
91 uint32_t ColStart,
92 uint32_t ColEnd) {
Zachary Turner8a2ebfb2017-05-01 23:27:42 +000093 Block &B = Blocks.back();
94 assert(B.Lines.size() == B.Columns.size());
95
96 addLineInfo(Offset, Line);
97 ColumnNumberEntry CNE;
98 CNE.StartColumn = ColStart;
99 CNE.EndColumn = ColEnd;
100 B.Columns.push_back(CNE);
101}
102
Zachary Turner591312c2017-05-30 17:13:33 +0000103Error DebugLinesSubsection::commit(BinaryStreamWriter &Writer) const {
Zachary Turner8a2ebfb2017-05-01 23:27:42 +0000104 LineFragmentHeader Header;
105 Header.CodeSize = CodeSize;
106 Header.Flags = hasColumnInfo() ? LF_HaveColumns : 0;
107 Header.RelocOffset = RelocOffset;
108 Header.RelocSegment = RelocSegment;
109
110 if (auto EC = Writer.writeObject(Header))
111 return EC;
112
113 for (const auto &B : Blocks) {
114 LineBlockFragmentHeader BlockHeader;
115 assert(B.Lines.size() == B.Columns.size() || B.Columns.empty());
116
117 BlockHeader.NumLines = B.Lines.size();
118 BlockHeader.BlockSize = sizeof(LineBlockFragmentHeader);
119 BlockHeader.BlockSize += BlockHeader.NumLines * sizeof(LineNumberEntry);
120 if (hasColumnInfo())
121 BlockHeader.BlockSize += BlockHeader.NumLines * sizeof(ColumnNumberEntry);
122 BlockHeader.NameIndex = B.ChecksumBufferOffset;
123 if (auto EC = Writer.writeObject(BlockHeader))
124 return EC;
125
126 if (auto EC = Writer.writeArray(makeArrayRef(B.Lines)))
127 return EC;
128
129 if (hasColumnInfo()) {
130 if (auto EC = Writer.writeArray(makeArrayRef(B.Columns)))
131 return EC;
132 }
133 }
134 return Error::success();
135}
136
Zachary Turner591312c2017-05-30 17:13:33 +0000137uint32_t DebugLinesSubsection::calculateSerializedSize() const {
Zachary Turner8a2ebfb2017-05-01 23:27:42 +0000138 uint32_t Size = sizeof(LineFragmentHeader);
139 for (const auto &B : Blocks) {
140 Size += sizeof(LineBlockFragmentHeader);
141 Size += B.Lines.size() * sizeof(LineNumberEntry);
142 if (hasColumnInfo())
143 Size += B.Columns.size() * sizeof(ColumnNumberEntry);
144 }
145 return Size;
146}
147
Zachary Turner8c099fe2017-05-30 16:36:15 +0000148void DebugLinesSubsection::setRelocationAddress(uint16_t Segment,
Bob Haarmanfdf499b2017-06-09 01:18:10 +0000149 uint32_t Offset) {
Zachary Turner8a2ebfb2017-05-01 23:27:42 +0000150 RelocOffset = Offset;
151 RelocSegment = Segment;
152}
153
Zachary Turner8c099fe2017-05-30 16:36:15 +0000154void DebugLinesSubsection::setCodeSize(uint32_t Size) { CodeSize = Size; }
Zachary Turner8a2ebfb2017-05-01 23:27:42 +0000155
Zachary Turner8c099fe2017-05-30 16:36:15 +0000156void DebugLinesSubsection::setFlags(LineFlags Flags) { this->Flags = Flags; }
Zachary Turner8a2ebfb2017-05-01 23:27:42 +0000157
Zachary Turner8c099fe2017-05-30 16:36:15 +0000158bool DebugLinesSubsection::hasColumnInfo() const {
Zachary Turner8a2ebfb2017-05-01 23:27:42 +0000159 return Flags & LF_HaveColumns;
160}