HomeSort by relevance Sort by last modified time
    Searched refs:DIEAbbrev (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfFile.h 28 class DIEAbbrev;
43 FoldingSet<DIEAbbrev> AbbreviationsSet;
46 std::vector<DIEAbbrev *> Abbreviations;
81 DIEAbbrev &assignAbbrevNumber(DIE &Die);
DwarfFile.cpp 24 for (DIEAbbrev *Abbrev : Abbreviations)
25 Abbrev->~DIEAbbrev();
30 DIEAbbrev &DwarfFile::assignAbbrevNumber(DIE &Die) {
32 DIEAbbrev Abbrev = Die.generateAbbrev();
36 if (DIEAbbrev *Existing =
43 DIEAbbrev *New = new (AbbrevAllocator) DIEAbbrev(std::move(Abbrev));
95 const DIEAbbrev &Abbrev = assignAbbrevNumber(Die);
DIE.cpp 48 // DIEAbbrev Implementation
53 void DIEAbbrev::Profile(FoldingSetNodeID &ID) const {
64 void DIEAbbrev::Emit(const AsmPrinter *AP) const {
90 void DIEAbbrev::print(raw_ostream &O) {
109 void DIEAbbrev::dump() { print(dbgs()); }
111 DIEAbbrev DIE::generateAbbrev() const {
112 DIEAbbrev Abbrev(Tag, hasChildren());
AsmPrinterDwarf.cpp 284 void AsmPrinter::emitDwarfAbbrev(const DIEAbbrev &Abbrev) const {
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 35 class DIEAbbrev;
460 void emitDwarfAbbrev(const DIEAbbrev &Abbrev) const;
DIE.h 57 /// DIEAbbrev - Dwarf abbreviation, describes the organization of a debug
59 class DIEAbbrev : public FoldingSetNode {
79 DIEAbbrev(dwarf::Tag T, bool C) : Tag(T), Children(C), Data() {}
665 DIEAbbrev generateAbbrev() const;
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 523 void emitAbbrevs(const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs);
690 const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs) {
    [all...]

Completed in 1151 milliseconds