Searched defs:Abbrev (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/DebugInfo/
H A DDWARFContext.h30 OwningPtr<DWARFDebugAbbrev> Abbrev; member in class:llvm::DWARFContext
/external/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp317 static void AddSourceLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) { argument
319 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
320 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
321 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
322 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
325 static void AddRangeLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) { argument
326 AddSourceLocationAbbrev(Abbrev);
327 AddSourceLocationAbbrev(Abbrev);
341 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
342 Abbrev
[all...]
/external/llvm/include/llvm/Bitcode/
H A DBitstreamWriter.h312 void EmitRecordWithAbbrevImpl(unsigned Abbrev, SmallVectorImpl<uintty> &Vals, argument
316 unsigned AbbrevNo = Abbrev-bitc::FIRST_APPLICATION_ABBREV;
320 EmitCode(Abbrev);
407 unsigned Abbrev = 0) {
408 if (!Abbrev) {
422 EmitRecordWithAbbrev(Abbrev, Vals);
429 void EmitRecordWithAbbrev(unsigned Abbrev, SmallVectorImpl<uintty> &Vals) {
430 EmitRecordWithAbbrevImpl(Abbrev, Vals, StringRef());
439 void EmitRecordWithBlob(unsigned Abbrev, SmallVectorImpl<uintty> &Vals,
441 EmitRecordWithAbbrevImpl(Abbrev, Val
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.h124 /// Abbrev - Buffer for constructing abbreviation.
126 DIEAbbrev Abbrev; member in class:llvm::DIE
142 : Offset(0), Size(0), Abbrev(Tag, dwarf::DW_CHILDREN_no), Parent(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);
173 Abbrev.setChildrenFlag(dwarf::DW_CHILDREN_yes);
H A DDwarfDebug.cpp176 void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) { argument
179 Abbrev.Profile(ID);
182 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
185 if (InSet == &Abbrev) {
187 Abbreviations.push_back(&Abbrev);
190 Abbrev.setNumber(Abbreviations.size());
193 Abbrev.setNumber(InSet->getNumber());
1510 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1]; local
1519 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1528 assert(Abbrev
1592 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1]; local
1723 const DIEAbbrev *Abbrev = Abbreviations[i]; local
[all...]
/external/clang/lib/Serialization/
H A DASTWriter.cpp1047 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
1048 Abbrev->Add(BitCodeAbbrevOp(ORIGINAL_PCH_DIR));
1049 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
1050 unsigned AbbrevCode = Stream.EmitAbbrev(Abbrev);
1160 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1161 Abbrev->Add(BitCodeAbbrevOp(STAT_CACHE));
1162 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
1163 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
1164 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1165 unsigned StatCacheAbbrev = Stream.EmitAbbrev(Abbrev);
1786 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
2192 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
2233 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
2399 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
2627 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
2641 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
3432 llvm::BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); local
[all...]

Completed in 137 milliseconds