blob: 768427fab07af2c3108b20ac4a1ec3eb59f49a33 [file] [log] [blame]
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +00001//===-- DWARFContext.cpp --------------------------------------------------===//
2//
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
10#include "DWARFContext.h"
Alexey Samsonov71d94f82012-07-19 07:03:58 +000011#include "llvm/ADT/SmallString.h"
Benjamin Kramerfe80f1d2011-09-15 18:02:20 +000012#include "llvm/Support/Dwarf.h"
Benjamin Kramer34f864f2011-09-15 16:57:13 +000013#include "llvm/Support/Format.h"
Alexey Samsonov71d94f82012-07-19 07:03:58 +000014#include "llvm/Support/Path.h"
Benjamin Kramer358f4fd2011-09-14 01:09:52 +000015#include "llvm/Support/raw_ostream.h"
Benjamin Kramer101b1c52011-09-15 20:43:22 +000016#include <algorithm>
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +000017using namespace llvm;
Benjamin Kramerfe80f1d2011-09-15 18:02:20 +000018using namespace dwarf;
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +000019
Eric Christophere9403c12012-10-16 23:46:25 +000020typedef DWARFDebugLine::LineTable DWARFLineTable;
21
Eli Bendersky939a4e82013-01-25 20:26:43 +000022void DWARFContext::dump(raw_ostream &OS, DIDumpType DumpType) {
23 if (DumpType == DIDT_All || DumpType == DIDT_Abbrev) {
24 OS << ".debug_abbrev contents:\n";
25 getDebugAbbrev()->dump(OS);
26 }
Benjamin Kramer358f4fd2011-09-14 01:09:52 +000027
Eli Bendersky939a4e82013-01-25 20:26:43 +000028 if (DumpType == DIDT_All || DumpType == DIDT_Info) {
29 OS << "\n.debug_info contents:\n";
30 for (unsigned i = 0, e = getNumCompileUnits(); i != e; ++i)
31 getCompileUnitAtIndex(i)->dump(OS);
32 }
Benjamin Kramer358f4fd2011-09-14 01:09:52 +000033
Benjamin Kramer358f4fd2011-09-14 01:09:52 +000034 uint32_t offset = 0;
Eli Bendersky939a4e82013-01-25 20:26:43 +000035 if (DumpType == DIDT_All || DumpType == DIDT_Aranges) {
36 OS << "\n.debug_aranges contents:\n";
37 DataExtractor arangesData(getARangeSection(), isLittleEndian(), 0);
38 DWARFDebugArangeSet set;
39 while (set.extract(arangesData, &offset))
40 set.dump(OS);
41 }
Benjamin Kramerb848e972011-09-15 02:12:05 +000042
Alexey Samsonoveceb5b92012-08-27 07:17:47 +000043 uint8_t savedAddressByteSize = 0;
Eli Bendersky939a4e82013-01-25 20:26:43 +000044 if (DumpType == DIDT_All || DumpType == DIDT_Line) {
45 OS << "\n.debug_line contents:\n";
46 for (unsigned i = 0, e = getNumCompileUnits(); i != e; ++i) {
47 DWARFCompileUnit *cu = getCompileUnitAtIndex(i);
48 savedAddressByteSize = cu->getAddressByteSize();
49 unsigned stmtOffset =
50 cu->getCompileUnitDIE()->getAttributeValueAsUnsigned(cu, DW_AT_stmt_list,
51 -1U);
52 if (stmtOffset != -1U) {
53 DataExtractor lineData(getLineSection(), isLittleEndian(),
54 savedAddressByteSize);
55 DWARFDebugLine::DumpingState state(OS);
Andrew Kayloree7c0d22013-01-25 22:50:58 +000056 DWARFDebugLine::parseStatementTable(lineData, &lineRelocMap(), &stmtOffset, state);
Eli Bendersky939a4e82013-01-25 20:26:43 +000057 }
Benjamin Kramerfe80f1d2011-09-15 18:02:20 +000058 }
59 }
Benjamin Kramer34f864f2011-09-15 16:57:13 +000060
Eli Bendersky939a4e82013-01-25 20:26:43 +000061 if (DumpType == DIDT_All || DumpType == DIDT_Str) {
62 OS << "\n.debug_str contents:\n";
63 DataExtractor strData(getStringSection(), isLittleEndian(), 0);
64 offset = 0;
65 uint32_t strOffset = 0;
66 while (const char *s = strData.getCStr(&offset)) {
67 OS << format("0x%8.8x: \"%s\"\n", strOffset, s);
68 strOffset = offset;
69 }
Benjamin Kramer34f864f2011-09-15 16:57:13 +000070 }
Alexey Samsonoveceb5b92012-08-27 07:17:47 +000071
Eli Bendersky939a4e82013-01-25 20:26:43 +000072 if (DumpType == DIDT_All || DumpType == DIDT_Ranges) {
73 OS << "\n.debug_ranges contents:\n";
74 // In fact, different compile units may have different address byte
75 // sizes, but for simplicity we just use the address byte size of the last
76 // compile unit (there is no easy and fast way to associate address range
77 // list and the compile unit it describes).
78 DataExtractor rangesData(getRangeSection(), isLittleEndian(),
79 savedAddressByteSize);
80 offset = 0;
81 DWARFDebugRangeList rangeList;
82 while (rangeList.extract(rangesData, &offset))
83 rangeList.dump(OS);
Eric Christopher82de10a2013-01-02 23:52:13 +000084 }
Eric Christopher72f7bfb2013-01-15 23:56:56 +000085
Eli Bendersky939a4e82013-01-25 20:26:43 +000086 if (DumpType == DIDT_All || DumpType == DIDT_AbbrevDwo) {
87 OS << "\n.debug_abbrev.dwo contents:\n";
88 getDebugAbbrevDWO()->dump(OS);
89 }
90
91 if (DumpType == DIDT_All || DumpType == DIDT_InfoDwo) {
92 OS << "\n.debug_info.dwo contents:\n";
93 for (unsigned i = 0, e = getNumDWOCompileUnits(); i != e; ++i)
94 getDWOCompileUnitAtIndex(i)->dump(OS);
95 }
96
97 if (DumpType == DIDT_All || DumpType == DIDT_StrDwo) {
98 OS << "\n.debug_str.dwo contents:\n";
99 DataExtractor strDWOData(getStringDWOSection(), isLittleEndian(), 0);
100 offset = 0;
101 uint32_t strDWOOffset = 0;
102 while (const char *s = strDWOData.getCStr(&offset)) {
103 OS << format("0x%8.8x: \"%s\"\n", strDWOOffset, s);
104 strDWOOffset = offset;
105 }
106 }
107
108 if (DumpType == DIDT_All || DumpType == DIDT_StrOffsetsDwo) {
109 OS << "\n.debug_str_offsets.dwo contents:\n";
110 DataExtractor strOffsetExt(getStringOffsetDWOSection(), isLittleEndian(), 0);
111 offset = 0;
112 while (offset < getStringOffsetDWOSection().size()) {
113 OS << format("0x%8.8x: ", offset);
114 OS << format("%8.8x\n", strOffsetExt.getU32(&offset));
115 }
Eric Christopher72f7bfb2013-01-15 23:56:56 +0000116 }
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +0000117}
118
119const DWARFDebugAbbrev *DWARFContext::getDebugAbbrev() {
120 if (Abbrev)
121 return Abbrev.get();
122
123 DataExtractor abbrData(getAbbrevSection(), isLittleEndian(), 0);
124
125 Abbrev.reset(new DWARFDebugAbbrev());
126 Abbrev->parse(abbrData);
127 return Abbrev.get();
128}
129
Eric Christopher82de10a2013-01-02 23:52:13 +0000130const DWARFDebugAbbrev *DWARFContext::getDebugAbbrevDWO() {
131 if (AbbrevDWO)
132 return AbbrevDWO.get();
133
134 DataExtractor abbrData(getAbbrevDWOSection(), isLittleEndian(), 0);
135 AbbrevDWO.reset(new DWARFDebugAbbrev());
136 AbbrevDWO->parse(abbrData);
137 return AbbrevDWO.get();
138}
139
Benjamin Kramer358f4fd2011-09-14 01:09:52 +0000140const DWARFDebugAranges *DWARFContext::getDebugAranges() {
141 if (Aranges)
142 return Aranges.get();
143
144 DataExtractor arangesData(getARangeSection(), isLittleEndian(), 0);
145
146 Aranges.reset(new DWARFDebugAranges());
147 Aranges->extract(arangesData);
Alexey Samsonov63a450a2012-11-16 08:36:25 +0000148 // Generate aranges from DIEs: even if .debug_aranges section is present,
149 // it may describe only a small subset of compilation units, so we need to
150 // manually build aranges for the rest of them.
151 Aranges->generate(this);
Benjamin Kramer358f4fd2011-09-14 01:09:52 +0000152 return Aranges.get();
153}
154
Eric Christophere9403c12012-10-16 23:46:25 +0000155const DWARFLineTable *
Benjamin Kramerc26ed9b2011-09-15 20:43:18 +0000156DWARFContext::getLineTableForCompileUnit(DWARFCompileUnit *cu) {
157 if (!Line)
Andrew Kayloree7c0d22013-01-25 22:50:58 +0000158 Line.reset(new DWARFDebugLine(&lineRelocMap()));
Benjamin Kramerb848e972011-09-15 02:12:05 +0000159
Benjamin Kramerc26ed9b2011-09-15 20:43:18 +0000160 unsigned stmtOffset =
161 cu->getCompileUnitDIE()->getAttributeValueAsUnsigned(cu, DW_AT_stmt_list,
162 -1U);
163 if (stmtOffset == -1U)
164 return 0; // No line table for this compile unit.
Benjamin Kramerb848e972011-09-15 02:12:05 +0000165
Benjamin Kramerc26ed9b2011-09-15 20:43:18 +0000166 // See if the line table is cached.
Eric Christophere9403c12012-10-16 23:46:25 +0000167 if (const DWARFLineTable *lt = Line->getLineTable(stmtOffset))
Benjamin Kramerc26ed9b2011-09-15 20:43:18 +0000168 return lt;
169
170 // We have to parse it first.
171 DataExtractor lineData(getLineSection(), isLittleEndian(),
172 cu->getAddressByteSize());
173 return Line->getOrParseLineTable(lineData, stmtOffset);
Benjamin Kramerb848e972011-09-15 02:12:05 +0000174}
175
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +0000176void DWARFContext::parseCompileUnits() {
177 uint32_t offset = 0;
Eric Christopherb69b55f2012-10-16 23:46:23 +0000178 const DataExtractor &DIData = DataExtractor(getInfoSection(),
179 isLittleEndian(), 0);
180 while (DIData.isValidOffset(offset)) {
Eric Christopher82de10a2013-01-02 23:52:13 +0000181 CUs.push_back(DWARFCompileUnit(getDebugAbbrev(), getInfoSection(),
182 getAbbrevSection(), getRangeSection(),
Eric Christopher72f7bfb2013-01-15 23:56:56 +0000183 getStringSection(), StringRef(),
184 getAddrSection(),
Eric Christopherdd8e9f32013-01-07 19:32:41 +0000185 &infoRelocMap(),
Eric Christopher82de10a2013-01-02 23:52:13 +0000186 isLittleEndian()));
Eric Christopherb69b55f2012-10-16 23:46:23 +0000187 if (!CUs.back().extract(DIData, &offset)) {
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +0000188 CUs.pop_back();
189 break;
190 }
191
192 offset = CUs.back().getNextCompileUnitOffset();
193 }
194}
Benjamin Kramer101b1c52011-09-15 20:43:22 +0000195
Eric Christopher82de10a2013-01-02 23:52:13 +0000196void DWARFContext::parseDWOCompileUnits() {
197 uint32_t offset = 0;
198 const DataExtractor &DIData = DataExtractor(getInfoDWOSection(),
199 isLittleEndian(), 0);
200 while (DIData.isValidOffset(offset)) {
201 DWOCUs.push_back(DWARFCompileUnit(getDebugAbbrevDWO(), getInfoDWOSection(),
202 getAbbrevDWOSection(),
203 getRangeDWOSection(),
204 getStringDWOSection(),
Eric Christopherdd8e9f32013-01-07 19:32:41 +0000205 getStringOffsetDWOSection(),
Eric Christopher72f7bfb2013-01-15 23:56:56 +0000206 getAddrSection(),
Eric Christopher82de10a2013-01-02 23:52:13 +0000207 &infoDWORelocMap(),
208 isLittleEndian()));
209 if (!DWOCUs.back().extract(DIData, &offset)) {
210 DWOCUs.pop_back();
211 break;
212 }
213
214 offset = DWOCUs.back().getNextCompileUnitOffset();
215 }
216}
217
Benjamin Kramer101b1c52011-09-15 20:43:22 +0000218namespace {
219 struct OffsetComparator {
220 bool operator()(const DWARFCompileUnit &LHS,
221 const DWARFCompileUnit &RHS) const {
222 return LHS.getOffset() < RHS.getOffset();
223 }
224 bool operator()(const DWARFCompileUnit &LHS, uint32_t RHS) const {
225 return LHS.getOffset() < RHS;
226 }
227 bool operator()(uint32_t LHS, const DWARFCompileUnit &RHS) const {
228 return LHS < RHS.getOffset();
229 }
230 };
231}
232
Alexey Samsonov38a63812012-08-30 07:49:50 +0000233DWARFCompileUnit *DWARFContext::getCompileUnitForOffset(uint32_t Offset) {
Benjamin Kramer101b1c52011-09-15 20:43:22 +0000234 if (CUs.empty())
235 parseCompileUnits();
236
Alexey Samsonov38a63812012-08-30 07:49:50 +0000237 DWARFCompileUnit *CU = std::lower_bound(CUs.begin(), CUs.end(), Offset,
238 OffsetComparator());
239 if (CU != CUs.end())
240 return &*CU;
Benjamin Kramer101b1c52011-09-15 20:43:22 +0000241 return 0;
242}
243
Alexey Samsonov38a63812012-08-30 07:49:50 +0000244DWARFCompileUnit *DWARFContext::getCompileUnitForAddress(uint64_t Address) {
Benjamin Kramer9013db32011-09-15 21:59:13 +0000245 // First, get the offset of the compile unit.
Alexey Samsonov38a63812012-08-30 07:49:50 +0000246 uint32_t CUOffset = getDebugAranges()->findAddress(Address);
Benjamin Kramer101b1c52011-09-15 20:43:22 +0000247 // Retrieve the compile unit.
Alexey Samsonov38a63812012-08-30 07:49:50 +0000248 return getCompileUnitForOffset(CUOffset);
249}
250
Eric Christophere9403c12012-10-16 23:46:25 +0000251static bool getFileNameForCompileUnit(DWARFCompileUnit *CU,
252 const DWARFLineTable *LineTable,
253 uint64_t FileIndex,
254 bool NeedsAbsoluteFilePath,
255 std::string &FileName) {
Alexey Samsonov38a63812012-08-30 07:49:50 +0000256 if (CU == 0 ||
257 LineTable == 0 ||
258 !LineTable->getFileNameByIndex(FileIndex, NeedsAbsoluteFilePath,
259 FileName))
260 return false;
261 if (NeedsAbsoluteFilePath && sys::path::is_relative(FileName)) {
262 // We may still need to append compilation directory of compile unit.
263 SmallString<16> AbsolutePath;
264 if (const char *CompilationDir = CU->getCompilationDir()) {
265 sys::path::append(AbsolutePath, CompilationDir);
266 }
267 sys::path::append(AbsolutePath, FileName);
268 FileName = AbsolutePath.str();
269 }
270 return true;
271}
272
Eric Christophere9403c12012-10-16 23:46:25 +0000273static bool getFileLineInfoForCompileUnit(DWARFCompileUnit *CU,
274 const DWARFLineTable *LineTable,
275 uint64_t Address,
276 bool NeedsAbsoluteFilePath,
277 std::string &FileName,
278 uint32_t &Line, uint32_t &Column) {
Alexey Samsonov5eae90d2012-09-04 08:12:33 +0000279 if (CU == 0 || LineTable == 0)
Alexey Samsonov38a63812012-08-30 07:49:50 +0000280 return false;
281 // Get the index of row we're looking for in the line table.
282 uint32_t RowIndex = LineTable->lookupAddress(Address);
283 if (RowIndex == -1U)
284 return false;
285 // Take file number and line/column from the row.
286 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
287 if (!getFileNameForCompileUnit(CU, LineTable, Row.File,
288 NeedsAbsoluteFilePath, FileName))
289 return false;
290 Line = Row.Line;
291 Column = Row.Column;
292 return true;
293}
294
295DILineInfo DWARFContext::getLineInfoForAddress(uint64_t Address,
296 DILineInfoSpecifier Specifier) {
297 DWARFCompileUnit *CU = getCompileUnitForAddress(Address);
298 if (!CU)
Alexey Samsonov3e25c4a2012-07-02 05:54:45 +0000299 return DILineInfo();
Alexey Samsonov38a63812012-08-30 07:49:50 +0000300 std::string FileName = "<invalid>";
301 std::string FunctionName = "<invalid>";
302 uint32_t Line = 0;
303 uint32_t Column = 0;
304 if (Specifier.needs(DILineInfoSpecifier::FunctionName)) {
Alexey Samsonov5eae90d2012-09-04 08:12:33 +0000305 // The address may correspond to instruction in some inlined function,
306 // so we have to build the chain of inlined functions and take the
307 // name of the topmost function in it.
308 const DWARFDebugInfoEntryMinimal::InlinedChain &InlinedChain =
309 CU->getInlinedChainForAddress(Address);
310 if (InlinedChain.size() > 0) {
311 const DWARFDebugInfoEntryMinimal &TopFunctionDIE = InlinedChain[0];
312 if (const char *Name = TopFunctionDIE.getSubroutineName(CU))
Alexey Samsonov38a63812012-08-30 07:49:50 +0000313 FunctionName = Name;
Alexey Samsonov9d26b0b2012-07-17 15:28:35 +0000314 }
Alexey Samsonov3e25c4a2012-07-02 05:54:45 +0000315 }
Alexey Samsonov38a63812012-08-30 07:49:50 +0000316 if (Specifier.needs(DILineInfoSpecifier::FileLineInfo)) {
Eric Christophere9403c12012-10-16 23:46:25 +0000317 const DWARFLineTable *LineTable = getLineTableForCompileUnit(CU);
Alexey Samsonov38a63812012-08-30 07:49:50 +0000318 const bool NeedsAbsoluteFilePath =
319 Specifier.needs(DILineInfoSpecifier::AbsoluteFilePath);
Alexey Samsonov5eae90d2012-09-04 08:12:33 +0000320 getFileLineInfoForCompileUnit(CU, LineTable, Address,
321 NeedsAbsoluteFilePath,
Alexey Samsonov38a63812012-08-30 07:49:50 +0000322 FileName, Line, Column);
Alexey Samsonov3e25c4a2012-07-02 05:54:45 +0000323 }
Alexey Samsonov38a63812012-08-30 07:49:50 +0000324 return DILineInfo(StringRef(FileName), StringRef(FunctionName),
325 Line, Column);
Benjamin Kramer101b1c52011-09-15 20:43:22 +0000326}
David Blaikie2d24e2a2011-12-20 02:50:00 +0000327
Andrew Kaylore27a7872013-01-26 00:28:05 +0000328DILineInfoTable DWARFContext::getLineInfoForAddressRange(uint64_t Address,
329 uint64_t Size,
330 DILineInfoSpecifier Specifier) {
331 DILineInfoTable Lines;
332 DWARFCompileUnit *CU = getCompileUnitForAddress(Address);
333 if (!CU)
334 return Lines;
335
336 std::string FunctionName = "<invalid>";
337 if (Specifier.needs(DILineInfoSpecifier::FunctionName)) {
338 // The address may correspond to instruction in some inlined function,
339 // so we have to build the chain of inlined functions and take the
340 // name of the topmost function in it.
341 const DWARFDebugInfoEntryMinimal::InlinedChain &InlinedChain =
342 CU->getInlinedChainForAddress(Address);
343 if (InlinedChain.size() > 0) {
344 const DWARFDebugInfoEntryMinimal &TopFunctionDIE = InlinedChain[0];
345 if (const char *Name = TopFunctionDIE.getSubroutineName(CU))
346 FunctionName = Name;
347 }
348 }
349
350 StringRef FuncNameRef = StringRef(FunctionName);
351
352 // If the Specifier says we don't need FileLineInfo, just
353 // return the top-most function at the starting address.
354 if (!Specifier.needs(DILineInfoSpecifier::FileLineInfo)) {
355 Lines.push_back(std::make_pair(Address,
356 DILineInfo(StringRef("<invalid>"),
357 FuncNameRef, 0, 0)));
358 return Lines;
359 }
360
361 const DWARFLineTable *LineTable = getLineTableForCompileUnit(CU);
362 const bool NeedsAbsoluteFilePath =
363 Specifier.needs(DILineInfoSpecifier::AbsoluteFilePath);
364
365 // Get the index of row we're looking for in the line table.
366 std::vector<uint32_t> RowVector;
367 if (!LineTable->lookupAddressRange(Address, Size, RowVector))
368 return Lines;
369
370 uint32_t NumRows = RowVector.size();
371 for (uint32_t i = 0; i < NumRows; ++i) {
372 uint32_t RowIndex = RowVector[i];
373 // Take file number and line/column from the row.
374 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
375 std::string FileName = "<invalid>";
376 getFileNameForCompileUnit(CU, LineTable, Row.File,
377 NeedsAbsoluteFilePath, FileName);
378 Lines.push_back(std::make_pair(Row.Address,
379 DILineInfo(StringRef(FileName),
380 FuncNameRef, Row.Line, Row.Column)));
381 }
382
383 return Lines;
384}
385
Alexey Samsonov5eae90d2012-09-04 08:12:33 +0000386DIInliningInfo DWARFContext::getInliningInfoForAddress(uint64_t Address,
387 DILineInfoSpecifier Specifier) {
388 DWARFCompileUnit *CU = getCompileUnitForAddress(Address);
389 if (!CU)
390 return DIInliningInfo();
391
392 const DWARFDebugInfoEntryMinimal::InlinedChain &InlinedChain =
393 CU->getInlinedChainForAddress(Address);
394 if (InlinedChain.size() == 0)
395 return DIInliningInfo();
396
397 DIInliningInfo InliningInfo;
398 uint32_t CallFile = 0, CallLine = 0, CallColumn = 0;
Eric Christophere9403c12012-10-16 23:46:25 +0000399 const DWARFLineTable *LineTable = 0;
Alexey Samsonov5eae90d2012-09-04 08:12:33 +0000400 for (uint32_t i = 0, n = InlinedChain.size(); i != n; i++) {
401 const DWARFDebugInfoEntryMinimal &FunctionDIE = InlinedChain[i];
402 std::string FileName = "<invalid>";
403 std::string FunctionName = "<invalid>";
404 uint32_t Line = 0;
405 uint32_t Column = 0;
406 // Get function name if necessary.
407 if (Specifier.needs(DILineInfoSpecifier::FunctionName)) {
408 if (const char *Name = FunctionDIE.getSubroutineName(CU))
409 FunctionName = Name;
410 }
411 if (Specifier.needs(DILineInfoSpecifier::FileLineInfo)) {
412 const bool NeedsAbsoluteFilePath =
413 Specifier.needs(DILineInfoSpecifier::AbsoluteFilePath);
414 if (i == 0) {
415 // For the topmost frame, initialize the line table of this
416 // compile unit and fetch file/line info from it.
417 LineTable = getLineTableForCompileUnit(CU);
418 // For the topmost routine, get file/line info from line table.
419 getFileLineInfoForCompileUnit(CU, LineTable, Address,
420 NeedsAbsoluteFilePath,
421 FileName, Line, Column);
422 } else {
423 // Otherwise, use call file, call line and call column from
424 // previous DIE in inlined chain.
425 getFileNameForCompileUnit(CU, LineTable, CallFile,
426 NeedsAbsoluteFilePath, FileName);
427 Line = CallLine;
428 Column = CallColumn;
429 }
430 // Get call file/line/column of a current DIE.
431 if (i + 1 < n) {
432 FunctionDIE.getCallerFrame(CU, CallFile, CallLine, CallColumn);
433 }
434 }
435 DILineInfo Frame(StringRef(FileName), StringRef(FunctionName),
436 Line, Column);
437 InliningInfo.addFrame(Frame);
438 }
439 return InliningInfo;
440}
441
Eric Christopherd1726a42012-11-12 21:40:38 +0000442DWARFContextInMemory::DWARFContextInMemory(object::ObjectFile *Obj) :
NAKAMURA Takumi2af949d2013-01-09 02:45:05 +0000443 IsLittleEndian(Obj->isLittleEndian()) {
Eric Christopherd1726a42012-11-12 21:40:38 +0000444 error_code ec;
445 for (object::section_iterator i = Obj->begin_sections(),
446 e = Obj->end_sections();
447 i != e; i.increment(ec)) {
448 StringRef name;
449 i->getName(name);
450 StringRef data;
451 i->getContents(data);
452
Eric Christopherd1726a42012-11-12 21:40:38 +0000453 name = name.substr(name.find_first_not_of("._")); // Skip . and _ prefixes.
454 if (name == "debug_info")
455 InfoSection = data;
456 else if (name == "debug_abbrev")
457 AbbrevSection = data;
458 else if (name == "debug_line")
459 LineSection = data;
460 else if (name == "debug_aranges")
461 ARangeSection = data;
462 else if (name == "debug_str")
463 StringSection = data;
Eric Christopher82de10a2013-01-02 23:52:13 +0000464 else if (name == "debug_ranges") {
465 // FIXME: Use the other dwo range section when we emit it.
466 RangeDWOSection = data;
Eric Christopherd1726a42012-11-12 21:40:38 +0000467 RangeSection = data;
Eric Christopher82de10a2013-01-02 23:52:13 +0000468 }
469 else if (name == "debug_info.dwo")
470 InfoDWOSection = data;
471 else if (name == "debug_abbrev.dwo")
472 AbbrevDWOSection = data;
473 else if (name == "debug_str.dwo")
474 StringDWOSection = data;
Eric Christopherdd8e9f32013-01-07 19:32:41 +0000475 else if (name == "debug_str_offsets.dwo")
476 StringOffsetDWOSection = data;
Eric Christopher72f7bfb2013-01-15 23:56:56 +0000477 else if (name == "debug_addr")
478 AddrSection = data;
Eric Christopherd1726a42012-11-12 21:40:38 +0000479 // Any more debug info sections go here.
480 else
481 continue;
482
Andrew Kayloree7c0d22013-01-25 22:50:58 +0000483 // TODO: Add support for relocations in other sections as needed.
484 // Record relocations for the debug_info and debug_line sections.
Eric Christopher82de10a2013-01-02 23:52:13 +0000485 RelocAddrMap *Map;
486 if (name == "debug_info")
487 Map = &InfoRelocMap;
488 else if (name == "debug_info.dwo")
489 Map = &InfoDWORelocMap;
Andrew Kayloree7c0d22013-01-25 22:50:58 +0000490 else if (name == "debug_line")
491 Map = &LineRelocMap;
Eric Christopher82de10a2013-01-02 23:52:13 +0000492 else
Eric Christopherd1726a42012-11-12 21:40:38 +0000493 continue;
494
495 if (i->begin_relocations() != i->end_relocations()) {
496 uint64_t SectionSize;
497 i->getSize(SectionSize);
498 for (object::relocation_iterator reloc_i = i->begin_relocations(),
499 reloc_e = i->end_relocations();
500 reloc_i != reloc_e; reloc_i.increment(ec)) {
501 uint64_t Address;
502 reloc_i->getAddress(Address);
503 uint64_t Type;
504 reloc_i->getType(Type);
Andrew Kayloree7c0d22013-01-25 22:50:58 +0000505 uint64_t SymAddr = 0;
506 // ELF relocations may need the symbol address
507 if (Obj->isELF()) {
508 object::SymbolRef Sym;
509 reloc_i->getSymbol(Sym);
510 Sym.getAddress(SymAddr);
511 }
Eric Christopherd1726a42012-11-12 21:40:38 +0000512
513 object::RelocVisitor V(Obj->getFileFormatName());
514 // The section address is always 0 for debug sections.
Andrew Kayloree7c0d22013-01-25 22:50:58 +0000515 object::RelocToApply R(V.visit(Type, *reloc_i, 0, SymAddr));
Eric Christopherd1726a42012-11-12 21:40:38 +0000516 if (V.error()) {
517 SmallString<32> Name;
518 error_code ec(reloc_i->getTypeName(Name));
519 if (ec) {
520 errs() << "Aaaaaa! Nameless relocation! Aaaaaa!\n";
521 }
522 errs() << "error: failed to compute relocation: "
523 << Name << "\n";
524 continue;
525 }
526
527 if (Address + R.Width > SectionSize) {
528 errs() << "error: " << R.Width << "-byte relocation starting "
529 << Address << " bytes into section " << name << " which is "
530 << SectionSize << " bytes long.\n";
531 continue;
532 }
533 if (R.Width > 8) {
534 errs() << "error: can't handle a relocation of more than 8 bytes at "
535 "a time.\n";
536 continue;
537 }
538 DEBUG(dbgs() << "Writing " << format("%p", R.Value)
539 << " at " << format("%p", Address)
540 << " with width " << format("%d", R.Width)
541 << "\n");
Eric Christopher82de10a2013-01-02 23:52:13 +0000542 Map->insert(std::make_pair(Address, std::make_pair(R.Width, R.Value)));
Eric Christopherd1726a42012-11-12 21:40:38 +0000543 }
544 }
545 }
546}
547
David Blaikie2d24e2a2011-12-20 02:50:00 +0000548void DWARFContextInMemory::anchor() { }