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

  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfFile.cpp 28 void DwarfFile::assignAbbrevNumber(DIEAbbrev &Abbrev) {
30 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
33 if (InSet == &Abbrev) {
35 Abbreviations.push_back(&Abbrev);
38 Abbrev.setNumber(Abbreviations.size());
41 Abbrev.setNumber(InSet->getNumber());
97 const DIEAbbrev &Abbrev = Die.getAbbrev();
106 const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData();
118 assert(Abbrev.hasChildren() && "Children flag not set");
133 // Start the debug abbrev section
    [all...]
DIE.h 121 /// Abbrev - Buffer for constructing abbreviation.
123 DIEAbbrev Abbrev;
143 : Offset(0), Size(0), Abbrev((dwarf::Tag)0, dwarf::DW_CHILDREN_no),
148 : Offset(0), Size(0), Abbrev((dwarf::Tag)Tag, dwarf::DW_CHILDREN_no),
152 DIEAbbrev &getAbbrev() { return Abbrev; }
153 const DIEAbbrev &getAbbrev() const { return Abbrev; }
154 unsigned getAbbrevNumber() const { return Abbrev.getNumber(); }
155 dwarf::Tag getTag() const { return Abbrev.getTag(); }
175 Abbrev.AddAttribute(Attribute, Form);
183 Abbrev.setChildrenFlag(dwarf::DW_CHILDREN_yes)
    [all...]
DwarfDebug.cpp     [all...]
  /external/llvm/lib/DebugInfo/
DWARFContext.h 36 std::unique_ptr<DWARFDebugAbbrev> Abbrev;
DWARFUnit.h 30 const DWARFDebugAbbrev *Abbrev;
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 358 static void AddSourceLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) {
360 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
361 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
362 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
363 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
366 static void AddRangeLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) {
367 AddSourceLocationAbbrev(Abbrev);
368 AddSourceLocationAbbrev(Abbrev);
385 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
386 Abbrev->Add(BitCodeAbbrevOp(RECORD_VERSION))
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 749 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
750 Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_INDEX));
751 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
752 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
753 unsigned IDTableAbbrev = Stream.EmitAbbrev(Abbrev);
ASTWriter.cpp     [all...]

Completed in 295 milliseconds