Searched refs:Abbrevs (Results 1 - 10 of 10) sorted by relevance

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp30 llvm::DenseMap<unsigned, unsigned> Abbrevs; member in class:__anon3166::AbbreviationMap
35 assert(Abbrevs.find(recordID) == Abbrevs.end()
37 Abbrevs[recordID] = abbrevID;
41 assert(Abbrevs.find(recordID) != Abbrevs.end() &&
43 return Abbrevs[recordID];
206 AbbreviationMap Abbrevs; member in struct:__anon3166::SDiagsWriter::SharedState
331 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record,
342 State->Stream.EmitRecordWithAbbrev(State->Abbrevs
377 AbbreviationMap &Abbrevs = State->Abbrevs; local
463 AbbreviationMap &Abbrevs = State->Abbrevs; local
577 AbbreviationMap &Abbrevs = State->Abbrevs; local
638 AbbreviationMap &Abbrevs = State->Abbrevs; local
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitstreamReader.cpp35 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs; local
36 for (size_t i = 0, e = Abbrevs.size(); i != e; ++i)
37 Abbrevs[i]->addRef();
42 // Free all the Abbrevs.
47 // Free all the Abbrevs in the block scope.
49 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs; local
50 for (size_t i = 0, e = Abbrevs.size(); i != e; ++i)
51 Abbrevs[i]->dropRef();
66 for (size_t i = 0, e = Info->Abbrevs.size(); i != e; ++i) {
67 CurAbbrevs.push_back(Info->Abbrevs[
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/Bitcode/
H A DBitstreamWriter.h42 /// CurAbbrevs - Abbrevs installed at in this block.
59 std::vector<BitCodeAbbrev*> Abbrevs; member in struct:llvm::BitstreamWriter::BlockInfo
107 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
109 Info.Abbrevs[i]->dropRef();
234 for (unsigned i = 0, e = static_cast<unsigned>(Info->Abbrevs.size());
236 CurAbbrevs.push_back(Info->Abbrevs[i]);
237 Info->Abbrevs[i]->addRef();
540 Info.Abbrevs.push_back(Abbv);
542 return Info.Abbrevs.size()-1+bitc::FIRST_APPLICATION_ABBREV;
H A DBitstreamReader.h41 std::vector<BitCodeAbbrev*> Abbrevs; member in struct:llvm::BitstreamReader::BlockInfo
83 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
85 Info.Abbrevs[i]->dropRef();
190 /// CurAbbrevs - Abbrevs installed at in this block.
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.cpp34 const DIEAbbrev &Abbrevs = Die.getAbbrev(); local
39 if (Abbrevs.getData()[i].getAttribute() == Attr) {
124 const DIEAbbrev &Abbrevs = Die.getAbbrev(); local
129 Attrs.NAME.Desc = &Abbrevs.getData()[i]; \
134 << dwarf::AttributeString(Abbrevs.getData()[i].getAttribute())
136 switch (Abbrevs.getData()[i].getAttribute()) {
H A DDIE.cpp137 const DIEAbbrev &Abbrevs = getAbbrev(); local
142 if (Abbrevs.getData()[i].getAttribute() == Attribute)
H A DDwarfDebug.h714 void emitDIE(DIE *Die, ArrayRef<DIEAbbrev *> Abbrevs);
H A DDwarfDebug.cpp2047 void DwarfDebug::emitDIE(DIE *Die, ArrayRef<DIEAbbrev *> Abbrevs) { argument
2050 const DIEAbbrev *Abbrev = Abbrevs[AbbrevNumber - 1];
2152 emitDIE(Children[j], Abbrevs);
2208 std::vector<DIEAbbrev *> *Abbrevs) {
2210 if (!Abbrevs->empty()) {
2218 for (unsigned i = 0, N = Abbrevs->size(); i < N; ++i) {
2220 const DIEAbbrev *Abbrev = Abbrevs->at(i);
2207 emitAbbrevs(const MCSection *Section, std::vector<DIEAbbrev *> *Abbrevs) argument
/freebsd-9.3-release/contrib/llvm/lib/DebugInfo/
H A DDWARFUnit.h46 const DWARFAbbreviationDeclarationSet *Abbrevs; member in class:llvm::DWARFUnit
115 return Abbrevs;
H A DDWARFUnit.cpp68 Abbrevs = Abbrev->getAbbreviationDeclarationSet(abbrOffset);
101 Abbrevs = 0;

Completed in 287 milliseconds