blob: b3f1a52e6b7c7315824c924819027f193c80f1ae [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:
156 // The implicit value is stored in the abbreviation as a ULEB128, any
157 // 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);
Greg Clayton6c273762016-10-27 16:32:04 +0000283 default:
284 break;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000285 }
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000286 // In DWARF3 DW_FORM_data4 and DW_FORM_data8 served also as a section offset.
287 // Don't check for DWARF version here, as some producers may still do this
288 // by mistake.
Benjamin Kramer68a29562015-05-25 13:28:03 +0000289 return (Form == DW_FORM_data4 || Form == DW_FORM_data8) &&
290 FC == FC_SectionOffset;
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000291}
292
Greg Claytoncddab272016-10-31 16:46:02 +0000293bool DWARFFormValue::extractValue(const DataExtractor &data,
294 uint32_t *offset_ptr,
David Blaikie07e22442013-09-23 22:44:40 +0000295 const DWARFUnit *cu) {
Greg Claytoncddab272016-10-31 16:46:02 +0000296 U = cu;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000297 bool indirect = false;
298 bool is_block = false;
Craig Topper2617dcc2014-04-15 06:32:26 +0000299 Value.data = nullptr;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000300 // Read the value for the form into value and follow and DW_FORM_indirect
301 // instances we run into
302 do {
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000303 indirect = false;
304 switch (Form) {
305 case DW_FORM_addr:
Eric Christopher7c678de2012-11-07 23:22:07 +0000306 case DW_FORM_ref_addr: {
Greg Claytoncddab272016-10-31 16:46:02 +0000307 if (!U)
Frederic Risse4576d22014-11-12 23:48:04 +0000308 return false;
Alexey Samsonovd60859b2013-04-09 14:09:42 +0000309 uint16_t AddrSize =
310 (Form == DW_FORM_addr)
Greg Claytoncddab272016-10-31 16:46:02 +0000311 ? U->getAddressByteSize()
312 : U->getRefAddrByteSize();
313 RelocAddrMap::const_iterator AI = U->getRelocMap()->find(*offset_ptr);
314 if (AI != U->getRelocMap()->end()) {
Greg Clayton82f12b12016-11-11 16:21:37 +0000315 Value.uval = data.getUnsigned(offset_ptr, AddrSize) + AI->second.second;
Eric Christopher7370b552012-11-12 21:40:38 +0000316 } else
Alexey Samsonovd60859b2013-04-09 14:09:42 +0000317 Value.uval = data.getUnsigned(offset_ptr, AddrSize);
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000318 break;
Alexey Samsonov9cb13d52012-11-12 14:25:36 +0000319 }
Eric Christopherd999bb72012-08-24 01:14:23 +0000320 case DW_FORM_exprloc:
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000321 case DW_FORM_block:
322 Value.uval = data.getULEB128(offset_ptr);
323 is_block = true;
324 break;
325 case DW_FORM_block1:
326 Value.uval = data.getU8(offset_ptr);
327 is_block = true;
328 break;
329 case DW_FORM_block2:
330 Value.uval = data.getU16(offset_ptr);
331 is_block = true;
332 break;
333 case DW_FORM_block4:
334 Value.uval = data.getU32(offset_ptr);
335 is_block = true;
336 break;
337 case DW_FORM_data1:
338 case DW_FORM_ref1:
339 case DW_FORM_flag:
340 Value.uval = data.getU8(offset_ptr);
341 break;
342 case DW_FORM_data2:
343 case DW_FORM_ref2:
344 Value.uval = data.getU16(offset_ptr);
345 break;
346 case DW_FORM_data4:
Greg Clayton04c19282016-11-11 17:38:14 +0000347 case DW_FORM_ref4: {
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000348 Value.uval = data.getU32(offset_ptr);
Greg Claytoncddab272016-10-31 16:46:02 +0000349 if (!U)
Frederic Risse4576d22014-11-12 23:48:04 +0000350 break;
Greg Claytoncddab272016-10-31 16:46:02 +0000351 RelocAddrMap::const_iterator AI = U->getRelocMap()->find(*offset_ptr-4);
352 if (AI != U->getRelocMap()->end())
David Blaikie18e73502013-06-19 21:37:13 +0000353 Value.uval += AI->second.second;
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000354 break;
David Blaikie18e73502013-06-19 21:37:13 +0000355 }
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000356 case DW_FORM_data8:
357 case DW_FORM_ref8:
358 Value.uval = data.getU64(offset_ptr);
359 break;
360 case DW_FORM_sdata:
361 Value.sval = data.getSLEB128(offset_ptr);
362 break;
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000363 case DW_FORM_udata:
364 case DW_FORM_ref_udata:
365 Value.uval = data.getULEB128(offset_ptr);
366 break;
367 case DW_FORM_string:
368 Value.cstr = data.getCStr(offset_ptr);
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000369 break;
370 case DW_FORM_indirect:
Greg Clayton6c273762016-10-27 16:32:04 +0000371 Form = static_cast<dwarf::Form>(data.getULEB128(offset_ptr));
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000372 indirect = true;
373 break;
Greg Clayton04c19282016-11-11 17:38:14 +0000374 case DW_FORM_strp:
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000375 case DW_FORM_sec_offset:
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000376 case DW_FORM_GNU_ref_alt:
Greg Clayton82f12b12016-11-11 16:21:37 +0000377 case DW_FORM_GNU_strp_alt:
378 case DW_FORM_line_strp:
379 case DW_FORM_strp_sup:
380 case DW_FORM_ref_sup: {
Greg Claytoncddab272016-10-31 16:46:02 +0000381 if (!U)
Greg Clayton82f12b12016-11-11 16:21:37 +0000382 return false;
383 RelocAddrMap::const_iterator AI = U->getRelocMap()->find(*offset_ptr);
384 uint8_t Size = U->getDwarfOffsetByteSize();
385 Value.uval = data.getUnsigned(offset_ptr, Size);
Greg Claytoncddab272016-10-31 16:46:02 +0000386 if (AI != U->getRelocMap()->end())
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000387 Value.uval += AI->second.second;
Eric Christopherd999bb72012-08-24 01:14:23 +0000388 break;
Eric Christopher55863be2013-04-07 03:43:09 +0000389 }
Eric Christopherd999bb72012-08-24 01:14:23 +0000390 case DW_FORM_flag_present:
391 Value.uval = 1;
392 break;
393 case DW_FORM_ref_sig8:
394 Value.uval = data.getU64(offset_ptr);
395 break;
Eric Christopher59c53c22012-11-16 23:44:11 +0000396 case DW_FORM_GNU_addr_index:
Eric Christopher59c53c22012-11-16 23:44:11 +0000397 case DW_FORM_GNU_str_index:
398 Value.uval = data.getULEB128(offset_ptr);
399 break;
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000400 default:
401 return false;
402 }
Benjamin Kramereaa74332011-09-13 21:47:32 +0000403 } while (indirect);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000404
Benjamin Kramereaa74332011-09-13 21:47:32 +0000405 if (is_block) {
406 StringRef str = data.getData().substr(*offset_ptr, Value.uval);
Craig Topper2617dcc2014-04-15 06:32:26 +0000407 Value.data = nullptr;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000408 if (!str.empty()) {
409 Value.data = reinterpret_cast<const uint8_t *>(str.data());
410 *offset_ptr += Value.uval;
411 }
412 }
413
414 return true;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000415}
416
Greg Clayton82f12b12016-11-11 16:21:37 +0000417bool DWARFFormValue::skipValue(DataExtractor DebugInfoData,
418 uint32_t *offset_ptr, const DWARFUnit *U) const {
419 return DWARFFormValue::skipValue(Form, DebugInfoData, offset_ptr, U);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000420}
421
Greg Clayton82f12b12016-11-11 16:21:37 +0000422bool DWARFFormValue::skipValue(dwarf::Form form, DataExtractor DebugInfoData,
423 uint32_t *offset_ptr, const DWARFUnit *U) {
424 return skipFormValue(form, DebugInfoData, offset_ptr, U);
David Blaikiead07b5d2015-12-04 17:20:04 +0000425}
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000426
Greg Clayton82f12b12016-11-11 16:21:37 +0000427bool DWARFFormValue::skipValue(dwarf::Form form, DataExtractor DebugInfoData,
428 uint32_t *offset_ptr, uint16_t Version,
429 uint8_t AddrSize,
430 llvm::dwarf::DwarfFormat Format) {
431 FormSizeHelper FSH(Version, AddrSize, Format);
432 return skipFormValue(form, DebugInfoData, offset_ptr, &FSH);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000433}
434
435void
Greg Claytoncddab272016-10-31 16:46:02 +0000436DWARFFormValue::dump(raw_ostream &OS) const {
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000437 uint64_t uvalue = Value.uval;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000438 bool cu_relative_offset = false;
439
Benjamin Kramereaa74332011-09-13 21:47:32 +0000440 switch (Form) {
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000441 case DW_FORM_addr: OS << format("0x%016" PRIx64, uvalue); break;
Eric Christopher962c9082013-01-15 23:56:56 +0000442 case DW_FORM_GNU_addr_index: {
Eric Christopher962c9082013-01-15 23:56:56 +0000443 OS << format(" indexed (%8.8x) address = ", (uint32_t)uvalue);
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000444 uint64_t Address;
Greg Claytoncddab272016-10-31 16:46:02 +0000445 if (U == nullptr)
446 OS << "<invalid dwarf unit>";
447 else if (U->getAddrOffsetSectionItem(uvalue, Address))
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000448 OS << format("0x%016" PRIx64, Address);
449 else
Eric Christopher962c9082013-01-15 23:56:56 +0000450 OS << "<no .debug_addr section>";
451 break;
452 }
Eric Christopherd999bb72012-08-24 01:14:23 +0000453 case DW_FORM_flag_present: OS << "true"; break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000454 case DW_FORM_flag:
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000455 case DW_FORM_data1: OS << format("0x%02x", (uint8_t)uvalue); break;
456 case DW_FORM_data2: OS << format("0x%04x", (uint16_t)uvalue); break;
457 case DW_FORM_data4: OS << format("0x%08x", (uint32_t)uvalue); break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000458 case DW_FORM_ref_sig8:
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000459 case DW_FORM_data8: OS << format("0x%016" PRIx64, uvalue); break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000460 case DW_FORM_string:
461 OS << '"';
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000462 OS.write_escaped(Value.cstr);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000463 OS << '"';
464 break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000465 case DW_FORM_exprloc:
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000466 case DW_FORM_block:
467 case DW_FORM_block1:
468 case DW_FORM_block2:
469 case DW_FORM_block4:
470 if (uvalue > 0) {
471 switch (Form) {
Eric Christopherd999bb72012-08-24 01:14:23 +0000472 case DW_FORM_exprloc:
Benjamin Kramerf3da5292011-11-05 08:57:40 +0000473 case DW_FORM_block: OS << format("<0x%" PRIx64 "> ", uvalue); break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000474 case DW_FORM_block1: OS << format("<0x%2.2x> ", (uint8_t)uvalue); break;
475 case DW_FORM_block2: OS << format("<0x%4.4x> ", (uint16_t)uvalue); break;
476 case DW_FORM_block4: OS << format("<0x%8.8x> ", (uint32_t)uvalue); break;
477 default: break;
478 }
479
480 const uint8_t* data_ptr = Value.data;
481 if (data_ptr) {
482 // uvalue contains size of block
483 const uint8_t* end_data_ptr = data_ptr + uvalue;
484 while (data_ptr < end_data_ptr) {
485 OS << format("%2.2x ", *data_ptr);
486 ++data_ptr;
487 }
488 }
489 else
490 OS << "NULL";
491 }
492 break;
493
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000494 case DW_FORM_sdata: OS << Value.sval; break;
495 case DW_FORM_udata: OS << Value.uval; break;
Benjamin Kramer07d4b1c2011-09-15 16:57:13 +0000496 case DW_FORM_strp: {
497 OS << format(" .debug_str[0x%8.8x] = ", (uint32_t)uvalue);
Greg Claytoncddab272016-10-31 16:46:02 +0000498 dumpString(OS);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000499 break;
Benjamin Kramer07d4b1c2011-09-15 16:57:13 +0000500 }
Eric Christopher2cbd5762013-01-07 19:32:41 +0000501 case DW_FORM_GNU_str_index: {
502 OS << format(" indexed (%8.8x) string = ", (uint32_t)uvalue);
Greg Claytoncddab272016-10-31 16:46:02 +0000503 dumpString(OS);
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000504 break;
505 }
506 case DW_FORM_GNU_strp_alt: {
507 OS << format("alt indirect string, offset: 0x%" PRIx64 "", uvalue);
Greg Claytoncddab272016-10-31 16:46:02 +0000508 dumpString(OS);
Eric Christopher2cbd5762013-01-07 19:32:41 +0000509 break;
510 }
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000511 case DW_FORM_ref_addr:
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000512 OS << format("0x%016" PRIx64, uvalue);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000513 break;
514 case DW_FORM_ref1:
515 cu_relative_offset = true;
516 OS << format("cu + 0x%2.2x", (uint8_t)uvalue);
517 break;
518 case DW_FORM_ref2:
519 cu_relative_offset = true;
520 OS << format("cu + 0x%4.4x", (uint16_t)uvalue);
521 break;
522 case DW_FORM_ref4:
523 cu_relative_offset = true;
524 OS << format("cu + 0x%4.4x", (uint32_t)uvalue);
525 break;
526 case DW_FORM_ref8:
527 cu_relative_offset = true;
Benjamin Kramerf3da5292011-11-05 08:57:40 +0000528 OS << format("cu + 0x%8.8" PRIx64, uvalue);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000529 break;
530 case DW_FORM_ref_udata:
531 cu_relative_offset = true;
Benjamin Kramerf3da5292011-11-05 08:57:40 +0000532 OS << format("cu + 0x%" PRIx64, uvalue);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000533 break;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000534 case DW_FORM_GNU_ref_alt:
535 OS << format("<alt 0x%" PRIx64 ">", uvalue);
536 break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000537
538 // All DW_FORM_indirect attributes should be resolved prior to calling
539 // this function
540 case DW_FORM_indirect:
541 OS << "DW_FORM_indirect";
542 break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000543
Eric Christopher4c7765f2013-01-17 03:00:04 +0000544 // Should be formatted to 64-bit for DWARF64.
Eric Christopherd999bb72012-08-24 01:14:23 +0000545 case DW_FORM_sec_offset:
Eric Christopher4c7765f2013-01-17 03:00:04 +0000546 OS << format("0x%08x", (uint32_t)uvalue);
Eric Christopherd999bb72012-08-24 01:14:23 +0000547 break;
Eric Christopherb2120fd2013-01-07 22:40:48 +0000548
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000549 default:
550 OS << format("DW_FORM(0x%4.4x)", Form);
551 break;
552 }
553
Adrian Prantl0c36a752015-01-06 16:50:25 +0000554 if (cu_relative_offset) {
555 OS << " => {";
556 WithColor(OS, syntax::Address).get()
Greg Claytoncddab272016-10-31 16:46:02 +0000557 << format("0x%8.8" PRIx64, uvalue + (U ? U->getOffset() : 0));
Adrian Prantl0c36a752015-01-06 16:50:25 +0000558 OS << "}";
559 }
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000560}
561
Greg Claytoncddab272016-10-31 16:46:02 +0000562void DWARFFormValue::dumpString(raw_ostream &OS) const {
563 Optional<const char *> DbgStr = getAsCString();
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000564 if (DbgStr.hasValue()) {
565 raw_ostream &COS = WithColor(OS, syntax::String);
566 COS << '"';
567 COS.write_escaped(DbgStr.getValue());
568 COS << '"';
569 }
570}
571
Greg Claytoncddab272016-10-31 16:46:02 +0000572Optional<const char *> DWARFFormValue::getAsCString() const {
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000573 if (!isFormClass(FC_String))
574 return None;
575 if (Form == DW_FORM_string)
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000576 return Value.cstr;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000577 // FIXME: Add support for DW_FORM_GNU_strp_alt
578 if (Form == DW_FORM_GNU_strp_alt || U == nullptr)
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000579 return None;
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000580 uint32_t Offset = Value.uval;
Alexey Samsonov742e6b82013-10-18 07:13:32 +0000581 if (Form == DW_FORM_GNU_str_index) {
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000582 uint32_t StrOffset;
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000583 if (!U->getStringOffsetSectionItem(Offset, StrOffset))
584 return None;
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000585 Offset = StrOffset;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000586 }
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000587 if (const char *Str = U->getStringExtractor().getCStr(&Offset)) {
588 return Str;
589 }
590 return None;
Eric Christopher2cbd5762013-01-07 19:32:41 +0000591}
592
Greg Claytoncddab272016-10-31 16:46:02 +0000593Optional<uint64_t> DWARFFormValue::getAsAddress() const {
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000594 if (!isFormClass(FC_Address))
595 return None;
Alexey Samsonov742e6b82013-10-18 07:13:32 +0000596 if (Form == DW_FORM_GNU_addr_index) {
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000597 uint32_t Index = Value.uval;
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000598 uint64_t Result;
Craig Topper2617dcc2014-04-15 06:32:26 +0000599 if (!U || !U->getAddrOffsetSectionItem(Index, Result))
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000600 return None;
601 return Result;
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000602 }
603 return Value.uval;
Eric Christopher962c9082013-01-15 23:56:56 +0000604}
605
Greg Claytoncddab272016-10-31 16:46:02 +0000606Optional<uint64_t> DWARFFormValue::getAsReference() const {
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000607 if (!isFormClass(FC_Reference))
608 return None;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000609 switch (Form) {
610 case DW_FORM_ref1:
611 case DW_FORM_ref2:
612 case DW_FORM_ref4:
613 case DW_FORM_ref8:
614 case DW_FORM_ref_udata:
Craig Topper2617dcc2014-04-15 06:32:26 +0000615 if (!U)
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000616 return None;
617 return Value.uval + U->getOffset();
618 case DW_FORM_ref_addr:
Greg Clayton82f12b12016-11-11 16:21:37 +0000619 case DW_FORM_ref_sig8:
620 case DW_FORM_GNU_ref_alt:
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000621 return Value.uval;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000622 default:
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000623 return None;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000624 }
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000625}
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000626
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000627Optional<uint64_t> DWARFFormValue::getAsSectionOffset() const {
628 if (!isFormClass(FC_SectionOffset))
629 return None;
630 return Value.uval;
631}
632
633Optional<uint64_t> DWARFFormValue::getAsUnsignedConstant() const {
Frederic Rissf3549a22014-09-04 06:14:35 +0000634 if ((!isFormClass(FC_Constant) && !isFormClass(FC_Flag))
635 || Form == DW_FORM_sdata)
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000636 return None;
637 return Value.uval;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000638}
Frederic Rissf3549a22014-09-04 06:14:35 +0000639
Frederic Riss77f850e2015-03-04 22:07:41 +0000640Optional<int64_t> DWARFFormValue::getAsSignedConstant() const {
641 if ((!isFormClass(FC_Constant) && !isFormClass(FC_Flag)) ||
Matt Arsenault45cbfa52015-10-21 21:10:12 +0000642 (Form == DW_FORM_udata && uint64_t(std::numeric_limits<int64_t>::max()) < Value.uval))
Frederic Riss77f850e2015-03-04 22:07:41 +0000643 return None;
644 switch (Form) {
645 case DW_FORM_data4:
646 return int32_t(Value.uval);
647 case DW_FORM_data2:
648 return int16_t(Value.uval);
649 case DW_FORM_data1:
650 return int8_t(Value.uval);
651 case DW_FORM_sdata:
652 case DW_FORM_data8:
653 default:
654 return Value.sval;
655 }
656}
657
Frederic Risseab17772014-09-04 06:35:09 +0000658Optional<ArrayRef<uint8_t>> DWARFFormValue::getAsBlock() const {
Frederic Rissf3549a22014-09-04 06:14:35 +0000659 if (!isFormClass(FC_Block) && !isFormClass(FC_Exprloc))
660 return None;
Craig Topper0013be12015-09-21 05:32:41 +0000661 return makeArrayRef(Value.data, Value.uval);
Frederic Rissf3549a22014-09-04 06:14:35 +0000662}
663