Home | History | Annotate | Download | only in AsmPrinter

Lines Matching refs:DIE

1 //===--- lib/CodeGen/DIE.cpp - DWARF Info Entries -------------------------===//
14 #include "DIE.h"
105 // DIE Implementation
108 DIE::~DIE() {
113 /// Climb up the parent chain to get the compile unit DIE to which this DIE
115 DIE *DIE::getCompileUnit() {
116 DIE *p = this;
125 DIEValue *DIE::findAttribute(unsigned Attribute) {
138 void DIE::print(raw_ostream &O, unsigned IndentCount) const {
144 << "Die: "
183 void DIE::dump() {
227 default: llvm_unreachable("DIE Value form not supported yet");
252 default: llvm_unreachable("DIE Value form not supported yet");
383 O << format("Die: 0x%lx", (long)(intptr_t)Entry);
434 DIE::print(O, 5);