HomeSort by relevance Sort by last modified time
    Searched full:abbv (Results 1 - 8 of 8) sorted by null

  /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...]
  /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...]
  /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...]
  /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/include/llvm/Bitcode/
BitstreamWriter.h 307 const BitCodeAbbrev *Abbv = CurAbbrevs[AbbrevNo].get();
311 unsigned i = 0, e = static_cast<unsigned>(Abbv->getNumOperandInfos());
314 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i++);
328 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
336 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) {
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readdwarf3.c 892 We do a single scan of the abbv slice to parse and
906 g_abbv *ht_ta; // abbv to insert in hash table.
985 g_abbv *abbv; local
2579 const g_abbv *abbv; local
4165 const g_abbv *abbv; local
4424 Cursor abbv; \/* for showing .debug_abbrev *\/ local
    [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);

Completed in 418 milliseconds