Lines Matching refs:DIE
19 #include "llvm/CodeGen/DIE.h"
249 void AsmPrinter::emitDwarfDIE(const DIE &Die) const {
252 OutStreamer->AddComment("Abbrev [" + Twine(Die.getAbbrevNumber()) + "] 0x" +
253 Twine::utohexstr(Die.getOffset()) + ":0x" +
254 Twine::utohexstr(Die.getSize()) + " " +
255 dwarf::TagString(Die.getTag()));
256 EmitULEB128(Die.getAbbrevNumber());
258 // Emit the DIE attribute values.
259 for (const auto &V : Die.values()) {
261 assert(V.getForm() && "Too many attributes for DIE (check abbreviation)");
274 // Emit the DIE children if any.
275 if (Die.hasChildren()) {
276 for (auto &Child : Die.children())