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

  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DIE.h 52 /// DIEAbbrev - Dwarf abbreviation, describes the organization of a debug
54 class DIEAbbrev : public FoldingSetNode {
72 DIEAbbrev(unsigned T, unsigned C) : Tag(T), ChildrenFlag(C), Data() {}
118 DIEAbbrev Abbrev;
147 DIEAbbrev &getAbbrev() { return Abbrev; }
  /external/llvm/include/llvm/CodeGen/
DIE.h 56 /// DIEAbbrev - Dwarf abbreviation, describes the organization of a debug
58 class DIEAbbrev : public FoldingSetNode {
78 DIEAbbrev(dwarf::Tag T, bool C) : Tag(T), Children(C), Data() {}
646 DIEAbbrev generateAbbrev() const;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DIE.h 79 class DIEAbbrev : public FoldingSetNode {
96 DIEAbbrev(dwarf::Tag T, bool C) : Tag(T), Children(C) {}
129 /// Helps unique DIEAbbrev objects and assigns abbreviation numbers.
132 /// assign a unique abbreviation number to each unique DIEAbbrev object it
133 /// finds. The resulting collection of DIEAbbrev objects can then be emitted
136 /// The bump allocator to use when creating DIEAbbrev objects in the uniqued
140 FoldingSet<DIEAbbrev> AbbreviationsSet;
142 std::vector<DIEAbbrev *> Abbreviations;
154 DIEAbbrev &uniqueAbbreviation(DIE &Die);
723 DIEAbbrev generateAbbrev() const
    [all...]

Completed in 147 milliseconds