Searched refs:Abbrev (Results 1 - 12 of 12) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp358 static void AddSourceLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) { argument
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) { argument
367 AddSourceLocationAbbrev(Abbrev);
368 AddSourceLocationAbbrev(Abbrev);
385 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
386 Abbrev
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/Bitcode/
H A DBitstreamWriter.h314 void EmitRecordWithAbbrevImpl(unsigned Abbrev, SmallVectorImpl<uintty> &Vals, argument
318 unsigned AbbrevNo = Abbrev-bitc::FIRST_APPLICATION_ABBREV;
322 EmitCode(Abbrev);
410 unsigned Abbrev = 0) {
411 if (!Abbrev) {
425 EmitRecordWithAbbrev(Abbrev, Vals);
432 void EmitRecordWithAbbrev(unsigned Abbrev, SmallVectorImpl<uintty> &Vals) {
433 EmitRecordWithAbbrevImpl(Abbrev, Vals, StringRef());
442 void EmitRecordWithBlob(unsigned Abbrev, SmallVectorImpl<uintty> &Vals,
444 EmitRecordWithAbbrevImpl(Abbrev, Val
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriter.cpp1223 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
1224 Abbrev->Add(BitCodeAbbrevOp(ORIGINAL_PCH_DIR));
1225 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
1226 unsigned AbbrevCode = Stream.EmitAbbrev(Abbrev);
1399 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1400 Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_FILE_ENTRY));
1401 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
1402 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location
1403 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Characteristic
1404 Abbrev
2109 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
2635 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
2676 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
2868 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
3225 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
3239 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
4147 llvm::BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
[all...]
H A DGlobalModuleIndex.cpp716 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
717 Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_INDEX));
718 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
719 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
720 unsigned IDTableAbbrev = Stream.EmitAbbrev(Abbrev);
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.h119 /// Abbrev - Buffer for constructing abbreviation.
121 DIEAbbrev Abbrev; member in class:llvm::DIE
135 : Offset(0), Size(0), Abbrev((dwarf::Tag)Tag, dwarf::DW_CHILDREN_no),
140 DIEAbbrev &getAbbrev() { return Abbrev; }
141 const DIEAbbrev &getAbbrev() const { return Abbrev; }
142 unsigned getAbbrevNumber() const { return Abbrev.getNumber(); }
143 dwarf::Tag getTag() const { return Abbrev.getTag(); }
162 Abbrev.AddAttribute(Attribute, Form);
170 Abbrev.setChildrenFlag(dwarf::DW_CHILDREN_yes);
H A DDIE.cpp150 bool isBlock = Abbrev.getTag() == 0;
160 << dwarf::TagString(Abbrev.getTag())
162 << dwarf::ChildrenString(Abbrev.getChildrenFlag()) << "\n";
167 const SmallVectorImpl<DIEAbbrevData> &Data = Abbrev.getData();
409 const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData();
428 const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData();
H A DDwarfDebug.cpp282 void DwarfUnits::assignAbbrevNumber(DIEAbbrev &Abbrev) { argument
284 DIEAbbrev *InSet = AbbreviationsSet->GetOrInsertNode(&Abbrev);
287 if (InSet == &Abbrev) {
289 Abbreviations.push_back(&Abbrev);
292 Abbrev.setNumber(Abbreviations.size());
295 Abbrev.setNumber(InSet->getNumber());
1959 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1]; local
1968 const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev->getData();
1977 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
2066 const DIEAbbrev *Abbrev local
2236 const DIEAbbrev *Abbrev = Abbrevs->at(i); local
[all...]
H A DDwarfDebug.h265 void assignAbbrevNumber(DIEAbbrev &Abbrev);
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/
H A DDWARFUnit.h31 const DWARFDebugAbbrev *Abbrev; member in class:llvm::DWARFUnit
H A DDWARFUnit.cpp23 : Abbrev(DA), InfoSection(IS), AbbrevSection(AS), RangeSection(RS),
68 Abbrevs = Abbrev->getAbbreviationDeclarationSet(abbrOffset);
H A DDWARFContext.cpp198 if (Abbrev)
199 return Abbrev.get();
203 Abbrev.reset(new DWARFDebugAbbrev());
204 Abbrev->parse(abbrData);
205 return Abbrev.get();
H A DDWARFContext.h33 OwningPtr<DWARFDebugAbbrev> Abbrev; member in class:llvm::DWARFContext

Completed in 282 milliseconds