all of the features in the current working draft of the upcoming C++ standard, provisionally named C++1y. The code generator's performance is greatly increased, and the loop auto-vectorizer is now enabled at -Os and -O2 in addition to -O3. The PowerPC backend has made several major improvements to code generation quality and compile time, and the X86, SPARC, ARM32, Aarch64 and SystemZ backends have all seen major feature work. Release notes for llvm and clang can be found here: <http://llvm.org/releases/3.4/docs/ReleaseNotes.html> <http://llvm.org/releases/3.4/tools/clang/docs/ReleaseNotes.html> MFC after: 1 month
98 lines
2.5 KiB
C++
98 lines
2.5 KiB
C++
//===-- DWARFAbbreviationDeclaration.cpp ----------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "DWARFAbbreviationDeclaration.h"
|
|
#include "llvm/Support/Dwarf.h"
|
|
#include "llvm/Support/Format.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
using namespace llvm;
|
|
using namespace dwarf;
|
|
|
|
void DWARFAbbreviationDeclaration::clear() {
|
|
Code = 0;
|
|
Tag = 0;
|
|
HasChildren = false;
|
|
Attributes.clear();
|
|
}
|
|
|
|
DWARFAbbreviationDeclaration::DWARFAbbreviationDeclaration() {
|
|
clear();
|
|
}
|
|
|
|
bool
|
|
DWARFAbbreviationDeclaration::extract(DataExtractor Data, uint32_t* OffsetPtr) {
|
|
clear();
|
|
Code = Data.getULEB128(OffsetPtr);
|
|
if (Code == 0) {
|
|
return false;
|
|
}
|
|
Tag = Data.getULEB128(OffsetPtr);
|
|
uint8_t ChildrenByte = Data.getU8(OffsetPtr);
|
|
HasChildren = (ChildrenByte == DW_CHILDREN_yes);
|
|
|
|
while (true) {
|
|
uint32_t CurOffset = *OffsetPtr;
|
|
uint16_t Attr = Data.getULEB128(OffsetPtr);
|
|
if (CurOffset == *OffsetPtr) {
|
|
clear();
|
|
return false;
|
|
}
|
|
CurOffset = *OffsetPtr;
|
|
uint16_t Form = Data.getULEB128(OffsetPtr);
|
|
if (CurOffset == *OffsetPtr) {
|
|
clear();
|
|
return false;
|
|
}
|
|
if (Attr == 0 && Form == 0)
|
|
break;
|
|
Attributes.push_back(AttributeSpec(Attr, Form));
|
|
}
|
|
|
|
if (Tag == 0) {
|
|
clear();
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void DWARFAbbreviationDeclaration::dump(raw_ostream &OS) const {
|
|
const char *tagString = TagString(getTag());
|
|
OS << '[' << getCode() << "] ";
|
|
if (tagString)
|
|
OS << tagString;
|
|
else
|
|
OS << format("DW_TAG_Unknown_%x", getTag());
|
|
OS << "\tDW_CHILDREN_" << (hasChildren() ? "yes" : "no") << '\n';
|
|
for (unsigned i = 0, e = Attributes.size(); i != e; ++i) {
|
|
OS << '\t';
|
|
const char *attrString = AttributeString(Attributes[i].Attr);
|
|
if (attrString)
|
|
OS << attrString;
|
|
else
|
|
OS << format("DW_AT_Unknown_%x", Attributes[i].Attr);
|
|
OS << '\t';
|
|
const char *formString = FormEncodingString(Attributes[i].Form);
|
|
if (formString)
|
|
OS << formString;
|
|
else
|
|
OS << format("DW_FORM_Unknown_%x", Attributes[i].Form);
|
|
OS << '\n';
|
|
}
|
|
OS << '\n';
|
|
}
|
|
|
|
uint32_t
|
|
DWARFAbbreviationDeclaration::findAttributeIndex(uint16_t attr) const {
|
|
for (uint32_t i = 0, e = Attributes.size(); i != e; ++i) {
|
|
if (Attributes[i].Attr == attr)
|
|
return i;
|
|
}
|
|
return -1U;
|
|
}
|