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

  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 112 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
114 for (unsigned i = 0, e = Abbv->getNumOperandInfos(); i != e; ++i) {
115 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
131 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
170 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
173 assert(Abbv->getNumOperandInfos() != 0 && "no record code in abbreviation?");
174 const BitCodeAbbrevOp &CodeOp = Abbv->getOperandInfo(0);
185 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i != e; ++i) {
186 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
205 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i)
    [all...]
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 518 const BitCodeAbbrev *Abbv = nullptr;
520 Abbv = Stream.getAbbrev(Entry.ID);
529 if (Abbv) {
530 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i != e; ++i) {
531 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
  /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);
222 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
223 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
224 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
225 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace =
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 193 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
194 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
195 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
196 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
197 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
200 Abbv = new BitCodeAbbrev();
201 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION_OLD));
202 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
203 Abbv->Add(BitCodeAbbrevOp(0)); // FIXME: DEAD value, remove in LLVM 3.0
204 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array))
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 193 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
194 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
195 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
196 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
197 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
200 Abbv = new BitCodeAbbrev();
201 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
202 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
203 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
204 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits))
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 348 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
349 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
350 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
351 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
352 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
355 Abbv = new BitCodeAbbrev();
356 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
357 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
358 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
359 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits))
    [all...]

Completed in 313 milliseconds