blob: 74c975304af19696eae744710bb3594fd2a3b4a5 [file] [log] [blame]
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +00001//===-- DWARFAbbreviationDeclaration.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
10#include "DWARFAbbreviationDeclaration.h"
11#include "llvm/Support/Dwarf.h"
12#include "llvm/Support/raw_ostream.h"
13using namespace llvm;
14using namespace dwarf;
15
16bool
17DWARFAbbreviationDeclaration::extract(DataExtractor data, uint32_t* offset_ptr){
18 return extract(data, offset_ptr, data.getULEB128(offset_ptr));
19}
20
21bool
22DWARFAbbreviationDeclaration::extract(DataExtractor data, uint32_t* offset_ptr,
23 uint32_t code) {
24 Code = code;
25 Attributes.clear();
26 if (Code) {
27 Tag = data.getULEB128(offset_ptr);
28 HasChildren = data.getU8(offset_ptr);
29
30 while (data.isValidOffset(*offset_ptr)) {
31 uint16_t attr = data.getULEB128(offset_ptr);
32 uint16_t form = data.getULEB128(offset_ptr);
33
34 if (attr && form)
35 Attributes.push_back(DWARFAttribute(attr, form));
36 else
37 break;
38 }
39
40 return Tag != 0;
Benjamin Kramer4aa3fea2011-09-13 21:47:32 +000041 } else {
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +000042 Tag = 0;
43 HasChildren = false;
44 }
45
46 return false;
47}
48
49void DWARFAbbreviationDeclaration::dump(raw_ostream &OS) const {
Benjamin Kramer42180e82011-09-15 04:00:58 +000050 const char *tagString = TagString(getTag());
51 OS << '[' << getCode() << "] " << (tagString ? tagString : "DW_TAG_Unknown")
52 << "\tDW_CHILDREN_"
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +000053 << (hasChildren() ? "yes" : "no") << '\n';
Benjamin Kramer42180e82011-09-15 04:00:58 +000054 for (unsigned i = 0, e = Attributes.size(); i != e; ++i) {
55 const char *attrString = AttributeString(Attributes[i].getAttribute());
56 const char *formString = FormEncodingString(Attributes[i].getForm());
57 OS << '\t' << (attrString ? attrString : "DW_AT_Unknown")
58 << '\t' << (formString ? formString : "DW_FORM_Unknown") << '\n';
59 }
Benjamin Kramer72c0d7f2011-09-13 19:42:23 +000060 OS << '\n';
61}
62
63uint32_t
64DWARFAbbreviationDeclaration::findAttributeIndex(uint16_t attr) const {
65 for (uint32_t i = 0, e = Attributes.size(); i != e; ++i) {
66 if (Attributes[i].getAttribute() == attr)
67 return i;
68 }
69 return -1U;
70}