Searched defs:Abbv (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/Bitcode/
H A DBitstreamWriter.h320 BitCodeAbbrev *Abbv = CurAbbrevs[AbbrevNo];
325 for (unsigned i = 0, e = static_cast<unsigned>(Abbv->getNumOperandInfos());
327 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
335 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
471 void EncodeAbbrev(BitCodeAbbrev *Abbv) {
473 EmitVBR(Abbv->getNumOperandInfos(), 5);
474 for (unsigned i = 0, e = static_cast<unsigned>(Abbv->getNumOperandInfos());
476 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
491 unsigned EmitAbbrev(BitCodeAbbrev *Abbv) { argument
493 EncodeAbbrev(Abbv);
533 EmitBlockInfoAbbrev(unsigned BlockID, BitCodeAbbrev *Abbv) argument
[all...]
H A DBitstreamReader.h514 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
516 for (unsigned i = 0, e = Abbv->getNumOperandInfos(); i != e; ++i) {
517 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
526 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
580 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
585 Abbv->Add(BitCodeAbbrevOp(ReadVBR64(8)));
591 Abbv->Add(BitCodeAbbrevOp(E, ReadVBR64(5)));
593 Abbv->Add(BitCodeAbbrevOp(E));
595 CurAbbrevs.push_back(Abbv);
628 BitCodeAbbrev *Abbv local
[all...]
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp200 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
201 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
202 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
203 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
204 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
207 Abbv = new BitCodeAbbrev();
208 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
209 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
210 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
211 Abbv
458 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
604 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
774 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1522 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1533 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1543 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1553 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1566 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1576 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1585 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1597 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1607 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1617 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1627 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1638 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1650 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1657 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
1665 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); local
[all...]

Completed in 73 milliseconds