blob: 2427c63b50f31f9cc16aee8d1f535361654e22c5 [file] [log] [blame]
Saleem Abdulrasool675df582015-04-24 19:39:17 +00001//===--------------------------- DwarfParser.hpp --------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//
9// Parses DWARF CFIs (FDEs and CIEs).
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef __DWARF_PARSER_HPP__
14#define __DWARF_PARSER_HPP__
15
16#include <inttypes.h>
17#include <stdint.h>
18#include <stdio.h>
19#include <stdlib.h>
20
Saleem Abdulrasool675df582015-04-24 19:39:17 +000021#include "libunwind.h"
22#include "dwarf2.h"
23
24#include "AddressSpace.hpp"
25
26namespace libunwind {
27
28/// CFI_Parser does basic parsing of a CFI (Call Frame Information) records.
Ed Maste63469ff2016-07-19 17:15:50 +000029/// See DWARF Spec for details:
Saleem Abdulrasool675df582015-04-24 19:39:17 +000030/// http://refspecs.linuxbase.org/LSB_3.1.0/LSB-Core-generic/LSB-Core-generic/ehframechpt.html
31///
32template <typename A>
33class CFI_Parser {
34public:
35 typedef typename A::pint_t pint_t;
36
37 /// Information encoded in a CIE (Common Information Entry)
38 struct CIE_Info {
39 pint_t cieStart;
40 pint_t cieLength;
41 pint_t cieInstructions;
42 uint8_t pointerEncoding;
43 uint8_t lsdaEncoding;
44 uint8_t personalityEncoding;
45 uint8_t personalityOffsetInCIE;
46 pint_t personality;
47 uint32_t codeAlignFactor;
48 int dataAlignFactor;
49 bool isSignalFrame;
50 bool fdesHaveAugmentationData;
51 uint8_t returnAddressRegister;
52 };
53
54 /// Information about an FDE (Frame Description Entry)
55 struct FDE_Info {
56 pint_t fdeStart;
57 pint_t fdeLength;
58 pint_t fdeInstructions;
59 pint_t pcStart;
60 pint_t pcEnd;
61 pint_t lsda;
62 };
63
64 enum {
Ed Mastef9f79282016-07-20 15:19:09 +000065 kMaxRegisterNumber = _LIBUNWIND_HIGHEST_DWARF_REGISTER
Saleem Abdulrasool675df582015-04-24 19:39:17 +000066 };
67 enum RegisterSavedWhere {
68 kRegisterUnused,
69 kRegisterInCFA,
70 kRegisterOffsetFromCFA,
71 kRegisterInRegister,
72 kRegisterAtExpression,
73 kRegisterIsExpression
74 };
75 struct RegisterLocation {
76 RegisterSavedWhere location;
77 int64_t value;
78 };
79 /// Information about a frame layout and registers saved determined
Ed Maste63469ff2016-07-19 17:15:50 +000080 /// by "running" the DWARF FDE "instructions"
Saleem Abdulrasool675df582015-04-24 19:39:17 +000081 struct PrologInfo {
82 uint32_t cfaRegister;
83 int32_t cfaRegisterOffset; // CFA = (cfaRegister)+cfaRegisterOffset
84 int64_t cfaExpression; // CFA = expression
85 uint32_t spExtraArgSize;
86 uint32_t codeOffsetAtStackDecrement;
87 bool registersInOtherRegisters;
88 bool sameValueUsed;
89 RegisterLocation savedRegisters[kMaxRegisterNumber];
90 };
91
92 struct PrologInfoStackEntry {
93 PrologInfoStackEntry(PrologInfoStackEntry *n, const PrologInfo &i)
94 : next(n), info(i) {}
95 PrologInfoStackEntry *next;
96 PrologInfo info;
97 };
98
99 static bool findFDE(A &addressSpace, pint_t pc, pint_t ehSectionStart,
100 uint32_t sectionLength, pint_t fdeHint, FDE_Info *fdeInfo,
101 CIE_Info *cieInfo);
102 static const char *decodeFDE(A &addressSpace, pint_t fdeStart,
103 FDE_Info *fdeInfo, CIE_Info *cieInfo);
104 static bool parseFDEInstructions(A &addressSpace, const FDE_Info &fdeInfo,
105 const CIE_Info &cieInfo, pint_t upToPC,
106 PrologInfo *results);
107
108 static const char *parseCIE(A &addressSpace, pint_t cie, CIE_Info *cieInfo);
109
110private:
111 static bool parseInstructions(A &addressSpace, pint_t instructions,
112 pint_t instructionsEnd, const CIE_Info &cieInfo,
113 pint_t pcoffset,
114 PrologInfoStackEntry *&rememberStack,
115 PrologInfo *results);
116};
117
118/// Parse a FDE into a CIE_Info and an FDE_Info
119template <typename A>
120const char *CFI_Parser<A>::decodeFDE(A &addressSpace, pint_t fdeStart,
121 FDE_Info *fdeInfo, CIE_Info *cieInfo) {
122 pint_t p = fdeStart;
123 pint_t cfiLength = (pint_t)addressSpace.get32(p);
124 p += 4;
125 if (cfiLength == 0xffffffff) {
126 // 0xffffffff means length is really next 8 bytes
127 cfiLength = (pint_t)addressSpace.get64(p);
128 p += 8;
129 }
130 if (cfiLength == 0)
131 return "FDE has zero length"; // end marker
132 uint32_t ciePointer = addressSpace.get32(p);
133 if (ciePointer == 0)
134 return "FDE is really a CIE"; // this is a CIE not an FDE
135 pint_t nextCFI = p + cfiLength;
136 pint_t cieStart = p - ciePointer;
137 const char *err = parseCIE(addressSpace, cieStart, cieInfo);
138 if (err != NULL)
139 return err;
140 p += 4;
Ed Maste9de42aa2016-07-19 17:28:38 +0000141 // Parse pc begin and range.
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000142 pint_t pcStart =
143 addressSpace.getEncodedP(p, nextCFI, cieInfo->pointerEncoding);
144 pint_t pcRange =
145 addressSpace.getEncodedP(p, nextCFI, cieInfo->pointerEncoding & 0x0F);
Ed Maste9de42aa2016-07-19 17:28:38 +0000146 // Parse rest of info.
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000147 fdeInfo->lsda = 0;
Ed Maste9de42aa2016-07-19 17:28:38 +0000148 // Check for augmentation length.
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000149 if (cieInfo->fdesHaveAugmentationData) {
150 pint_t augLen = (pint_t)addressSpace.getULEB128(p, nextCFI);
151 pint_t endOfAug = p + augLen;
152 if (cieInfo->lsdaEncoding != DW_EH_PE_omit) {
Ed Maste9de42aa2016-07-19 17:28:38 +0000153 // Peek at value (without indirection). Zero means no LSDA.
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000154 pint_t lsdaStart = p;
155 if (addressSpace.getEncodedP(p, nextCFI, cieInfo->lsdaEncoding & 0x0F) !=
156 0) {
Ed Maste9de42aa2016-07-19 17:28:38 +0000157 // Reset pointer and re-parse LSDA address.
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000158 p = lsdaStart;
159 fdeInfo->lsda =
160 addressSpace.getEncodedP(p, nextCFI, cieInfo->lsdaEncoding);
161 }
162 }
163 p = endOfAug;
164 }
165 fdeInfo->fdeStart = fdeStart;
166 fdeInfo->fdeLength = nextCFI - fdeStart;
167 fdeInfo->fdeInstructions = p;
168 fdeInfo->pcStart = pcStart;
169 fdeInfo->pcEnd = pcStart + pcRange;
170 return NULL; // success
171}
172
173/// Scan an eh_frame section to find an FDE for a pc
174template <typename A>
175bool CFI_Parser<A>::findFDE(A &addressSpace, pint_t pc, pint_t ehSectionStart,
176 uint32_t sectionLength, pint_t fdeHint,
177 FDE_Info *fdeInfo, CIE_Info *cieInfo) {
178 //fprintf(stderr, "findFDE(0x%llX)\n", (long long)pc);
179 pint_t p = (fdeHint != 0) ? fdeHint : ehSectionStart;
180 const pint_t ehSectionEnd = p + sectionLength;
181 while (p < ehSectionEnd) {
182 pint_t currentCFI = p;
183 //fprintf(stderr, "findFDE() CFI at 0x%llX\n", (long long)p);
184 pint_t cfiLength = addressSpace.get32(p);
185 p += 4;
186 if (cfiLength == 0xffffffff) {
187 // 0xffffffff means length is really next 8 bytes
188 cfiLength = (pint_t)addressSpace.get64(p);
189 p += 8;
190 }
191 if (cfiLength == 0)
192 return false; // end marker
193 uint32_t id = addressSpace.get32(p);
194 if (id == 0) {
Ed Maste9de42aa2016-07-19 17:28:38 +0000195 // Skip over CIEs.
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000196 p += cfiLength;
197 } else {
Ed Maste9de42aa2016-07-19 17:28:38 +0000198 // Process FDE to see if it covers pc.
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000199 pint_t nextCFI = p + cfiLength;
200 uint32_t ciePointer = addressSpace.get32(p);
201 pint_t cieStart = p - ciePointer;
Ed Maste9de42aa2016-07-19 17:28:38 +0000202 // Validate pointer to CIE is within section.
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000203 if ((ehSectionStart <= cieStart) && (cieStart < ehSectionEnd)) {
204 if (parseCIE(addressSpace, cieStart, cieInfo) == NULL) {
205 p += 4;
Ed Maste9de42aa2016-07-19 17:28:38 +0000206 // Parse pc begin and range.
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000207 pint_t pcStart =
208 addressSpace.getEncodedP(p, nextCFI, cieInfo->pointerEncoding);
209 pint_t pcRange = addressSpace.getEncodedP(
210 p, nextCFI, cieInfo->pointerEncoding & 0x0F);
Ed Maste9de42aa2016-07-19 17:28:38 +0000211 // Test if pc is within the function this FDE covers.
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000212 if ((pcStart < pc) && (pc <= pcStart + pcRange)) {
213 // parse rest of info
214 fdeInfo->lsda = 0;
215 // check for augmentation length
216 if (cieInfo->fdesHaveAugmentationData) {
217 pint_t augLen = (pint_t)addressSpace.getULEB128(p, nextCFI);
218 pint_t endOfAug = p + augLen;
219 if (cieInfo->lsdaEncoding != DW_EH_PE_omit) {
Ed Maste9de42aa2016-07-19 17:28:38 +0000220 // Peek at value (without indirection). Zero means no LSDA.
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000221 pint_t lsdaStart = p;
222 if (addressSpace.getEncodedP(
223 p, nextCFI, cieInfo->lsdaEncoding & 0x0F) != 0) {
Ed Maste9de42aa2016-07-19 17:28:38 +0000224 // Reset pointer and re-parse LSDA address.
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000225 p = lsdaStart;
226 fdeInfo->lsda = addressSpace
227 .getEncodedP(p, nextCFI, cieInfo->lsdaEncoding);
228 }
229 }
230 p = endOfAug;
231 }
232 fdeInfo->fdeStart = currentCFI;
233 fdeInfo->fdeLength = nextCFI - currentCFI;
234 fdeInfo->fdeInstructions = p;
235 fdeInfo->pcStart = pcStart;
236 fdeInfo->pcEnd = pcStart + pcRange;
237 return true;
238 } else {
239 // pc is not in begin/range, skip this FDE
240 }
241 } else {
Ed Maste9de42aa2016-07-19 17:28:38 +0000242 // Malformed CIE, now augmentation describing pc range encoding.
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000243 }
244 } else {
245 // malformed FDE. CIE is bad
246 }
247 p = nextCFI;
248 }
249 }
250 return false;
251}
252
253/// Extract info from a CIE
254template <typename A>
255const char *CFI_Parser<A>::parseCIE(A &addressSpace, pint_t cie,
256 CIE_Info *cieInfo) {
257 cieInfo->pointerEncoding = 0;
258 cieInfo->lsdaEncoding = DW_EH_PE_omit;
259 cieInfo->personalityEncoding = 0;
260 cieInfo->personalityOffsetInCIE = 0;
261 cieInfo->personality = 0;
262 cieInfo->codeAlignFactor = 0;
263 cieInfo->dataAlignFactor = 0;
264 cieInfo->isSignalFrame = false;
265 cieInfo->fdesHaveAugmentationData = false;
266 cieInfo->cieStart = cie;
267 pint_t p = cie;
268 pint_t cieLength = (pint_t)addressSpace.get32(p);
269 p += 4;
270 pint_t cieContentEnd = p + cieLength;
271 if (cieLength == 0xffffffff) {
272 // 0xffffffff means length is really next 8 bytes
273 cieLength = (pint_t)addressSpace.get64(p);
274 p += 8;
275 cieContentEnd = p + cieLength;
276 }
277 if (cieLength == 0)
278 return NULL;
279 // CIE ID is always 0
280 if (addressSpace.get32(p) != 0)
281 return "CIE ID is not zero";
282 p += 4;
283 // Version is always 1 or 3
284 uint8_t version = addressSpace.get8(p);
285 if ((version != 1) && (version != 3))
286 return "CIE version is not 1 or 3";
287 ++p;
288 // save start of augmentation string and find end
289 pint_t strStart = p;
290 while (addressSpace.get8(p) != 0)
291 ++p;
292 ++p;
293 // parse code aligment factor
294 cieInfo->codeAlignFactor = (uint32_t)addressSpace.getULEB128(p, cieContentEnd);
295 // parse data alignment factor
296 cieInfo->dataAlignFactor = (int)addressSpace.getSLEB128(p, cieContentEnd);
297 // parse return address register
298 uint64_t raReg = addressSpace.getULEB128(p, cieContentEnd);
299 assert(raReg < 255 && "return address register too large");
300 cieInfo->returnAddressRegister = (uint8_t)raReg;
301 // parse augmentation data based on augmentation string
302 const char *result = NULL;
303 if (addressSpace.get8(strStart) == 'z') {
304 // parse augmentation data length
305 addressSpace.getULEB128(p, cieContentEnd);
306 for (pint_t s = strStart; addressSpace.get8(s) != '\0'; ++s) {
307 switch (addressSpace.get8(s)) {
308 case 'z':
309 cieInfo->fdesHaveAugmentationData = true;
310 break;
311 case 'P':
312 cieInfo->personalityEncoding = addressSpace.get8(p);
313 ++p;
314 cieInfo->personalityOffsetInCIE = (uint8_t)(p - cie);
315 cieInfo->personality = addressSpace
316 .getEncodedP(p, cieContentEnd, cieInfo->personalityEncoding);
317 break;
318 case 'L':
319 cieInfo->lsdaEncoding = addressSpace.get8(p);
320 ++p;
321 break;
322 case 'R':
323 cieInfo->pointerEncoding = addressSpace.get8(p);
324 ++p;
325 break;
326 case 'S':
327 cieInfo->isSignalFrame = true;
328 break;
329 default:
330 // ignore unknown letters
331 break;
332 }
333 }
334 }
335 cieInfo->cieLength = cieContentEnd - cieInfo->cieStart;
336 cieInfo->cieInstructions = p;
337 return result;
338}
339
340
Ed Maste63469ff2016-07-19 17:15:50 +0000341/// "run" the DWARF instructions and create the abstact PrologInfo for an FDE
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000342template <typename A>
343bool CFI_Parser<A>::parseFDEInstructions(A &addressSpace,
344 const FDE_Info &fdeInfo,
345 const CIE_Info &cieInfo, pint_t upToPC,
346 PrologInfo *results) {
347 // clear results
348 memset(results, '\0', sizeof(PrologInfo));
349 PrologInfoStackEntry *rememberStack = NULL;
350
351 // parse CIE then FDE instructions
352 return parseInstructions(addressSpace, cieInfo.cieInstructions,
353 cieInfo.cieStart + cieInfo.cieLength, cieInfo,
354 (pint_t)(-1), rememberStack, results) &&
355 parseInstructions(addressSpace, fdeInfo.fdeInstructions,
356 fdeInfo.fdeStart + fdeInfo.fdeLength, cieInfo,
357 upToPC - fdeInfo.pcStart, rememberStack, results);
358}
359
Ed Maste63469ff2016-07-19 17:15:50 +0000360/// "run" the DWARF instructions
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000361template <typename A>
362bool CFI_Parser<A>::parseInstructions(A &addressSpace, pint_t instructions,
363 pint_t instructionsEnd,
364 const CIE_Info &cieInfo, pint_t pcoffset,
365 PrologInfoStackEntry *&rememberStack,
366 PrologInfo *results) {
367 const bool logDwarf = false;
368 pint_t p = instructions;
369 pint_t codeOffset = 0;
370 PrologInfo initialState = *results;
371 if (logDwarf)
372 fprintf(stderr, "parseInstructions(instructions=0x%0" PRIx64 ")\n",
373 (uint64_t)instructionsEnd);
374
Ed Maste63469ff2016-07-19 17:15:50 +0000375 // see DWARF Spec, section 6.4.2 for details on unwind opcodes
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000376 while ((p < instructionsEnd) && (codeOffset < pcoffset)) {
377 uint64_t reg;
378 uint64_t reg2;
379 int64_t offset;
380 uint64_t length;
381 uint8_t opcode = addressSpace.get8(p);
382 uint8_t operand;
Peter Zotov543f8482015-11-09 06:57:29 +0000383#if !defined(_LIBUNWIND_NO_HEAP)
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000384 PrologInfoStackEntry *entry;
Peter Zotov543f8482015-11-09 06:57:29 +0000385#endif
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000386 ++p;
387 switch (opcode) {
388 case DW_CFA_nop:
389 if (logDwarf)
390 fprintf(stderr, "DW_CFA_nop\n");
391 break;
392 case DW_CFA_set_loc:
393 codeOffset =
394 addressSpace.getEncodedP(p, instructionsEnd, cieInfo.pointerEncoding);
395 if (logDwarf)
396 fprintf(stderr, "DW_CFA_set_loc\n");
397 break;
398 case DW_CFA_advance_loc1:
399 codeOffset += (addressSpace.get8(p) * cieInfo.codeAlignFactor);
400 p += 1;
401 if (logDwarf)
402 fprintf(stderr, "DW_CFA_advance_loc1: new offset=%" PRIu64 "\n",
403 (uint64_t)codeOffset);
404 break;
405 case DW_CFA_advance_loc2:
406 codeOffset += (addressSpace.get16(p) * cieInfo.codeAlignFactor);
407 p += 2;
408 if (logDwarf)
409 fprintf(stderr, "DW_CFA_advance_loc2: new offset=%" PRIu64 "\n",
410 (uint64_t)codeOffset);
411 break;
412 case DW_CFA_advance_loc4:
413 codeOffset += (addressSpace.get32(p) * cieInfo.codeAlignFactor);
414 p += 4;
415 if (logDwarf)
416 fprintf(stderr, "DW_CFA_advance_loc4: new offset=%" PRIu64 "\n",
417 (uint64_t)codeOffset);
418 break;
419 case DW_CFA_offset_extended:
420 reg = addressSpace.getULEB128(p, instructionsEnd);
421 offset = (int64_t)addressSpace.getULEB128(p, instructionsEnd)
422 * cieInfo.dataAlignFactor;
423 if (reg > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000424 _LIBUNWIND_LOG("malformed DWARF DW_CFA_offset_extended, reg too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000425 return false;
426 }
427 results->savedRegisters[reg].location = kRegisterInCFA;
428 results->savedRegisters[reg].value = offset;
429 if (logDwarf)
430 fprintf(stderr,
431 "DW_CFA_offset_extended(reg=%" PRIu64 ", offset=%" PRId64 ")\n",
432 reg, offset);
433 break;
434 case DW_CFA_restore_extended:
435 reg = addressSpace.getULEB128(p, instructionsEnd);
436 ;
437 if (reg > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000438 _LIBUNWIND_LOG("malformed DWARF DW_CFA_restore_extended, reg too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000439 return false;
440 }
441 results->savedRegisters[reg] = initialState.savedRegisters[reg];
442 if (logDwarf)
443 fprintf(stderr, "DW_CFA_restore_extended(reg=%" PRIu64 ")\n", reg);
444 break;
445 case DW_CFA_undefined:
446 reg = addressSpace.getULEB128(p, instructionsEnd);
447 if (reg > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000448 _LIBUNWIND_LOG("malformed DWARF DW_CFA_undefined, reg too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000449 return false;
450 }
451 results->savedRegisters[reg].location = kRegisterUnused;
452 if (logDwarf)
453 fprintf(stderr, "DW_CFA_undefined(reg=%" PRIu64 ")\n", reg);
454 break;
455 case DW_CFA_same_value:
456 reg = addressSpace.getULEB128(p, instructionsEnd);
457 if (reg > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000458 _LIBUNWIND_LOG("malformed DWARF DW_CFA_same_value, reg too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000459 return false;
460 }
461 // <rdar://problem/8456377> DW_CFA_same_value unsupported
462 // "same value" means register was stored in frame, but its current
463 // value has not changed, so no need to restore from frame.
464 // We model this as if the register was never saved.
465 results->savedRegisters[reg].location = kRegisterUnused;
466 // set flag to disable conversion to compact unwind
467 results->sameValueUsed = true;
468 if (logDwarf)
469 fprintf(stderr, "DW_CFA_same_value(reg=%" PRIu64 ")\n", reg);
470 break;
471 case DW_CFA_register:
472 reg = addressSpace.getULEB128(p, instructionsEnd);
473 reg2 = addressSpace.getULEB128(p, instructionsEnd);
474 if (reg > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000475 _LIBUNWIND_LOG("malformed DWARF DW_CFA_register, reg too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000476 return false;
477 }
478 if (reg2 > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000479 _LIBUNWIND_LOG("malformed DWARF DW_CFA_register, reg2 too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000480 return false;
481 }
482 results->savedRegisters[reg].location = kRegisterInRegister;
483 results->savedRegisters[reg].value = (int64_t)reg2;
484 // set flag to disable conversion to compact unwind
485 results->registersInOtherRegisters = true;
486 if (logDwarf)
487 fprintf(stderr, "DW_CFA_register(reg=%" PRIu64 ", reg2=%" PRIu64 ")\n",
488 reg, reg2);
489 break;
Peter Zotov543f8482015-11-09 06:57:29 +0000490#if !defined(_LIBUNWIND_NO_HEAP)
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000491 case DW_CFA_remember_state:
492 // avoid operator new, because that would be an upward dependency
493 entry = (PrologInfoStackEntry *)malloc(sizeof(PrologInfoStackEntry));
494 if (entry != NULL) {
495 entry->next = rememberStack;
496 entry->info = *results;
497 rememberStack = entry;
498 } else {
499 return false;
500 }
501 if (logDwarf)
502 fprintf(stderr, "DW_CFA_remember_state\n");
503 break;
504 case DW_CFA_restore_state:
505 if (rememberStack != NULL) {
506 PrologInfoStackEntry *top = rememberStack;
507 *results = top->info;
508 rememberStack = top->next;
509 free((char *)top);
510 } else {
511 return false;
512 }
513 if (logDwarf)
514 fprintf(stderr, "DW_CFA_restore_state\n");
515 break;
Peter Zotov543f8482015-11-09 06:57:29 +0000516#endif
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000517 case DW_CFA_def_cfa:
518 reg = addressSpace.getULEB128(p, instructionsEnd);
519 offset = (int64_t)addressSpace.getULEB128(p, instructionsEnd);
520 if (reg > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000521 _LIBUNWIND_LOG("malformed DWARF DW_CFA_def_cfa, reg too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000522 return false;
523 }
524 results->cfaRegister = (uint32_t)reg;
525 results->cfaRegisterOffset = (int32_t)offset;
526 if (logDwarf)
527 fprintf(stderr, "DW_CFA_def_cfa(reg=%" PRIu64 ", offset=%" PRIu64 ")\n",
528 reg, offset);
529 break;
530 case DW_CFA_def_cfa_register:
531 reg = addressSpace.getULEB128(p, instructionsEnd);
532 if (reg > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000533 _LIBUNWIND_LOG("malformed DWARF DW_CFA_def_cfa_register, reg too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000534 return false;
535 }
536 results->cfaRegister = (uint32_t)reg;
537 if (logDwarf)
538 fprintf(stderr, "DW_CFA_def_cfa_register(%" PRIu64 ")\n", reg);
539 break;
540 case DW_CFA_def_cfa_offset:
541 results->cfaRegisterOffset = (int32_t)
542 addressSpace.getULEB128(p, instructionsEnd);
543 results->codeOffsetAtStackDecrement = (uint32_t)codeOffset;
544 if (logDwarf)
545 fprintf(stderr, "DW_CFA_def_cfa_offset(%d)\n",
546 results->cfaRegisterOffset);
547 break;
548 case DW_CFA_def_cfa_expression:
549 results->cfaRegister = 0;
550 results->cfaExpression = (int64_t)p;
551 length = addressSpace.getULEB128(p, instructionsEnd);
552 p += length;
553 if (logDwarf)
554 fprintf(stderr, "DW_CFA_def_cfa_expression(expression=0x%" PRIx64
555 ", length=%" PRIu64 ")\n",
556 results->cfaExpression, length);
557 break;
558 case DW_CFA_expression:
559 reg = addressSpace.getULEB128(p, instructionsEnd);
560 if (reg > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000561 _LIBUNWIND_LOG("malformed DWARF DW_CFA_expression, reg too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000562 return false;
563 }
564 results->savedRegisters[reg].location = kRegisterAtExpression;
565 results->savedRegisters[reg].value = (int64_t)p;
566 length = addressSpace.getULEB128(p, instructionsEnd);
567 p += length;
568 if (logDwarf)
569 fprintf(stderr, "DW_CFA_expression(reg=%" PRIu64
570 ", expression=0x%" PRIx64 ", length=%" PRIu64 ")\n",
571 reg, results->savedRegisters[reg].value, length);
572 break;
573 case DW_CFA_offset_extended_sf:
574 reg = addressSpace.getULEB128(p, instructionsEnd);
575 if (reg > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000576 _LIBUNWIND_LOG(
577 "malformed DWARF DW_CFA_offset_extended_sf, reg too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000578 return false;
579 }
580 offset =
581 addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor;
582 results->savedRegisters[reg].location = kRegisterInCFA;
583 results->savedRegisters[reg].value = offset;
584 if (logDwarf)
585 fprintf(stderr, "DW_CFA_offset_extended_sf(reg=%" PRIu64
586 ", offset=%" PRId64 ")\n",
587 reg, offset);
588 break;
589 case DW_CFA_def_cfa_sf:
590 reg = addressSpace.getULEB128(p, instructionsEnd);
591 offset =
592 addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor;
593 if (reg > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000594 _LIBUNWIND_LOG("malformed DWARF DW_CFA_def_cfa_sf, reg too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000595 return false;
596 }
597 results->cfaRegister = (uint32_t)reg;
598 results->cfaRegisterOffset = (int32_t)offset;
599 if (logDwarf)
600 fprintf(stderr,
601 "DW_CFA_def_cfa_sf(reg=%" PRIu64 ", offset=%" PRId64 ")\n", reg,
602 offset);
603 break;
604 case DW_CFA_def_cfa_offset_sf:
605 results->cfaRegisterOffset = (int32_t)
606 (addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor);
607 results->codeOffsetAtStackDecrement = (uint32_t)codeOffset;
608 if (logDwarf)
609 fprintf(stderr, "DW_CFA_def_cfa_offset_sf(%d)\n",
610 results->cfaRegisterOffset);
611 break;
612 case DW_CFA_val_offset:
613 reg = addressSpace.getULEB128(p, instructionsEnd);
614 offset = (int64_t)addressSpace.getULEB128(p, instructionsEnd)
615 * cieInfo.dataAlignFactor;
616 results->savedRegisters[reg].location = kRegisterOffsetFromCFA;
617 results->savedRegisters[reg].value = offset;
618 if (logDwarf)
619 fprintf(stderr,
620 "DW_CFA_val_offset(reg=%" PRIu64 ", offset=%" PRId64 "\n", reg,
621 offset);
622 break;
623 case DW_CFA_val_offset_sf:
624 reg = addressSpace.getULEB128(p, instructionsEnd);
625 if (reg > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000626 _LIBUNWIND_LOG("malformed DWARF DW_CFA_val_offset_sf, reg too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000627 return false;
628 }
629 offset =
630 addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor;
631 results->savedRegisters[reg].location = kRegisterOffsetFromCFA;
632 results->savedRegisters[reg].value = offset;
633 if (logDwarf)
634 fprintf(stderr,
635 "DW_CFA_val_offset_sf(reg=%" PRIu64 ", offset=%" PRId64 "\n",
636 reg, offset);
637 break;
638 case DW_CFA_val_expression:
639 reg = addressSpace.getULEB128(p, instructionsEnd);
640 if (reg > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000641 _LIBUNWIND_LOG("malformed DWARF DW_CFA_val_expression, reg too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000642 return false;
643 }
644 results->savedRegisters[reg].location = kRegisterIsExpression;
645 results->savedRegisters[reg].value = (int64_t)p;
646 length = addressSpace.getULEB128(p, instructionsEnd);
647 p += length;
648 if (logDwarf)
649 fprintf(stderr, "DW_CFA_val_expression(reg=%" PRIu64
650 ", expression=0x%" PRIx64 ", length=%" PRIu64 ")\n",
651 reg, results->savedRegisters[reg].value, length);
652 break;
653 case DW_CFA_GNU_args_size:
654 length = addressSpace.getULEB128(p, instructionsEnd);
655 results->spExtraArgSize = (uint32_t)length;
656 if (logDwarf)
657 fprintf(stderr, "DW_CFA_GNU_args_size(%" PRIu64 ")\n", length);
658 break;
659 case DW_CFA_GNU_negative_offset_extended:
660 reg = addressSpace.getULEB128(p, instructionsEnd);
661 if (reg > kMaxRegisterNumber) {
Saleem Abdulrasoold8c14f52017-01-21 16:22:55 +0000662 _LIBUNWIND_LOG(
663 "malformed DWARF DW_CFA_GNU_negative_offset_extended, reg too big");
Saleem Abdulrasool675df582015-04-24 19:39:17 +0000664 return false;
665 }
666 offset = (int64_t)addressSpace.getULEB128(p, instructionsEnd)
667 * cieInfo.dataAlignFactor;
668 results->savedRegisters[reg].location = kRegisterInCFA;
669 results->savedRegisters[reg].value = -offset;
670 if (logDwarf)
671 fprintf(stderr, "DW_CFA_GNU_negative_offset_extended(%" PRId64 ")\n",
672 offset);
673 break;
674 default:
675 operand = opcode & 0x3F;
676 switch (opcode & 0xC0) {
677 case DW_CFA_offset:
678 reg = operand;
679 offset = (int64_t)addressSpace.getULEB128(p, instructionsEnd)
680 * cieInfo.dataAlignFactor;
681 results->savedRegisters[reg].location = kRegisterInCFA;
682 results->savedRegisters[reg].value = offset;
683 if (logDwarf)
684 fprintf(stderr, "DW_CFA_offset(reg=%d, offset=%" PRId64 ")\n",
685 operand, offset);
686 break;
687 case DW_CFA_advance_loc:
688 codeOffset += operand * cieInfo.codeAlignFactor;
689 if (logDwarf)
690 fprintf(stderr, "DW_CFA_advance_loc: new offset=%" PRIu64 "\n",
691 (uint64_t)codeOffset);
692 break;
693 case DW_CFA_restore:
694 reg = operand;
695 results->savedRegisters[reg] = initialState.savedRegisters[reg];
696 if (logDwarf)
697 fprintf(stderr, "DW_CFA_restore(reg=%" PRIu64 ")\n", reg);
698 break;
699 default:
700 if (logDwarf)
701 fprintf(stderr, "unknown CFA opcode 0x%02X\n", opcode);
702 return false;
703 }
704 }
705 }
706
707 return true;
708}
709
710} // namespace libunwind
711
712#endif // __DWARF_PARSER_HPP__