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

  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 165 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
166 Abbv->Add(BitCodeAbbrevOp(bitc::VST_CODE_ENTRY));
167 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
169 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
170 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7));
171 unsigned V7Abbrev = Stream.EmitAbbrev(Abbv);
240 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
241 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
242 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
244 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace =
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 191 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
192 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
193 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
195 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
196 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
199 Abbv = new BitCodeAbbrev();
200 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION_OLD));
201 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
202 Abbv->Add(BitCodeAbbrevOp(0)); // FIXME: DEAD value, remove in LLVM 3.0
203 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array))
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 325 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
326 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
327 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
328 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
329 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
332 Abbv = new BitCodeAbbrev();
333 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
334 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
335 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
336 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits))
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 198 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
199 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
200 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
201 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
202 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
205 Abbv = new BitCodeAbbrev();
206 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
207 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
208 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
209 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits))
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 147 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
149 for (unsigned i = 0, e = Abbv->getNumOperandInfos(); i != e; ++i) {
150 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
166 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
205 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
208 assert(Abbv->getNumOperandInfos() != 0 && "no record code in abbreviation?");
209 const BitCodeAbbrevOp &CodeOp = Abbv->getOperandInfo(0);
216 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i != e; ++i) {
217 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
235 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i)
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 320 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);
472 void EncodeAbbrev(BitCodeAbbrev *Abbv) {
474 EmitVBR(Abbv->getNumOperandInfos(), 5);
475 for (unsigned i = 0, e = static_cast<unsigned>(Abbv->getNumOperandInfos());
477 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
492 unsigned EmitAbbrev(BitCodeAbbrev *Abbv) {
494 EncodeAbbrev(Abbv);
    [all...]

Completed in 1586 milliseconds