blob: 3dc58423df681dfbe0791a2d0df406d8d1dab48c [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
Benjamin Kramerc86fdf12013-04-11 11:36:36 +000026namespace {
Alexey Samsonovcbd806a2013-10-29 16:32:19 +000027uint8_t getRefAddrSize(uint8_t AddrSize, uint16_t Version) {
28 // FIXME: Support DWARF64.
29 return (Version == 2) ? AddrSize : 4;
Benjamin Kramerc86fdf12013-04-11 11:36:36 +000030}
Alexey Samsonovd60859b2013-04-09 14:09:42 +000031
32template <uint8_t AddrSize, uint8_t RefAddrSize>
Alexey Samsonovcbd806a2013-10-29 16:32:19 +000033ArrayRef<uint8_t> makeFixedFormSizesArrayRef() {
34 static const uint8_t sizes[] = {
35 0, // 0x00 unused
36 AddrSize, // 0x01 DW_FORM_addr
37 0, // 0x02 unused
38 0, // 0x03 DW_FORM_block2
39 0, // 0x04 DW_FORM_block4
40 2, // 0x05 DW_FORM_data2
41 4, // 0x06 DW_FORM_data4
42 8, // 0x07 DW_FORM_data8
43 0, // 0x08 DW_FORM_string
44 0, // 0x09 DW_FORM_block
45 0, // 0x0a DW_FORM_block1
46 1, // 0x0b DW_FORM_data1
47 1, // 0x0c DW_FORM_flag
48 0, // 0x0d DW_FORM_sdata
49 4, // 0x0e DW_FORM_strp
50 0, // 0x0f DW_FORM_udata
51 RefAddrSize, // 0x10 DW_FORM_ref_addr
52 1, // 0x11 DW_FORM_ref1
53 2, // 0x12 DW_FORM_ref2
54 4, // 0x13 DW_FORM_ref4
55 8, // 0x14 DW_FORM_ref8
56 0, // 0x15 DW_FORM_ref_udata
57 0, // 0x16 DW_FORM_indirect
58 4, // 0x17 DW_FORM_sec_offset
59 0, // 0x18 DW_FORM_exprloc
60 0, // 0x19 DW_FORM_flag_present
61 };
62 return makeArrayRef(sizes);
63}
Alexander Kornienkof00654e2015-06-23 09:49:53 +000064}
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000065
Alexey Samsonova56bbf02013-10-28 23:41:49 +000066ArrayRef<uint8_t> DWARFFormValue::getFixedFormSizes(uint8_t AddrSize,
67 uint16_t Version) {
Alexey Samsonovd60859b2013-04-09 14:09:42 +000068 uint8_t RefAddrSize = getRefAddrSize(AddrSize, Version);
69 if (AddrSize == 4 && RefAddrSize == 4)
Alexey Samsonovcbd806a2013-10-29 16:32:19 +000070 return makeFixedFormSizesArrayRef<4, 4>();
Alexey Samsonovd60859b2013-04-09 14:09:42 +000071 if (AddrSize == 4 && RefAddrSize == 8)
Alexey Samsonovcbd806a2013-10-29 16:32:19 +000072 return makeFixedFormSizesArrayRef<4, 8>();
Alexey Samsonovd60859b2013-04-09 14:09:42 +000073 if (AddrSize == 8 && RefAddrSize == 4)
Alexey Samsonovcbd806a2013-10-29 16:32:19 +000074 return makeFixedFormSizesArrayRef<8, 4>();
Alexey Samsonovd60859b2013-04-09 14:09:42 +000075 if (AddrSize == 8 && RefAddrSize == 8)
Alexey Samsonovcbd806a2013-10-29 16:32:19 +000076 return makeFixedFormSizesArrayRef<8, 8>();
Alexey Samsonova56bbf02013-10-28 23:41:49 +000077 return None;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000078}
79
Alexey Samsonov48cbda52013-10-28 23:01:48 +000080static const DWARFFormValue::FormClass DWARF4FormClasses[] = {
81 DWARFFormValue::FC_Unknown, // 0x0
82 DWARFFormValue::FC_Address, // 0x01 DW_FORM_addr
83 DWARFFormValue::FC_Unknown, // 0x02 unused
84 DWARFFormValue::FC_Block, // 0x03 DW_FORM_block2
85 DWARFFormValue::FC_Block, // 0x04 DW_FORM_block4
86 DWARFFormValue::FC_Constant, // 0x05 DW_FORM_data2
87 // --- These can be FC_SectionOffset in DWARF3 and below:
88 DWARFFormValue::FC_Constant, // 0x06 DW_FORM_data4
89 DWARFFormValue::FC_Constant, // 0x07 DW_FORM_data8
90 // ---
91 DWARFFormValue::FC_String, // 0x08 DW_FORM_string
92 DWARFFormValue::FC_Block, // 0x09 DW_FORM_block
93 DWARFFormValue::FC_Block, // 0x0a DW_FORM_block1
94 DWARFFormValue::FC_Constant, // 0x0b DW_FORM_data1
95 DWARFFormValue::FC_Flag, // 0x0c DW_FORM_flag
96 DWARFFormValue::FC_Constant, // 0x0d DW_FORM_sdata
97 DWARFFormValue::FC_String, // 0x0e DW_FORM_strp
98 DWARFFormValue::FC_Constant, // 0x0f DW_FORM_udata
99 DWARFFormValue::FC_Reference, // 0x10 DW_FORM_ref_addr
100 DWARFFormValue::FC_Reference, // 0x11 DW_FORM_ref1
101 DWARFFormValue::FC_Reference, // 0x12 DW_FORM_ref2
102 DWARFFormValue::FC_Reference, // 0x13 DW_FORM_ref4
103 DWARFFormValue::FC_Reference, // 0x14 DW_FORM_ref8
104 DWARFFormValue::FC_Reference, // 0x15 DW_FORM_ref_udata
105 DWARFFormValue::FC_Indirect, // 0x16 DW_FORM_indirect
106 DWARFFormValue::FC_SectionOffset, // 0x17 DW_FORM_sec_offset
107 DWARFFormValue::FC_Exprloc, // 0x18 DW_FORM_exprloc
108 DWARFFormValue::FC_Flag, // 0x19 DW_FORM_flag_present
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000109};
110
111bool DWARFFormValue::isFormClass(DWARFFormValue::FormClass FC) const {
112 // First, check DWARF4 form classes.
Craig Topper0013be12015-09-21 05:32:41 +0000113 if (Form < makeArrayRef(DWARF4FormClasses).size() &&
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000114 DWARF4FormClasses[Form] == FC)
115 return true;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000116 // Check more forms from DWARF4 and DWARF5 proposals.
117 switch (Form) {
118 case DW_FORM_ref_sig8:
119 case DW_FORM_GNU_ref_alt:
Alexey Samsonovcbd806a2013-10-29 16:32:19 +0000120 return (FC == FC_Reference);
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000121 case DW_FORM_GNU_addr_index:
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000122 return (FC == FC_Address);
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000123 case DW_FORM_GNU_str_index:
124 case DW_FORM_GNU_strp_alt:
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000125 return (FC == FC_String);
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000126 }
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000127 // In DWARF3 DW_FORM_data4 and DW_FORM_data8 served also as a section offset.
128 // Don't check for DWARF version here, as some producers may still do this
129 // by mistake.
Benjamin Kramer68a29562015-05-25 13:28:03 +0000130 return (Form == DW_FORM_data4 || Form == DW_FORM_data8) &&
131 FC == FC_SectionOffset;
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000132}
133
David Blaikie07e22442013-09-23 22:44:40 +0000134bool DWARFFormValue::extractValue(DataExtractor data, uint32_t *offset_ptr,
135 const DWARFUnit *cu) {
Benjamin Kramereaa74332011-09-13 21:47:32 +0000136 bool indirect = false;
137 bool is_block = false;
Craig Topper2617dcc2014-04-15 06:32:26 +0000138 Value.data = nullptr;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000139 // Read the value for the form into value and follow and DW_FORM_indirect
140 // instances we run into
141 do {
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000142 indirect = false;
143 switch (Form) {
144 case DW_FORM_addr:
Eric Christopher7c678de2012-11-07 23:22:07 +0000145 case DW_FORM_ref_addr: {
Frederic Risse4576d22014-11-12 23:48:04 +0000146 if (!cu)
147 return false;
Alexey Samsonovd60859b2013-04-09 14:09:42 +0000148 uint16_t AddrSize =
149 (Form == DW_FORM_addr)
150 ? cu->getAddressByteSize()
151 : getRefAddrSize(cu->getAddressByteSize(), cu->getVersion());
152 RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr);
Eric Christopherda4b2192013-01-02 23:52:13 +0000153 if (AI != cu->getRelocMap()->end()) {
Eric Christopher7370b552012-11-12 21:40:38 +0000154 const std::pair<uint8_t, int64_t> &R = AI->second;
Alexey Samsonovd60859b2013-04-09 14:09:42 +0000155 Value.uval = data.getUnsigned(offset_ptr, AddrSize) + R.second;
Eric Christopher7370b552012-11-12 21:40:38 +0000156 } else
Alexey Samsonovd60859b2013-04-09 14:09:42 +0000157 Value.uval = data.getUnsigned(offset_ptr, AddrSize);
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000158 break;
Alexey Samsonov9cb13d52012-11-12 14:25:36 +0000159 }
Eric Christopherd999bb72012-08-24 01:14:23 +0000160 case DW_FORM_exprloc:
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000161 case DW_FORM_block:
162 Value.uval = data.getULEB128(offset_ptr);
163 is_block = true;
164 break;
165 case DW_FORM_block1:
166 Value.uval = data.getU8(offset_ptr);
167 is_block = true;
168 break;
169 case DW_FORM_block2:
170 Value.uval = data.getU16(offset_ptr);
171 is_block = true;
172 break;
173 case DW_FORM_block4:
174 Value.uval = data.getU32(offset_ptr);
175 is_block = true;
176 break;
177 case DW_FORM_data1:
178 case DW_FORM_ref1:
179 case DW_FORM_flag:
180 Value.uval = data.getU8(offset_ptr);
181 break;
182 case DW_FORM_data2:
183 case DW_FORM_ref2:
184 Value.uval = data.getU16(offset_ptr);
185 break;
186 case DW_FORM_data4:
David Blaikie18e73502013-06-19 21:37:13 +0000187 case DW_FORM_ref4: {
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000188 Value.uval = data.getU32(offset_ptr);
Frederic Risse4576d22014-11-12 23:48:04 +0000189 if (!cu)
190 break;
191 RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr-4);
David Blaikie18e73502013-06-19 21:37:13 +0000192 if (AI != cu->getRelocMap()->end())
193 Value.uval += AI->second.second;
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000194 break;
David Blaikie18e73502013-06-19 21:37:13 +0000195 }
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000196 case DW_FORM_data8:
197 case DW_FORM_ref8:
198 Value.uval = data.getU64(offset_ptr);
199 break;
200 case DW_FORM_sdata:
201 Value.sval = data.getSLEB128(offset_ptr);
202 break;
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000203 case DW_FORM_udata:
204 case DW_FORM_ref_udata:
205 Value.uval = data.getULEB128(offset_ptr);
206 break;
207 case DW_FORM_string:
208 Value.cstr = data.getCStr(offset_ptr);
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000209 break;
210 case DW_FORM_indirect:
211 Form = data.getULEB128(offset_ptr);
212 indirect = true;
213 break;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000214 case DW_FORM_sec_offset:
215 case DW_FORM_strp:
216 case DW_FORM_GNU_ref_alt:
217 case DW_FORM_GNU_strp_alt: {
Eric Christopher18266172013-01-17 02:59:59 +0000218 // FIXME: This is 64-bit for DWARF64.
Frederic Risse4576d22014-11-12 23:48:04 +0000219 Value.uval = data.getU32(offset_ptr);
220 if (!cu)
221 break;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000222 RelocAddrMap::const_iterator AI =
223 cu->getRelocMap()->find(*offset_ptr - 4);
Frederic Risse4576d22014-11-12 23:48:04 +0000224 if (AI != cu->getRelocMap()->end())
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000225 Value.uval += AI->second.second;
Eric Christopherd999bb72012-08-24 01:14:23 +0000226 break;
Eric Christopher55863be2013-04-07 03:43:09 +0000227 }
Eric Christopherd999bb72012-08-24 01:14:23 +0000228 case DW_FORM_flag_present:
229 Value.uval = 1;
230 break;
231 case DW_FORM_ref_sig8:
232 Value.uval = data.getU64(offset_ptr);
233 break;
Eric Christopher59c53c22012-11-16 23:44:11 +0000234 case DW_FORM_GNU_addr_index:
Eric Christopher59c53c22012-11-16 23:44:11 +0000235 case DW_FORM_GNU_str_index:
236 Value.uval = data.getULEB128(offset_ptr);
237 break;
Benjamin Kramer123bfbb2011-09-15 03:11:09 +0000238 default:
239 return false;
240 }
Benjamin Kramereaa74332011-09-13 21:47:32 +0000241 } while (indirect);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000242
Benjamin Kramereaa74332011-09-13 21:47:32 +0000243 if (is_block) {
244 StringRef str = data.getData().substr(*offset_ptr, Value.uval);
Craig Topper2617dcc2014-04-15 06:32:26 +0000245 Value.data = nullptr;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000246 if (!str.empty()) {
247 Value.data = reinterpret_cast<const uint8_t *>(str.data());
248 *offset_ptr += Value.uval;
249 }
250 }
251
252 return true;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000253}
254
255bool
256DWARFFormValue::skipValue(DataExtractor debug_info_data, uint32_t* offset_ptr,
David Blaikie07e22442013-09-23 22:44:40 +0000257 const DWARFUnit *cu) const {
Benjamin Kramereaa74332011-09-13 21:47:32 +0000258 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000259}
260
261bool
262DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data,
David Blaikie07e22442013-09-23 22:44:40 +0000263 uint32_t *offset_ptr, const DWARFUnit *cu) {
David Blaikiead07b5d2015-12-04 17:20:04 +0000264 return skipValue(form, debug_info_data, offset_ptr, cu->getVersion(),
265 cu->getAddressByteSize());
266}
267bool DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data,
268 uint32_t *offset_ptr, uint16_t Version,
269 uint8_t AddrSize) {
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000270 bool indirect = false;
271 do {
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000272 switch (form) {
273 // Blocks if inlined data that have a length field and the data bytes
274 // inlined in the .debug_info
Eric Christopherd999bb72012-08-24 01:14:23 +0000275 case DW_FORM_exprloc:
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000276 case DW_FORM_block: {
277 uint64_t size = debug_info_data.getULEB128(offset_ptr);
278 *offset_ptr += size;
279 return true;
280 }
281 case DW_FORM_block1: {
282 uint8_t size = debug_info_data.getU8(offset_ptr);
283 *offset_ptr += size;
284 return true;
285 }
286 case DW_FORM_block2: {
287 uint16_t size = debug_info_data.getU16(offset_ptr);
288 *offset_ptr += size;
289 return true;
290 }
291 case DW_FORM_block4: {
292 uint32_t size = debug_info_data.getU32(offset_ptr);
293 *offset_ptr += size;
294 return true;
295 }
296
297 // Inlined NULL terminated C-strings
298 case DW_FORM_string:
299 debug_info_data.getCStr(offset_ptr);
300 return true;
301
302 // Compile unit address sized values
303 case DW_FORM_addr:
David Blaikiead07b5d2015-12-04 17:20:04 +0000304 *offset_ptr += AddrSize;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000305 return true;
Alexey Samsonovd60859b2013-04-09 14:09:42 +0000306 case DW_FORM_ref_addr:
David Blaikiead07b5d2015-12-04 17:20:04 +0000307 *offset_ptr += getRefAddrSize(AddrSize, Version);
Alexey Samsonovd60859b2013-04-09 14:09:42 +0000308 return true;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000309
Eric Christopherd999bb72012-08-24 01:14:23 +0000310 // 0 byte values - implied from the form.
311 case DW_FORM_flag_present:
312 return true;
Eric Christopherb2120fd2013-01-07 22:40:48 +0000313
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000314 // 1 byte values
315 case DW_FORM_data1:
316 case DW_FORM_flag:
317 case DW_FORM_ref1:
318 *offset_ptr += 1;
319 return true;
320
321 // 2 byte values
322 case DW_FORM_data2:
323 case DW_FORM_ref2:
324 *offset_ptr += 2;
325 return true;
326
327 // 4 byte values
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000328 case DW_FORM_data4:
329 case DW_FORM_ref4:
330 *offset_ptr += 4;
331 return true;
332
333 // 8 byte values
334 case DW_FORM_data8:
335 case DW_FORM_ref8:
Eric Christopherd999bb72012-08-24 01:14:23 +0000336 case DW_FORM_ref_sig8:
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000337 *offset_ptr += 8;
338 return true;
339
340 // signed or unsigned LEB 128 values
341 // case DW_FORM_APPLE_db_str:
342 case DW_FORM_sdata:
343 case DW_FORM_udata:
344 case DW_FORM_ref_udata:
Eric Christopher2cbd5762013-01-07 19:32:41 +0000345 case DW_FORM_GNU_str_index:
346 case DW_FORM_GNU_addr_index:
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000347 debug_info_data.getULEB128(offset_ptr);
348 return true;
349
350 case DW_FORM_indirect:
351 indirect = true;
352 form = debug_info_data.getULEB128(offset_ptr);
353 break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000354
Eric Christopher4c7765f2013-01-17 03:00:04 +0000355 // FIXME: 4 for DWARF32, 8 for DWARF64.
Eric Christopherd999bb72012-08-24 01:14:23 +0000356 case DW_FORM_sec_offset:
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000357 case DW_FORM_strp:
358 case DW_FORM_GNU_ref_alt:
359 case DW_FORM_GNU_strp_alt:
Eric Christopher4c7765f2013-01-17 03:00:04 +0000360 *offset_ptr += 4;
Eric Christopherd999bb72012-08-24 01:14:23 +0000361 return true;
Eric Christopherb2120fd2013-01-07 22:40:48 +0000362
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000363 default:
364 return false;
365 }
366 } while (indirect);
367 return true;
368}
369
370void
David Blaikie07e22442013-09-23 22:44:40 +0000371DWARFFormValue::dump(raw_ostream &OS, const DWARFUnit *cu) const {
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000372 uint64_t uvalue = Value.uval;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000373 bool cu_relative_offset = false;
374
Benjamin Kramereaa74332011-09-13 21:47:32 +0000375 switch (Form) {
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000376 case DW_FORM_addr: OS << format("0x%016" PRIx64, uvalue); break;
Eric Christopher962c9082013-01-15 23:56:56 +0000377 case DW_FORM_GNU_addr_index: {
Eric Christopher962c9082013-01-15 23:56:56 +0000378 OS << format(" indexed (%8.8x) address = ", (uint32_t)uvalue);
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000379 uint64_t Address;
380 if (cu->getAddrOffsetSectionItem(uvalue, Address))
381 OS << format("0x%016" PRIx64, Address);
382 else
Eric Christopher962c9082013-01-15 23:56:56 +0000383 OS << "<no .debug_addr section>";
384 break;
385 }
Eric Christopherd999bb72012-08-24 01:14:23 +0000386 case DW_FORM_flag_present: OS << "true"; break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000387 case DW_FORM_flag:
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000388 case DW_FORM_data1: OS << format("0x%02x", (uint8_t)uvalue); break;
389 case DW_FORM_data2: OS << format("0x%04x", (uint16_t)uvalue); break;
390 case DW_FORM_data4: OS << format("0x%08x", (uint32_t)uvalue); break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000391 case DW_FORM_ref_sig8:
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000392 case DW_FORM_data8: OS << format("0x%016" PRIx64, uvalue); break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000393 case DW_FORM_string:
394 OS << '"';
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000395 OS.write_escaped(Value.cstr);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000396 OS << '"';
397 break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000398 case DW_FORM_exprloc:
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000399 case DW_FORM_block:
400 case DW_FORM_block1:
401 case DW_FORM_block2:
402 case DW_FORM_block4:
403 if (uvalue > 0) {
404 switch (Form) {
Eric Christopherd999bb72012-08-24 01:14:23 +0000405 case DW_FORM_exprloc:
Benjamin Kramerf3da5292011-11-05 08:57:40 +0000406 case DW_FORM_block: OS << format("<0x%" PRIx64 "> ", uvalue); break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000407 case DW_FORM_block1: OS << format("<0x%2.2x> ", (uint8_t)uvalue); break;
408 case DW_FORM_block2: OS << format("<0x%4.4x> ", (uint16_t)uvalue); break;
409 case DW_FORM_block4: OS << format("<0x%8.8x> ", (uint32_t)uvalue); break;
410 default: break;
411 }
412
413 const uint8_t* data_ptr = Value.data;
414 if (data_ptr) {
415 // uvalue contains size of block
416 const uint8_t* end_data_ptr = data_ptr + uvalue;
417 while (data_ptr < end_data_ptr) {
418 OS << format("%2.2x ", *data_ptr);
419 ++data_ptr;
420 }
421 }
422 else
423 OS << "NULL";
424 }
425 break;
426
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000427 case DW_FORM_sdata: OS << Value.sval; break;
428 case DW_FORM_udata: OS << Value.uval; break;
Benjamin Kramer07d4b1c2011-09-15 16:57:13 +0000429 case DW_FORM_strp: {
430 OS << format(" .debug_str[0x%8.8x] = ", (uint32_t)uvalue);
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000431 dumpString(OS, cu);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000432 break;
Benjamin Kramer07d4b1c2011-09-15 16:57:13 +0000433 }
Eric Christopher2cbd5762013-01-07 19:32:41 +0000434 case DW_FORM_GNU_str_index: {
435 OS << format(" indexed (%8.8x) string = ", (uint32_t)uvalue);
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000436 dumpString(OS, cu);
437 break;
438 }
439 case DW_FORM_GNU_strp_alt: {
440 OS << format("alt indirect string, offset: 0x%" PRIx64 "", uvalue);
441 dumpString(OS, cu);
Eric Christopher2cbd5762013-01-07 19:32:41 +0000442 break;
443 }
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000444 case DW_FORM_ref_addr:
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000445 OS << format("0x%016" PRIx64, uvalue);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000446 break;
447 case DW_FORM_ref1:
448 cu_relative_offset = true;
449 OS << format("cu + 0x%2.2x", (uint8_t)uvalue);
450 break;
451 case DW_FORM_ref2:
452 cu_relative_offset = true;
453 OS << format("cu + 0x%4.4x", (uint16_t)uvalue);
454 break;
455 case DW_FORM_ref4:
456 cu_relative_offset = true;
457 OS << format("cu + 0x%4.4x", (uint32_t)uvalue);
458 break;
459 case DW_FORM_ref8:
460 cu_relative_offset = true;
Benjamin Kramerf3da5292011-11-05 08:57:40 +0000461 OS << format("cu + 0x%8.8" PRIx64, uvalue);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000462 break;
463 case DW_FORM_ref_udata:
464 cu_relative_offset = true;
Benjamin Kramerf3da5292011-11-05 08:57:40 +0000465 OS << format("cu + 0x%" PRIx64, uvalue);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000466 break;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000467 case DW_FORM_GNU_ref_alt:
468 OS << format("<alt 0x%" PRIx64 ">", uvalue);
469 break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000470
471 // All DW_FORM_indirect attributes should be resolved prior to calling
472 // this function
473 case DW_FORM_indirect:
474 OS << "DW_FORM_indirect";
475 break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000476
Eric Christopher4c7765f2013-01-17 03:00:04 +0000477 // Should be formatted to 64-bit for DWARF64.
Eric Christopherd999bb72012-08-24 01:14:23 +0000478 case DW_FORM_sec_offset:
Eric Christopher4c7765f2013-01-17 03:00:04 +0000479 OS << format("0x%08x", (uint32_t)uvalue);
Eric Christopherd999bb72012-08-24 01:14:23 +0000480 break;
Eric Christopherb2120fd2013-01-07 22:40:48 +0000481
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000482 default:
483 OS << format("DW_FORM(0x%4.4x)", Form);
484 break;
485 }
486
Adrian Prantl0c36a752015-01-06 16:50:25 +0000487 if (cu_relative_offset) {
488 OS << " => {";
489 WithColor(OS, syntax::Address).get()
490 << format("0x%8.8" PRIx64, uvalue + (cu ? cu->getOffset() : 0));
491 OS << "}";
492 }
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000493}
494
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000495void DWARFFormValue::dumpString(raw_ostream &OS, const DWARFUnit *U) const {
496 Optional<const char *> DbgStr = getAsCString(U);
497 if (DbgStr.hasValue()) {
498 raw_ostream &COS = WithColor(OS, syntax::String);
499 COS << '"';
500 COS.write_escaped(DbgStr.getValue());
501 COS << '"';
502 }
503}
504
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000505Optional<const char *> DWARFFormValue::getAsCString(const DWARFUnit *U) const {
506 if (!isFormClass(FC_String))
507 return None;
508 if (Form == DW_FORM_string)
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000509 return Value.cstr;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000510 // FIXME: Add support for DW_FORM_GNU_strp_alt
511 if (Form == DW_FORM_GNU_strp_alt || U == nullptr)
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000512 return None;
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000513 uint32_t Offset = Value.uval;
Alexey Samsonov742e6b82013-10-18 07:13:32 +0000514 if (Form == DW_FORM_GNU_str_index) {
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000515 uint32_t StrOffset;
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000516 if (!U->getStringOffsetSectionItem(Offset, StrOffset))
517 return None;
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000518 Offset = StrOffset;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000519 }
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000520 if (const char *Str = U->getStringExtractor().getCStr(&Offset)) {
521 return Str;
522 }
523 return None;
Eric Christopher2cbd5762013-01-07 19:32:41 +0000524}
525
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000526Optional<uint64_t> DWARFFormValue::getAsAddress(const DWARFUnit *U) const {
527 if (!isFormClass(FC_Address))
528 return None;
Alexey Samsonov742e6b82013-10-18 07:13:32 +0000529 if (Form == DW_FORM_GNU_addr_index) {
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000530 uint32_t Index = Value.uval;
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000531 uint64_t Result;
Craig Topper2617dcc2014-04-15 06:32:26 +0000532 if (!U || !U->getAddrOffsetSectionItem(Index, Result))
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000533 return None;
534 return Result;
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000535 }
536 return Value.uval;
Eric Christopher962c9082013-01-15 23:56:56 +0000537}
538
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000539Optional<uint64_t> DWARFFormValue::getAsReference(const DWARFUnit *U) const {
540 if (!isFormClass(FC_Reference))
541 return None;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000542 switch (Form) {
543 case DW_FORM_ref1:
544 case DW_FORM_ref2:
545 case DW_FORM_ref4:
546 case DW_FORM_ref8:
547 case DW_FORM_ref_udata:
Craig Topper2617dcc2014-04-15 06:32:26 +0000548 if (!U)
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000549 return None;
550 return Value.uval + U->getOffset();
551 case DW_FORM_ref_addr:
552 return Value.uval;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000553 // FIXME: Add proper support for DW_FORM_ref_sig8 and DW_FORM_GNU_ref_alt.
Benjamin Kramereaa74332011-09-13 21:47:32 +0000554 default:
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000555 return None;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000556 }
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000557}
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000558
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000559Optional<uint64_t> DWARFFormValue::getAsSectionOffset() const {
560 if (!isFormClass(FC_SectionOffset))
561 return None;
562 return Value.uval;
563}
564
565Optional<uint64_t> DWARFFormValue::getAsUnsignedConstant() const {
Frederic Rissf3549a22014-09-04 06:14:35 +0000566 if ((!isFormClass(FC_Constant) && !isFormClass(FC_Flag))
567 || Form == DW_FORM_sdata)
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000568 return None;
569 return Value.uval;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000570}
Frederic Rissf3549a22014-09-04 06:14:35 +0000571
Frederic Riss77f850e2015-03-04 22:07:41 +0000572Optional<int64_t> DWARFFormValue::getAsSignedConstant() const {
573 if ((!isFormClass(FC_Constant) && !isFormClass(FC_Flag)) ||
Matt Arsenault45cbfa52015-10-21 21:10:12 +0000574 (Form == DW_FORM_udata && uint64_t(std::numeric_limits<int64_t>::max()) < Value.uval))
Frederic Riss77f850e2015-03-04 22:07:41 +0000575 return None;
576 switch (Form) {
577 case DW_FORM_data4:
578 return int32_t(Value.uval);
579 case DW_FORM_data2:
580 return int16_t(Value.uval);
581 case DW_FORM_data1:
582 return int8_t(Value.uval);
583 case DW_FORM_sdata:
584 case DW_FORM_data8:
585 default:
586 return Value.sval;
587 }
588}
589
Frederic Risseab17772014-09-04 06:35:09 +0000590Optional<ArrayRef<uint8_t>> DWARFFormValue::getAsBlock() const {
Frederic Rissf3549a22014-09-04 06:14:35 +0000591 if (!isFormClass(FC_Block) && !isFormClass(FC_Exprloc))
592 return None;
Craig Topper0013be12015-09-21 05:32:41 +0000593 return makeArrayRef(Value.data, Value.uval);
Frederic Rissf3549a22014-09-04 06:14:35 +0000594}
595