74c975304af19696eae744710bb3594fd2a3b4a5
[oota-llvm.git] / lib / DebugInfo / DWARFAbbreviationDeclaration.cpp
1 //===-- 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"
13 using namespace llvm;
14 using namespace dwarf;
15
16 bool
17 DWARFAbbreviationDeclaration::extract(DataExtractor data, uint32_t* offset_ptr){
18   return extract(data, offset_ptr, data.getULEB128(offset_ptr));
19 }
20
21 bool
22 DWARFAbbreviationDeclaration::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;
41   } else {
42     Tag = 0;
43     HasChildren = false;
44   }
45
46   return false;
47 }
48
49 void DWARFAbbreviationDeclaration::dump(raw_ostream &OS) const {
50   const char *tagString = TagString(getTag());
51   OS << '[' << getCode() << "] " << (tagString ? tagString : "DW_TAG_Unknown")
52      << "\tDW_CHILDREN_"
53      << (hasChildren() ? "yes" : "no") << '\n';
54   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   }
60   OS << '\n';
61 }
62
63 uint32_t
64 DWARFAbbreviationDeclaration::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 }