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

  /external/llvm/unittests/Bitcode/
BitstreamReaderTest.cpp 200 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
201 Abbrev->Add(BitCodeAbbrevOp(RecordID));
202 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
203 AbbrevID = Stream.EmitAbbrev(Abbrev);
  /external/clang/lib/Frontend/
TestModuleFileExtension.cpp 31 auto Abbrev = Stream.EmitAbbrev(Abv);
42 Stream.EmitRecordWithBlob(Abbrev, Record, Message);
SerializedDiagnosticPrinter.cpp 428 static void AddSourceLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) {
430 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
431 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
432 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
433 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
436 static void AddRangeLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) {
437 AddSourceLocationAbbrev(Abbrev);
438 AddSourceLocationAbbrev(Abbrev);
455 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
456 Abbrev->Add(BitCodeAbbrevOp(RECORD_VERSION))
    [all...]
  /external/google-breakpad/src/common/dwarf/
dwarf2reader_test_common.h 72 // DWARF version, abbrev table offset, and address size.
119 TestAbbrevTable &Abbrev(int code, DwarfTag tag, DwarfHasChild has_children) {
dwarf2reader.h 244 struct Abbrev {
271 const Abbrev& abbrev);
283 // Skips the die with attributes specified in ABBREV starting at
286 const Abbrev& abbrev);
316 std::vector<Abbrev>* abbrevs_;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfFile.cpp 25 for (DIEAbbrev *Abbrev : Abbreviations)
26 Abbrev->~DIEAbbrev();
33 DIEAbbrev Abbrev = Die.generateAbbrev();
34 Abbrev.Profile(ID);
44 DIEAbbrev *New = new (AbbrevAllocator) DIEAbbrev(std::move(Abbrev));
102 const DIEAbbrev &Abbrev = assignAbbrevNumber(Die);
117 (void)Abbrev;
118 assert(Abbrev.hasChildren() && "Children flag not set");
134 // Start the debug abbrev section.
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFContext.h 30 OwningPtr<DWARFDebugAbbrev> Abbrev;
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnit.h 108 const DWARFDebugAbbrev *Abbrev;
DWARFContext.h 45 std::unique_ptr<DWARFDebugAbbrev> Abbrev;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DIE.h 116 /// Abbrev - Buffer for constructing abbreviation.
118 DIEAbbrev Abbrev;
142 : Abbrev(Tag, dwarf::DW_CHILDREN_no), Offset(0),
147 DIEAbbrev &getAbbrev() { return Abbrev; }
148 unsigned getAbbrevNumber() const { return Abbrev.getNumber(); }
149 unsigned getTag() const { return Abbrev.getTag(); }
155 void setTag(unsigned Tag) { Abbrev.setTag(Tag); }
162 Abbrev.AddAttribute(Attribute, Form);
183 Abbrev.setChildrenFlag(dwarf::DW_CHILDREN_yes);
DwarfDebug.cpp 150 void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) {
153 Abbrev.Profile(ID);
156 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
159 if (InSet == &Abbrev) {
161 Abbreviations.push_back(&Abbrev);
164 Abbrev.setNumber(Abbreviations.size());
167 Abbrev.setNumber(InSet->getNumber());
727 // Corresponding abbreviations into a abbrev section.
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 753 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
754 Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_INDEX));
755 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
756 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
757 unsigned IDTableAbbrev = Stream.EmitAbbrev(Abbrev);
ASTWriter.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 44 // VALUE_SYMTAB_BLOCK abbrev id's.
50 // CONSTANTS_BLOCK abbrev id's.
56 // FUNCTION_BLOCK abbrev id's.
160 unsigned Abbrev);
163 unsigned &Abbrev);
166 SmallVectorImpl<uint64_t> &Record, unsigned &Abbrev);
168 unsigned Abbrev);
170 SmallVectorImpl<uint64_t> &Record, unsigned Abbrev);
172 unsigned Abbrev);
174 SmallVectorImpl<uint64_t> &Record, unsigned Abbrev);
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]

Completed in 295 milliseconds