HomeSort by relevance Sort by last modified time
    Searched refs:Abbv (Results 1 - 5 of 5) sorted by null

  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 175 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
176 Abbv->Add(BitCodeAbbrevOp(bitc::VST_CODE_ENTRY));
177 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
179 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
180 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7));
181 unsigned V7Abbrev = Stream.EmitAbbrev(Abbv);
249 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
250 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
251 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
253 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace =
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 199 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
200 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
201 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
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_OLD));
209 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
210 Abbv->Add(BitCodeAbbrevOp(0)); // FIXME: DEAD value, remove in LLVM 3.0
211 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array))
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 208 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
209 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
210 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
211 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
212 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
215 Abbv = new BitCodeAbbrev();
216 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
217 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
218 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
219 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits))
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 318 BitCodeAbbrev *Abbv = CurAbbrevs[AbbrevNo];
323 for (unsigned i = 0, e = static_cast<unsigned>(Abbv->getNumOperandInfos());
325 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
333 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
469 void EncodeAbbrev(BitCodeAbbrev *Abbv) {
471 EmitVBR(Abbv->getNumOperandInfos(), 5);
472 for (unsigned i = 0, e = static_cast<unsigned>(Abbv->getNumOperandInfos());
474 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
489 unsigned EmitAbbrev(BitCodeAbbrev *Abbv) {
491 EncodeAbbrev(Abbv);
    [all...]
BitstreamReader.h 514 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();
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 = CurAbbrevs.back()
    [all...]

Completed in 34 milliseconds