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

  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfFile.cpp 25 for (DIEAbbrev *Abbrev : Abbreviations)
45 Abbreviations.push_back(New);
46 New->setNumber(Abbreviations.size());
47 Die.setAbbrevNumber(Abbreviations.size());
59 // the abbreviations going into ASection.
133 if (!Abbreviations.empty()) {
136 Asm->emitDwarfAbbrevs(Abbreviations);
DwarfFile.h 38 // Target of Dwarf emission, used for sizing of abbreviations.
43 // Used to uniquely define abbreviations.
46 // A list of all the unique abbreviations in use.
47 std::vector<DIEAbbrev *> Abbreviations;
100 /// \brief Emit a set of abbreviations to the specific section.
  /external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/X86/
dwarfdump-debug-names.s 107 # CHECK-NEXT: Abbreviations table size: 0x7
113 # CHECK-NEXT: Abbreviations [
153 # CHECK-NEXT: Abbreviations table size: 0x7
159 # CHECK-NEXT: Abbreviations [
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 143 for (DIEAbbrev *Abbrev : Abbreviations)
162 Abbreviations.push_back(New);
163 New->setNumber(Abbreviations.size());
164 Die.setAbbrevNumber(Abbreviations.size());
172 if (!Abbreviations.empty()) {
175 AP->emitDwarfAbbrevs(Abbreviations);
AccelTable.cpp 218 DenseMap<uint32_t, SmallVector<AttributeEncoding, 2>> Abbreviations;
458 for (const auto &Abbrev : Abbreviations) {
478 auto AbbrevIt = Abbreviations.find(Entry.getDieTag());
479 assert(AbbrevIt != Abbreviations.end() &&
527 Abbreviations.reserve(UniqueTags.size());
529 Abbreviations.try_emplace(Tag, UniformAttributes);
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/DWARF/
DwarfGenerator.h 254 DIEAbbrevSet Abbreviations;
307 DIEAbbrevSet &getAbbrevSet() { return Abbreviations; }
DwarfGenerator.cpp 376 Abbreviations(Allocator) {}
490 Abbreviations.Emit(Asm.get(), TLOF->getDwarfAbbrevSection());
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfDebug.h 202 /// AbbreviationsSet - Used to uniquely define abbreviations.
206 /// Abbreviations - A list of all the unique abbreviations in use.
208 std::vector<DIEAbbrev *> Abbreviations;
DwarfDebug.cpp 161 Abbreviations.push_back(&Abbrev);
164 Abbrev.setNumber(Abbreviations.size());
727 // Corresponding abbreviations into a abbrev section.
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]
DwarfLinker.h 426 /// FoldingSet that uniques the abbreviations.
429 /// Storage for the unique Abbreviations.
432 std::vector<std::unique_ptr<DIEAbbrev>> Abbreviations;
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 683 // We share one abbreviations table across all units so it's always at the
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DIE.h 131 /// This class will unique the DIE abbreviations for a llvm::DIE object and
139 /// FoldingSet that uniques the abbreviations.
141 /// A list of all the unique abbreviations in use.
142 std::vector<DIEAbbrev *> Abbreviations;
156 /// Print all abbreviations using the specified asm printer.
744 /// \param AbbrevSet the abbreviation used to unique DIE abbreviations.

Completed in 129 milliseconds