blob: d22e63502d250e0bbedec0d81fbe88077e79e38e [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>
Frederic Riss77f850e2015-03-04 22:07:41 +000021#include <climits>
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) {
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000264 bool indirect = false;
265 do {
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000266 switch (form) {
267 // Blocks if inlined data that have a length field and the data bytes
268 // inlined in the .debug_info
Eric Christopherd999bb72012-08-24 01:14:23 +0000269 case DW_FORM_exprloc:
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000270 case DW_FORM_block: {
271 uint64_t size = debug_info_data.getULEB128(offset_ptr);
272 *offset_ptr += size;
273 return true;
274 }
275 case DW_FORM_block1: {
276 uint8_t size = debug_info_data.getU8(offset_ptr);
277 *offset_ptr += size;
278 return true;
279 }
280 case DW_FORM_block2: {
281 uint16_t size = debug_info_data.getU16(offset_ptr);
282 *offset_ptr += size;
283 return true;
284 }
285 case DW_FORM_block4: {
286 uint32_t size = debug_info_data.getU32(offset_ptr);
287 *offset_ptr += size;
288 return true;
289 }
290
291 // Inlined NULL terminated C-strings
292 case DW_FORM_string:
293 debug_info_data.getCStr(offset_ptr);
294 return true;
295
296 // Compile unit address sized values
297 case DW_FORM_addr:
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000298 *offset_ptr += cu->getAddressByteSize();
299 return true;
Alexey Samsonovd60859b2013-04-09 14:09:42 +0000300 case DW_FORM_ref_addr:
301 *offset_ptr += getRefAddrSize(cu->getAddressByteSize(), cu->getVersion());
302 return true;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000303
Eric Christopherd999bb72012-08-24 01:14:23 +0000304 // 0 byte values - implied from the form.
305 case DW_FORM_flag_present:
306 return true;
Eric Christopherb2120fd2013-01-07 22:40:48 +0000307
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000308 // 1 byte values
309 case DW_FORM_data1:
310 case DW_FORM_flag:
311 case DW_FORM_ref1:
312 *offset_ptr += 1;
313 return true;
314
315 // 2 byte values
316 case DW_FORM_data2:
317 case DW_FORM_ref2:
318 *offset_ptr += 2;
319 return true;
320
321 // 4 byte values
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000322 case DW_FORM_data4:
323 case DW_FORM_ref4:
324 *offset_ptr += 4;
325 return true;
326
327 // 8 byte values
328 case DW_FORM_data8:
329 case DW_FORM_ref8:
Eric Christopherd999bb72012-08-24 01:14:23 +0000330 case DW_FORM_ref_sig8:
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000331 *offset_ptr += 8;
332 return true;
333
334 // signed or unsigned LEB 128 values
335 // case DW_FORM_APPLE_db_str:
336 case DW_FORM_sdata:
337 case DW_FORM_udata:
338 case DW_FORM_ref_udata:
Eric Christopher2cbd5762013-01-07 19:32:41 +0000339 case DW_FORM_GNU_str_index:
340 case DW_FORM_GNU_addr_index:
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000341 debug_info_data.getULEB128(offset_ptr);
342 return true;
343
344 case DW_FORM_indirect:
345 indirect = true;
346 form = debug_info_data.getULEB128(offset_ptr);
347 break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000348
Eric Christopher4c7765f2013-01-17 03:00:04 +0000349 // FIXME: 4 for DWARF32, 8 for DWARF64.
Eric Christopherd999bb72012-08-24 01:14:23 +0000350 case DW_FORM_sec_offset:
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000351 case DW_FORM_strp:
352 case DW_FORM_GNU_ref_alt:
353 case DW_FORM_GNU_strp_alt:
Eric Christopher4c7765f2013-01-17 03:00:04 +0000354 *offset_ptr += 4;
Eric Christopherd999bb72012-08-24 01:14:23 +0000355 return true;
Eric Christopherb2120fd2013-01-07 22:40:48 +0000356
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000357 default:
358 return false;
359 }
360 } while (indirect);
361 return true;
362}
363
364void
David Blaikie07e22442013-09-23 22:44:40 +0000365DWARFFormValue::dump(raw_ostream &OS, const DWARFUnit *cu) const {
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000366 uint64_t uvalue = Value.uval;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000367 bool cu_relative_offset = false;
368
Benjamin Kramereaa74332011-09-13 21:47:32 +0000369 switch (Form) {
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000370 case DW_FORM_addr: OS << format("0x%016" PRIx64, uvalue); break;
Eric Christopher962c9082013-01-15 23:56:56 +0000371 case DW_FORM_GNU_addr_index: {
Eric Christopher962c9082013-01-15 23:56:56 +0000372 OS << format(" indexed (%8.8x) address = ", (uint32_t)uvalue);
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000373 uint64_t Address;
374 if (cu->getAddrOffsetSectionItem(uvalue, Address))
375 OS << format("0x%016" PRIx64, Address);
376 else
Eric Christopher962c9082013-01-15 23:56:56 +0000377 OS << "<no .debug_addr section>";
378 break;
379 }
Eric Christopherd999bb72012-08-24 01:14:23 +0000380 case DW_FORM_flag_present: OS << "true"; break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000381 case DW_FORM_flag:
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000382 case DW_FORM_data1: OS << format("0x%02x", (uint8_t)uvalue); break;
383 case DW_FORM_data2: OS << format("0x%04x", (uint16_t)uvalue); break;
384 case DW_FORM_data4: OS << format("0x%08x", (uint32_t)uvalue); break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000385 case DW_FORM_ref_sig8:
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000386 case DW_FORM_data8: OS << format("0x%016" PRIx64, uvalue); break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000387 case DW_FORM_string:
388 OS << '"';
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000389 OS.write_escaped(Value.cstr);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000390 OS << '"';
391 break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000392 case DW_FORM_exprloc:
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000393 case DW_FORM_block:
394 case DW_FORM_block1:
395 case DW_FORM_block2:
396 case DW_FORM_block4:
397 if (uvalue > 0) {
398 switch (Form) {
Eric Christopherd999bb72012-08-24 01:14:23 +0000399 case DW_FORM_exprloc:
Benjamin Kramerf3da5292011-11-05 08:57:40 +0000400 case DW_FORM_block: OS << format("<0x%" PRIx64 "> ", uvalue); break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000401 case DW_FORM_block1: OS << format("<0x%2.2x> ", (uint8_t)uvalue); break;
402 case DW_FORM_block2: OS << format("<0x%4.4x> ", (uint16_t)uvalue); break;
403 case DW_FORM_block4: OS << format("<0x%8.8x> ", (uint32_t)uvalue); break;
404 default: break;
405 }
406
407 const uint8_t* data_ptr = Value.data;
408 if (data_ptr) {
409 // uvalue contains size of block
410 const uint8_t* end_data_ptr = data_ptr + uvalue;
411 while (data_ptr < end_data_ptr) {
412 OS << format("%2.2x ", *data_ptr);
413 ++data_ptr;
414 }
415 }
416 else
417 OS << "NULL";
418 }
419 break;
420
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000421 case DW_FORM_sdata: OS << Value.sval; break;
422 case DW_FORM_udata: OS << Value.uval; break;
Benjamin Kramer07d4b1c2011-09-15 16:57:13 +0000423 case DW_FORM_strp: {
424 OS << format(" .debug_str[0x%8.8x] = ", (uint32_t)uvalue);
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000425 dumpString(OS, cu);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000426 break;
Benjamin Kramer07d4b1c2011-09-15 16:57:13 +0000427 }
Eric Christopher2cbd5762013-01-07 19:32:41 +0000428 case DW_FORM_GNU_str_index: {
429 OS << format(" indexed (%8.8x) string = ", (uint32_t)uvalue);
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000430 dumpString(OS, cu);
431 break;
432 }
433 case DW_FORM_GNU_strp_alt: {
434 OS << format("alt indirect string, offset: 0x%" PRIx64 "", uvalue);
435 dumpString(OS, cu);
Eric Christopher2cbd5762013-01-07 19:32:41 +0000436 break;
437 }
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000438 case DW_FORM_ref_addr:
Benjamin Kramer79730ad2011-11-05 16:01:13 +0000439 OS << format("0x%016" PRIx64, uvalue);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000440 break;
441 case DW_FORM_ref1:
442 cu_relative_offset = true;
443 OS << format("cu + 0x%2.2x", (uint8_t)uvalue);
444 break;
445 case DW_FORM_ref2:
446 cu_relative_offset = true;
447 OS << format("cu + 0x%4.4x", (uint16_t)uvalue);
448 break;
449 case DW_FORM_ref4:
450 cu_relative_offset = true;
451 OS << format("cu + 0x%4.4x", (uint32_t)uvalue);
452 break;
453 case DW_FORM_ref8:
454 cu_relative_offset = true;
Benjamin Kramerf3da5292011-11-05 08:57:40 +0000455 OS << format("cu + 0x%8.8" PRIx64, uvalue);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000456 break;
457 case DW_FORM_ref_udata:
458 cu_relative_offset = true;
Benjamin Kramerf3da5292011-11-05 08:57:40 +0000459 OS << format("cu + 0x%" PRIx64, uvalue);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000460 break;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000461 case DW_FORM_GNU_ref_alt:
462 OS << format("<alt 0x%" PRIx64 ">", uvalue);
463 break;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000464
465 // All DW_FORM_indirect attributes should be resolved prior to calling
466 // this function
467 case DW_FORM_indirect:
468 OS << "DW_FORM_indirect";
469 break;
Eric Christopherd999bb72012-08-24 01:14:23 +0000470
Eric Christopher4c7765f2013-01-17 03:00:04 +0000471 // Should be formatted to 64-bit for DWARF64.
Eric Christopherd999bb72012-08-24 01:14:23 +0000472 case DW_FORM_sec_offset:
Eric Christopher4c7765f2013-01-17 03:00:04 +0000473 OS << format("0x%08x", (uint32_t)uvalue);
Eric Christopherd999bb72012-08-24 01:14:23 +0000474 break;
Eric Christopherb2120fd2013-01-07 22:40:48 +0000475
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000476 default:
477 OS << format("DW_FORM(0x%4.4x)", Form);
478 break;
479 }
480
Adrian Prantl0c36a752015-01-06 16:50:25 +0000481 if (cu_relative_offset) {
482 OS << " => {";
483 WithColor(OS, syntax::Address).get()
484 << format("0x%8.8" PRIx64, uvalue + (cu ? cu->getOffset() : 0));
485 OS << "}";
486 }
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000487}
488
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000489void DWARFFormValue::dumpString(raw_ostream &OS, const DWARFUnit *U) const {
490 Optional<const char *> DbgStr = getAsCString(U);
491 if (DbgStr.hasValue()) {
492 raw_ostream &COS = WithColor(OS, syntax::String);
493 COS << '"';
494 COS.write_escaped(DbgStr.getValue());
495 COS << '"';
496 }
497}
498
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000499Optional<const char *> DWARFFormValue::getAsCString(const DWARFUnit *U) const {
500 if (!isFormClass(FC_String))
501 return None;
502 if (Form == DW_FORM_string)
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000503 return Value.cstr;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000504 // FIXME: Add support for DW_FORM_GNU_strp_alt
505 if (Form == DW_FORM_GNU_strp_alt || U == nullptr)
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000506 return None;
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000507 uint32_t Offset = Value.uval;
Alexey Samsonov742e6b82013-10-18 07:13:32 +0000508 if (Form == DW_FORM_GNU_str_index) {
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000509 uint32_t StrOffset;
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000510 if (!U->getStringOffsetSectionItem(Offset, StrOffset))
511 return None;
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000512 Offset = StrOffset;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000513 }
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000514 if (const char *Str = U->getStringExtractor().getCStr(&Offset)) {
515 return Str;
516 }
517 return None;
Eric Christopher2cbd5762013-01-07 19:32:41 +0000518}
519
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000520Optional<uint64_t> DWARFFormValue::getAsAddress(const DWARFUnit *U) const {
521 if (!isFormClass(FC_Address))
522 return None;
Alexey Samsonov742e6b82013-10-18 07:13:32 +0000523 if (Form == DW_FORM_GNU_addr_index) {
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000524 uint32_t Index = Value.uval;
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000525 uint64_t Result;
Craig Topper2617dcc2014-04-15 06:32:26 +0000526 if (!U || !U->getAddrOffsetSectionItem(Index, Result))
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000527 return None;
528 return Result;
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000529 }
530 return Value.uval;
Eric Christopher962c9082013-01-15 23:56:56 +0000531}
532
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000533Optional<uint64_t> DWARFFormValue::getAsReference(const DWARFUnit *U) const {
534 if (!isFormClass(FC_Reference))
535 return None;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000536 switch (Form) {
537 case DW_FORM_ref1:
538 case DW_FORM_ref2:
539 case DW_FORM_ref4:
540 case DW_FORM_ref8:
541 case DW_FORM_ref_udata:
Craig Topper2617dcc2014-04-15 06:32:26 +0000542 if (!U)
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000543 return None;
544 return Value.uval + U->getOffset();
545 case DW_FORM_ref_addr:
546 return Value.uval;
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000547 // FIXME: Add proper support for DW_FORM_ref_sig8 and DW_FORM_GNU_ref_alt.
Benjamin Kramereaa74332011-09-13 21:47:32 +0000548 default:
Alexey Samsonovbf19a572015-05-19 20:29:28 +0000549 return None;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000550 }
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000551}
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000552
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000553Optional<uint64_t> DWARFFormValue::getAsSectionOffset() const {
554 if (!isFormClass(FC_SectionOffset))
555 return None;
556 return Value.uval;
557}
558
559Optional<uint64_t> DWARFFormValue::getAsUnsignedConstant() const {
Frederic Rissf3549a22014-09-04 06:14:35 +0000560 if ((!isFormClass(FC_Constant) && !isFormClass(FC_Flag))
561 || Form == DW_FORM_sdata)
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000562 return None;
563 return Value.uval;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000564}
Frederic Rissf3549a22014-09-04 06:14:35 +0000565
Frederic Riss77f850e2015-03-04 22:07:41 +0000566Optional<int64_t> DWARFFormValue::getAsSignedConstant() const {
567 if ((!isFormClass(FC_Constant) && !isFormClass(FC_Flag)) ||
568 (Form == DW_FORM_udata && uint64_t(LLONG_MAX) < Value.uval))
569 return None;
570 switch (Form) {
571 case DW_FORM_data4:
572 return int32_t(Value.uval);
573 case DW_FORM_data2:
574 return int16_t(Value.uval);
575 case DW_FORM_data1:
576 return int8_t(Value.uval);
577 case DW_FORM_sdata:
578 case DW_FORM_data8:
579 default:
580 return Value.sval;
581 }
582}
583
Frederic Risseab17772014-09-04 06:35:09 +0000584Optional<ArrayRef<uint8_t>> DWARFFormValue::getAsBlock() const {
Frederic Rissf3549a22014-09-04 06:14:35 +0000585 if (!isFormClass(FC_Block) && !isFormClass(FC_Exprloc))
586 return None;
Craig Topper0013be12015-09-21 05:32:41 +0000587 return makeArrayRef(Value.data, Value.uval);
Frederic Rissf3549a22014-09-04 06:14:35 +0000588}
589