blob: 0bed1a1e99c23deea31c401031a44f795e3196f7 [file] [log] [blame]
Benjamin Krameraa2f78f2011-09-13 19:42:23 +00001//===-- DWARFFormValue.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
Adrian Prantl0c36a752015-01-06 16:50:25 +000010#include "SyntaxHighlighting.h"
Alexey Samsonov48cbda52013-10-28 23:01:48 +000011#include "llvm/ADT/ArrayRef.h"
12#include "llvm/ADT/StringRef.h"
Zachary Turner82af9432015-01-30 18:07:45 +000013#include "llvm/DebugInfo/DWARF/DWARFCompileUnit.h"
14#include "llvm/DebugInfo/DWARF/DWARFContext.h"
15#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
Eric Christopher7c678de2012-11-07 23:22:07 +000016#include "llvm/Support/Debug.h"
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000017#include "llvm/Support/Dwarf.h"
18#include "llvm/Support/Format.h"
19#include "llvm/Support/raw_ostream.h"
20#include <cassert>
Matt Arsenault45cbfa52015-10-21 21:10:12 +000021#include <limits>
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000022using namespace llvm;
23using namespace dwarf;
Adrian Prantl0c36a752015-01-06 16:50:25 +000024using namespace syntax;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000025
Alexey Samsonov48cbda52013-10-28 23:01:48 +000026static const DWARFFormValue::FormClass DWARF4FormClasses[] = {
27 DWARFFormValue::FC_Unknown, // 0x0
28 DWARFFormValue::FC_Address, // 0x01 DW_FORM_addr
29 DWARFFormValue::FC_Unknown, // 0x02 unused
30 DWARFFormValue::FC_Block, // 0x03 DW_FORM_block2
31 DWARFFormValue::FC_Block, // 0x04 DW_FORM_block4
32 DWARFFormValue::FC_Constant, // 0x05 DW_FORM_data2
33 // --- These can be FC_SectionOffset in DWARF3 and below:
34 DWARFFormValue::FC_Constant, // 0x06 DW_FORM_data4
35 DWARFFormValue::FC_Constant, // 0x07 DW_FORM_data8
36 // ---
37 DWARFFormValue::FC_String, // 0x08 DW_FORM_string
38 DWARFFormValue::FC_Block, // 0x09 DW_FORM_block
39 DWARFFormValue::FC_Block, // 0x0a DW_FORM_block1
40 DWARFFormValue::FC_Constant, // 0x0b DW_FORM_data1
41 DWARFFormValue::FC_Flag, // 0x0c DW_FORM_flag
42 DWARFFormValue::FC_Constant, // 0x0d DW_FORM_sdata
43 DWARFFormValue::FC_String, // 0x0e DW_FORM_strp
44 DWARFFormValue::FC_Constant, // 0x0f DW_FORM_udata
45 DWARFFormValue::FC_Reference, // 0x10 DW_FORM_ref_addr
46 DWARFFormValue::FC_Reference, // 0x11 DW_FORM_ref1
47 DWARFFormValue::FC_Reference, // 0x12 DW_FORM_ref2
48 DWARFFormValue::FC_Reference, // 0x13 DW_FORM_ref4
49 DWARFFormValue::FC_Reference, // 0x14 DW_FORM_ref8
50 DWARFFormValue::FC_Reference, // 0x15 DW_FORM_ref_udata
51 DWARFFormValue::FC_Indirect, // 0x16 DW_FORM_indirect
52 DWARFFormValue::FC_SectionOffset, // 0x17 DW_FORM_sec_offset
53 DWARFFormValue::FC_Exprloc, // 0x18 DW_FORM_exprloc
54 DWARFFormValue::FC_Flag, // 0x19 DW_FORM_flag_present
Alexey Samsonov48cbda52013-10-28 23:01:48 +000055};
56
Greg Clayton82f12b12016-11-11 16:21:37 +000057namespace {
58
59/// A helper class that can be used in DWARFFormValue.cpp functions that need
60/// to know the byte size of DW_FORM values that vary in size depending on the
61/// DWARF version, address byte size, or DWARF32 or DWARF64.
62class FormSizeHelper {
63 uint16_t Version;
64 uint8_t AddrSize;
65 llvm::dwarf::DwarfFormat Format;
66
67public:
68 FormSizeHelper(uint16_t V, uint8_t A, llvm::dwarf::DwarfFormat F)
69 : Version(V), AddrSize(A), Format(F) {}
70 uint8_t getAddressByteSize() const { return AddrSize; }
71 uint8_t getRefAddrByteSize() const {
72 if (Version == 2)
73 return AddrSize;
74 return getDwarfOffsetByteSize();
75 }
76 uint8_t getDwarfOffsetByteSize() const {
77 switch (Format) {
78 case dwarf::DwarfFormat::DWARF32:
79 return 4;
80 case dwarf::DwarfFormat::DWARF64:
81 return 8;
82 }
83 llvm_unreachable("Invalid Format value");
84 }
85};
86
87} // end anonymous namespace
88
89template <class T>
90static Optional<uint8_t> getFixedByteSize(dwarf::Form Form, const T *U) {
91 switch (Form) {
92 case DW_FORM_addr:
93 if (U)
94 return U->getAddressByteSize();
95 return None;
96
97 case DW_FORM_block: // ULEB128 length L followed by L bytes.
98 case DW_FORM_block1: // 1 byte length L followed by L bytes.
99 case DW_FORM_block2: // 2 byte length L followed by L bytes.
100 case DW_FORM_block4: // 4 byte length L followed by L bytes.
101 case DW_FORM_string: // C-string with null terminator.
102 case DW_FORM_sdata: // SLEB128.
103 case DW_FORM_udata: // ULEB128.
104 case DW_FORM_ref_udata: // ULEB128.
105 case DW_FORM_indirect: // ULEB128.
106 case DW_FORM_exprloc: // ULEB128 length L followed by L bytes.
107 case DW_FORM_strx: // ULEB128.
108 case DW_FORM_addrx: // ULEB128.
109 case DW_FORM_loclistx: // ULEB128.
110 case DW_FORM_rnglistx: // ULEB128.
111 case DW_FORM_GNU_addr_index: // ULEB128.
112 case DW_FORM_GNU_str_index: // ULEB128.
113 return None;
114
115 case DW_FORM_ref_addr:
116 if (U)
117 return U->getRefAddrByteSize();
118 return None;
119
120 case DW_FORM_flag:
121 case DW_FORM_data1:
122 case DW_FORM_ref1:
123 return 1;
124
125 case DW_FORM_data2:
126 case DW_FORM_ref2:
127 return 2;
128
129 case DW_FORM_data4:
130 case DW_FORM_ref4:
Greg Clayton82f12b12016-11-11 16:21:37 +0000131 return 4;
132
Greg Clayton04c19282016-11-11 17:38:14 +0000133 case DW_FORM_strp:
Greg Clayton82f12b12016-11-11 16:21:37 +0000134 case DW_FORM_GNU_ref_alt:
135 case DW_FORM_GNU_strp_alt:
136 case DW_FORM_line_strp:
137 case DW_FORM_sec_offset:
138 case DW_FORM_strp_sup:
139 case DW_FORM_ref_sup:
140 if (U)
141 return U->getDwarfOffsetByteSize();
142 return None;
143
144 case DW_FORM_data8:
145 case DW_FORM_ref8:
146 case DW_FORM_ref_sig8:
147 return 8;
148
149 case DW_FORM_flag_present:
150 return 0;
151
152 case DW_FORM_data16:
153 return 16;
154
155 case DW_FORM_implicit_const:
Victor Leschukcbddae72017-01-10 21:18:26 +0000156 // The implicit value is stored in the abbreviation as a SLEB128, and
Greg Clayton82f12b12016-11-11 16:21:37 +0000157 // there no data in debug info.
158 return 0;
159
160 default:
161 llvm_unreachable("Handle this form in this switch statement");
162 }
163 return None;
164}
165
166template <class T>
167static bool skipFormValue(dwarf::Form Form, const DataExtractor &DebugInfoData,
168 uint32_t *OffsetPtr, const T *U) {
169 bool Indirect = false;
170 do {
171 switch (Form) {
Greg Clayton04c19282016-11-11 17:38:14 +0000172 // Blocks of inlined data that have a length field and the data bytes
Greg Clayton82f12b12016-11-11 16:21:37 +0000173 // inlined in the .debug_info.
174 case DW_FORM_exprloc:
175 case DW_FORM_block: {
176 uint64_t size = DebugInfoData.getULEB128(OffsetPtr);
177 *OffsetPtr += size;
178 return true;
179 }
180 case DW_FORM_block1: {
181 uint8_t size = DebugInfoData.getU8(OffsetPtr);
182 *OffsetPtr += size;
183 return true;
184 }
185 case DW_FORM_block2: {
186 uint16_t size = DebugInfoData.getU16(OffsetPtr);
187 *OffsetPtr += size;
188 return true;
189 }
190 case DW_FORM_block4: {
191 uint32_t size = DebugInfoData.getU32(OffsetPtr);
192 *OffsetPtr += size;
193 return true;
194 }
195
196 // Inlined NULL terminated C-strings.
197 case DW_FORM_string:
198 DebugInfoData.getCStr(OffsetPtr);
199 return true;
200
201 case DW_FORM_addr:
202 case DW_FORM_ref_addr:
203 case DW_FORM_flag_present:
204 case DW_FORM_data1:
205 case DW_FORM_data2:
206 case DW_FORM_data4:
207 case DW_FORM_data8:
208 case DW_FORM_flag:
209 case DW_FORM_ref1:
210 case DW_FORM_ref2:
211 case DW_FORM_ref4:
212 case DW_FORM_ref8:
213 case DW_FORM_ref_sig8:
Greg Clayton04c19282016-11-11 17:38:14 +0000214 case DW_FORM_ref_sup:
Greg Clayton82f12b12016-11-11 16:21:37 +0000215 case DW_FORM_sec_offset:
216 case DW_FORM_strp:
Greg Clayton04c19282016-11-11 17:38:14 +0000217 case DW_FORM_strp_sup:
218 case DW_FORM_line_strp:
Greg Clayton82f12b12016-11-11 16:21:37 +0000219 case DW_FORM_GNU_ref_alt:
220 case DW_FORM_GNU_strp_alt:
221 if (Optional<uint8_t> FixedSize = ::getFixedByteSize(Form, U)) {
222 *OffsetPtr += *FixedSize;
223 return true;
224 }
225 return false;
226
227 // signed or unsigned LEB 128 values.
228 case DW_FORM_sdata:
229 DebugInfoData.getSLEB128(OffsetPtr);
230 return true;
231
232 case DW_FORM_udata:
233 case DW_FORM_ref_udata:
234 case DW_FORM_strx:
235 case DW_FORM_addrx:
236 case DW_FORM_loclistx:
237 case DW_FORM_rnglistx:
238 case DW_FORM_GNU_addr_index:
239 case DW_FORM_GNU_str_index:
240 DebugInfoData.getULEB128(OffsetPtr);
241 return true;
242
243 case DW_FORM_indirect:
244 Indirect = true;
245 Form = static_cast<dwarf::Form>(DebugInfoData.getULEB128(OffsetPtr));
246 break;
247
248 default:
249 return false;
250 }
251 } while (Indirect);
252 return true;
253}
254
255Optional<uint8_t> DWARFFormValue::getFixedByteSize(dwarf::Form Form,
256 const DWARFUnit *U) {
257 return ::getFixedByteSize(Form, U);
258}
259
260Optional<uint8_t>
261DWARFFormValue::getFixedByteSize(dwarf::Form Form, uint16_t Version,
262 uint8_t AddrSize,
263 llvm::dwarf::DwarfFormat Format) {
264 FormSizeHelper FSH(Version, AddrSize, Format);
265 return ::getFixedByteSize(Form, &FSH);
266}
267
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000268bool DWARFFormValue::isFormClass(DWARFFormValue::FormClass FC) const {
269 // First, check DWARF4 form classes.
Craig Topper0013be12015-09-21 05:32:41 +0000270 if (Form < makeArrayRef(DWARF4FormClasses).size() &&
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000271 DWARF4FormClasses[Form] == FC)
272 return true;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000273 // Check more forms from DWARF4 and DWARF5 proposals.
274 switch (Form) {
275 case DW_FORM_ref_sig8:
276 case DW_FORM_GNU_ref_alt:
Alexey Samsonovcbd806a2013-10-29 16:32:19 +0000277 return (FC == FC_Reference);
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000278 case DW_FORM_GNU_addr_index:
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000279 return (FC == FC_Address);
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000280 case DW_FORM_GNU_str_index:
281 case DW_FORM_GNU_strp_alt:
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000282 return (FC == FC_String);
Victor Leschukcbddae72017-01-10 21:18:26 +0000283 case DW_FORM_implicit_const:
284 return (FC == FC_Constant);
Greg Clayton6c273762016-10-27 16:32:04 +0000285 default:
286 break;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000287 }
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000288 // In DWARF3 DW_FORM_data4 and DW_FORM_data8 served also as a section offset.
289 // Don't check for DWARF version here, as some producers may still do this
290 // by mistake.
Benjamin Kramer68a29562015-05-25 13:28:03 +0000291 return (Form == DW_FORM_data4 || Form == DW_FORM_data8) &&
292 FC == FC_SectionOffset;
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000293}
294
Greg Claytoncddab272016-10-31 16:46:02 +0000295bool DWARFFormValue::extractValue(const DataExtractor &data,
296 uint32_t *offset_ptr,
David Blaikie07e22442013-09-23 22:44:40 +0000297 const DWARFUnit *cu) {
Greg Claytoncddab272016-10-31 16:46:02 +0000298 U = cu;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000299 bool indirect = false;
300 bool is_block = false;
Craig Topper2617dcc2014-04-15 06:32:26 +0000301 Value.data = nullptr;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000302 // Read the value for the form into value and follow and DW_FORM_indirect
303 // instances we run into
304 do {
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000305 indirect = false;
306 switch (Form) {
307 case DW_FORM_addr:
Eric Christopher7c678de2012-11-07 23:22:07 +0000308 case DW_FORM_ref_addr: {
Greg Claytoncddab272016-10-31 16:46:02 +0000309 if (!U)
Frederic Risse4576d22014-11-12 23:48:04 +0000310 return false;
Alexey Samsonovd60859b2013-04-09 14:09:42 +0000311 uint16_t AddrSize =
312 (Form == DW_FORM_addr)
Greg Claytoncddab272016-10-31 16:46:02 +0000313 ? U->getAddressByteSize()
314 : U->getRefAddrByteSize();
315 RelocAddrMap::const_iterator AI = U->getRelocMap()->find(*offset_ptr);
316 if (AI != U->getRelocMap()->end()) {
Greg Clayton82f12b12016-11-11 16:21:37 +0000317 Value.uval = data.getUnsigned(offset_ptr, AddrSize) + AI->second.second;
Eric Christopher7370b552012-11-12 21:40:38 +0000318 } else
Alexey Samsonovd60859b2013-04-09 14:09:42 +0000319 Value.uval = data.getUnsigned(offset_ptr, AddrSize);
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000320 break;
Alexey Samsonov9cb13d52012-11-12 14:25:36 +0000321 }
Eric Christopherd999bb72012-08-24 01:14:23 +0000322 case DW_FORM_exprloc:
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000323 case DW_FORM_block:
324 Value.uval = data.getULEB128(offset_ptr);
325 is_block = true;
326 break;
327 case DW_FORM_block1:
328 Value.uval = data.getU8(offset_ptr);
329 is_block = true;
330 break;
331 case DW_FORM_block2:
332 Value.uval = data.getU16(offset_ptr);
333 is_block = true;
334 break;
335 case DW_FORM_block4:
336 Value.uval = data.getU32(offset_ptr);
337 is_block = true;
338 break;
339 case DW_FORM_data1:
340 case DW_FORM_ref1:
341 case DW_FORM_flag:
342 Value.uval = data.getU8(offset_ptr);
343 break;
344 case DW_FORM_data2:
345 case DW_FORM_ref2:
346 Value.uval = data.getU16(offset_ptr);
347 break;
348 case DW_FORM_data4:
Greg Clayton04c19282016-11-11 17:38:14 +0000349 case DW_FORM_ref4: {
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000350 Value.uval = data.getU32(offset_ptr);
Greg Claytoncddab272016-10-31 16:46:02 +0000351 if (!U)
Frederic Risse4576d22014-11-12 23:48:04 +0000352 break;
Greg Claytoncddab272016-10-31 16:46:02 +0000353 RelocAddrMap::const_iterator AI = U->getRelocMap()->find(*offset_ptr-4);
354 if (AI != U->getRelocMap()->end())
David Blaikie18e73502013-06-19 21:37:13 +0000355 Value.uval += AI->second.second;
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000356 break;
David Blaikie18e73502013-06-19 21:37:13 +0000357 }
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000358 case DW_FORM_data8:
359 case DW_FORM_ref8:
360 Value.uval = data.getU64(offset_ptr);
361 break;
362 case DW_FORM_sdata:
363 Value.sval = data.getSLEB128(offset_ptr);
364 break;
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000365 case DW_FORM_udata:
366 case DW_FORM_ref_udata:
367 Value.uval = data.getULEB128(offset_ptr);
368 break;
369 case DW_FORM_string:
370 Value.cstr = data.getCStr(offset_ptr);
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000371 break;
372 case DW_FORM_indirect:
Greg Clayton6c273762016-10-27 16:32:04 +0000373 Form = static_cast<dwarf::Form>(data.getULEB128(offset_ptr));
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000374 indirect = true;
375 break;
Greg Clayton04c19282016-11-11 17:38:14 +0000376 case DW_FORM_strp:
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000377 case DW_FORM_sec_offset:
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000378 case DW_FORM_GNU_ref_alt:
Greg Clayton82f12b12016-11-11 16:21:37 +0000379 case DW_FORM_GNU_strp_alt:
380 case DW_FORM_line_strp:
381 case DW_FORM_strp_sup:
382 case DW_FORM_ref_sup: {
Greg Claytoncddab272016-10-31 16:46:02 +0000383 if (!U)
Greg Clayton82f12b12016-11-11 16:21:37 +0000384 return false;
385 RelocAddrMap::const_iterator AI = U->getRelocMap()->find(*offset_ptr);
386 uint8_t Size = U->getDwarfOffsetByteSize();
387 Value.uval = data.getUnsigned(offset_ptr, Size);
Greg Claytoncddab272016-10-31 16:46:02 +0000388 if (AI != U->getRelocMap()->end())
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000389 Value.uval += AI->second.second;
Eric Christopherd999bb72012-08-24 01:14:23 +0000390 break;
Eric Christopher55863be2013-04-07 03:43:09 +0000391 }
Eric Christopherd999bb72012-08-24 01:14:23 +0000392 case DW_FORM_flag_present:
393 Value.uval = 1;
394 break;
395 case DW_FORM_ref_sig8:
396 Value.uval = data.getU64(offset_ptr);
397 break;
Eric Christopher59c53c22012-11-16 23:44:11 +0000398 case DW_FORM_GNU_addr_index:
Eric Christopher59c53c22012-11-16 23:44:11 +0000399 case DW_FORM_GNU_str_index:
400 Value.uval = data.getULEB128(offset_ptr);
401 break;
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000402 default:
Greg Clayton0e62ee72017-01-13 00:13:42 +0000403 // DWARFFormValue::skipValue() will have caught this and caused all
404 // DWARF DIEs to fail to be parsed, so this code is not be reachable.
405 llvm_unreachable("unsupported form");
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000406 }
Benjamin Kramereaa74332011-09-13 21:47:32 +0000407 } while (indirect);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000408
Benjamin Kramereaa74332011-09-13 21:47:32 +0000409 if (is_block) {
410 StringRef str = data.getData().substr(*offset_ptr, Value.uval);
Craig Topper2617dcc2014-04-15 06:32:26 +0000411 Value.data = nullptr;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000412 if (!str.empty()) {
413 Value.data = reinterpret_cast<const uint8_t *>(str.data());
414 *offset_ptr += Value.uval;
415 }
416 }
417
418 return true;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000419}
420
Greg Clayton82f12b12016-11-11 16:21:37 +0000421bool DWARFFormValue::skipValue(DataExtractor DebugInfoData,
422 uint32_t *offset_ptr, const DWARFUnit *U) const {
423 return DWARFFormValue::skipValue(Form, DebugInfoData, offset_ptr, U);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000424}
425
Greg Clayton82f12b12016-11-11 16:21:37 +0000426bool DWARFFormValue::skipValue(dwarf::Form form, DataExtractor DebugInfoData,
427 uint32_t *offset_ptr, const DWARFUnit *U) {
428 return skipFormValue(form, DebugInfoData, offset_ptr, U);
David Blaikiead07b5d2015-12-04 17:20:04 +0000429}
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000430
Greg Clayton82f12b12016-11-11 16:21:37 +0000431bool DWARFFormValue::skipValue(dwarf::Form form, DataExtractor DebugInfoData,
432 uint32_t *offset_ptr, uint16_t Version,
433 uint8_t AddrSize,
434 llvm::dwarf::DwarfFormat Format) {
435 FormSizeHelper FSH(Version, AddrSize, Format);
436 return skipFormValue(form, DebugInfoData, offset_ptr, &FSH);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000437}
438
439void
Greg Claytoncddab272016-10-31 16:46:02 +0000440DWARFFormValue::dump(raw_ostream &OS) const {
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000441 uint64_t uvalue = Value.uval;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000442 bool cu_relative_offset = false;
443
Benjamin Kramereaa74332011-09-13 21:47:32 +0000444 switch (Form) {
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000445 case DW_FORM_addr: OS << format("0x%016" PRIx64, uvalue); break;
Eric Christopher962c9082013-01-15 23:56:56 +0000446 case DW_FORM_GNU_addr_index: {
Eric Christopher962c9082013-01-15 23:56:56 +0000447 OS << format(" indexed (%8.8x) address = ", (uint32_t)uvalue);
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000448 uint64_t Address;
Greg Claytoncddab272016-10-31 16:46:02 +0000449 if (U == nullptr)
450 OS << "<invalid dwarf unit>";
451 else if (U->getAddrOffsetSectionItem(uvalue, Address))
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000452 OS << format("0x%016" PRIx64, Address);
453 else
Eric Christopher962c9082013-01-15 23:56:56 +0000454 OS << "<no .debug_addr section>";
455 break;
456 }
Eric Christopherd999bb72012-08-24 01:14:23 +0000457 case DW_FORM_flag_present: OS << "true"; break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000458 case DW_FORM_flag:
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000459 case DW_FORM_data1: OS << format("0x%02x", (uint8_t)uvalue); break;
460 case DW_FORM_data2: OS << format("0x%04x", (uint16_t)uvalue); break;
461 case DW_FORM_data4: OS << format("0x%08x", (uint32_t)uvalue); break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000462 case DW_FORM_ref_sig8:
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000463 case DW_FORM_data8: OS << format("0x%016" PRIx64, uvalue); break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000464 case DW_FORM_string:
465 OS << '"';
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000466 OS.write_escaped(Value.cstr);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000467 OS << '"';
468 break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000469 case DW_FORM_exprloc:
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000470 case DW_FORM_block:
471 case DW_FORM_block1:
472 case DW_FORM_block2:
473 case DW_FORM_block4:
474 if (uvalue > 0) {
475 switch (Form) {
Eric Christopherd999bb72012-08-24 01:14:23 +0000476 case DW_FORM_exprloc:
Benjamin Kramerf3da5292011-11-05 08:57:40 +0000477 case DW_FORM_block: OS << format("<0x%" PRIx64 "> ", uvalue); break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000478 case DW_FORM_block1: OS << format("<0x%2.2x> ", (uint8_t)uvalue); break;
479 case DW_FORM_block2: OS << format("<0x%4.4x> ", (uint16_t)uvalue); break;
480 case DW_FORM_block4: OS << format("<0x%8.8x> ", (uint32_t)uvalue); break;
481 default: break;
482 }
483
484 const uint8_t* data_ptr = Value.data;
485 if (data_ptr) {
486 // uvalue contains size of block
487 const uint8_t* end_data_ptr = data_ptr + uvalue;
488 while (data_ptr < end_data_ptr) {
489 OS << format("%2.2x ", *data_ptr);
490 ++data_ptr;
491 }
492 }
493 else
494 OS << "NULL";
495 }
496 break;
497
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000498 case DW_FORM_sdata: OS << Value.sval; break;
499 case DW_FORM_udata: OS << Value.uval; break;
Benjamin Kramer07d4b1c2011-09-15 16:57:13 +0000500 case DW_FORM_strp: {
501 OS << format(" .debug_str[0x%8.8x] = ", (uint32_t)uvalue);
Greg Claytoncddab272016-10-31 16:46:02 +0000502 dumpString(OS);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000503 break;
Benjamin Kramer07d4b1c2011-09-15 16:57:13 +0000504 }
Eric Christopher2cbd5762013-01-07 19:32:41 +0000505 case DW_FORM_GNU_str_index: {
506 OS << format(" indexed (%8.8x) string = ", (uint32_t)uvalue);
Greg Claytoncddab272016-10-31 16:46:02 +0000507 dumpString(OS);
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000508 break;
509 }
510 case DW_FORM_GNU_strp_alt: {
511 OS << format("alt indirect string, offset: 0x%" PRIx64 "", uvalue);
Greg Claytoncddab272016-10-31 16:46:02 +0000512 dumpString(OS);
Eric Christopher2cbd5762013-01-07 19:32:41 +0000513 break;
514 }
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000515 case DW_FORM_ref_addr:
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000516 OS << format("0x%016" PRIx64, uvalue);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000517 break;
518 case DW_FORM_ref1:
519 cu_relative_offset = true;
520 OS << format("cu + 0x%2.2x", (uint8_t)uvalue);
521 break;
522 case DW_FORM_ref2:
523 cu_relative_offset = true;
524 OS << format("cu + 0x%4.4x", (uint16_t)uvalue);
525 break;
526 case DW_FORM_ref4:
527 cu_relative_offset = true;
528 OS << format("cu + 0x%4.4x", (uint32_t)uvalue);
529 break;
530 case DW_FORM_ref8:
531 cu_relative_offset = true;
Benjamin Kramerf3da5292011-11-05 08:57:40 +0000532 OS << format("cu + 0x%8.8" PRIx64, uvalue);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000533 break;
534 case DW_FORM_ref_udata:
535 cu_relative_offset = true;
Benjamin Kramerf3da5292011-11-05 08:57:40 +0000536 OS << format("cu + 0x%" PRIx64, uvalue);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000537 break;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000538 case DW_FORM_GNU_ref_alt:
539 OS << format("<alt 0x%" PRIx64 ">", uvalue);
540 break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000541
542 // All DW_FORM_indirect attributes should be resolved prior to calling
543 // this function
544 case DW_FORM_indirect:
545 OS << "DW_FORM_indirect";
546 break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000547
Eric Christopher4c7765f2013-01-17 03:00:04 +0000548 // Should be formatted to 64-bit for DWARF64.
Eric Christopherd999bb72012-08-24 01:14:23 +0000549 case DW_FORM_sec_offset:
Eric Christopher4c7765f2013-01-17 03:00:04 +0000550 OS << format("0x%08x", (uint32_t)uvalue);
Eric Christopherd999bb72012-08-24 01:14:23 +0000551 break;
Eric Christopherb2120fd2013-01-07 22:40:48 +0000552
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000553 default:
554 OS << format("DW_FORM(0x%4.4x)", Form);
555 break;
556 }
557
Adrian Prantl0c36a752015-01-06 16:50:25 +0000558 if (cu_relative_offset) {
559 OS << " => {";
560 WithColor(OS, syntax::Address).get()
Greg Claytoncddab272016-10-31 16:46:02 +0000561 << format("0x%8.8" PRIx64, uvalue + (U ? U->getOffset() : 0));
Adrian Prantl0c36a752015-01-06 16:50:25 +0000562 OS << "}";
563 }
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000564}
565
Greg Claytoncddab272016-10-31 16:46:02 +0000566void DWARFFormValue::dumpString(raw_ostream &OS) const {
567 Optional<const char *> DbgStr = getAsCString();
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000568 if (DbgStr.hasValue()) {
569 raw_ostream &COS = WithColor(OS, syntax::String);
570 COS << '"';
571 COS.write_escaped(DbgStr.getValue());
572 COS << '"';
573 }
574}
575
Greg Claytoncddab272016-10-31 16:46:02 +0000576Optional<const char *> DWARFFormValue::getAsCString() const {
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000577 if (!isFormClass(FC_String))
578 return None;
579 if (Form == DW_FORM_string)
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000580 return Value.cstr;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000581 // FIXME: Add support for DW_FORM_GNU_strp_alt
582 if (Form == DW_FORM_GNU_strp_alt || U == nullptr)
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000583 return None;
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000584 uint32_t Offset = Value.uval;
Alexey Samsonov742e6b82013-10-18 07:13:32 +0000585 if (Form == DW_FORM_GNU_str_index) {
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000586 uint32_t StrOffset;
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000587 if (!U->getStringOffsetSectionItem(Offset, StrOffset))
588 return None;
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000589 Offset = StrOffset;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000590 }
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000591 if (const char *Str = U->getStringExtractor().getCStr(&Offset)) {
592 return Str;
593 }
594 return None;
Eric Christopher2cbd5762013-01-07 19:32:41 +0000595}
596
Greg Claytoncddab272016-10-31 16:46:02 +0000597Optional<uint64_t> DWARFFormValue::getAsAddress() const {
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000598 if (!isFormClass(FC_Address))
599 return None;
Alexey Samsonov742e6b82013-10-18 07:13:32 +0000600 if (Form == DW_FORM_GNU_addr_index) {
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000601 uint32_t Index = Value.uval;
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000602 uint64_t Result;
Craig Topper2617dcc2014-04-15 06:32:26 +0000603 if (!U || !U->getAddrOffsetSectionItem(Index, Result))
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000604 return None;
605 return Result;
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000606 }
607 return Value.uval;
Eric Christopher962c9082013-01-15 23:56:56 +0000608}
609
Greg Claytoncddab272016-10-31 16:46:02 +0000610Optional<uint64_t> DWARFFormValue::getAsReference() const {
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000611 if (!isFormClass(FC_Reference))
612 return None;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000613 switch (Form) {
614 case DW_FORM_ref1:
615 case DW_FORM_ref2:
616 case DW_FORM_ref4:
617 case DW_FORM_ref8:
618 case DW_FORM_ref_udata:
Craig Topper2617dcc2014-04-15 06:32:26 +0000619 if (!U)
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000620 return None;
621 return Value.uval + U->getOffset();
622 case DW_FORM_ref_addr:
Greg Clayton82f12b12016-11-11 16:21:37 +0000623 case DW_FORM_ref_sig8:
624 case DW_FORM_GNU_ref_alt:
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000625 return Value.uval;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000626 default:
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000627 return None;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000628 }
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000629}
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000630
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000631Optional<uint64_t> DWARFFormValue::getAsSectionOffset() const {
632 if (!isFormClass(FC_SectionOffset))
633 return None;
634 return Value.uval;
635}
636
637Optional<uint64_t> DWARFFormValue::getAsUnsignedConstant() const {
Frederic Rissf3549a22014-09-04 06:14:35 +0000638 if ((!isFormClass(FC_Constant) && !isFormClass(FC_Flag))
639 || Form == DW_FORM_sdata)
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000640 return None;
641 return Value.uval;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000642}
Frederic Rissf3549a22014-09-04 06:14:35 +0000643
Frederic Riss77f850e2015-03-04 22:07:41 +0000644Optional<int64_t> DWARFFormValue::getAsSignedConstant() const {
645 if ((!isFormClass(FC_Constant) && !isFormClass(FC_Flag)) ||
Matt Arsenault45cbfa52015-10-21 21:10:12 +0000646 (Form == DW_FORM_udata && uint64_t(std::numeric_limits<int64_t>::max()) < Value.uval))
Frederic Riss77f850e2015-03-04 22:07:41 +0000647 return None;
648 switch (Form) {
649 case DW_FORM_data4:
650 return int32_t(Value.uval);
651 case DW_FORM_data2:
652 return int16_t(Value.uval);
653 case DW_FORM_data1:
654 return int8_t(Value.uval);
655 case DW_FORM_sdata:
656 case DW_FORM_data8:
657 default:
658 return Value.sval;
659 }
660}
661
Frederic Risseab17772014-09-04 06:35:09 +0000662Optional<ArrayRef<uint8_t>> DWARFFormValue::getAsBlock() const {
Frederic Rissf3549a22014-09-04 06:14:35 +0000663 if (!isFormClass(FC_Block) && !isFormClass(FC_Exprloc))
664 return None;
Craig Topper0013be12015-09-21 05:32:41 +0000665 return makeArrayRef(Value.data, Value.uval);
Frederic Rissf3549a22014-09-04 06:14:35 +0000666}
667
Chris Bienemane0e451d2016-12-22 22:44:27 +0000668Optional<uint64_t> DWARFFormValue::getAsCStringOffset() const {
669 if (!isFormClass(FC_String) && Form == DW_FORM_string)
670 return None;
671 return Value.uval;
672}
673
674Optional<uint64_t> DWARFFormValue::getAsReferenceUVal() const {
675 if (!isFormClass(FC_Reference))
676 return None;
677 return Value.uval;
678}
679