HomeSort by relevance Sort by last modified time
    Searched defs:Abbv (Results 1 - 9 of 9) 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);
187 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
190 assert(Abbv->getNumOperandInfos() != 0 && "no record code in abbreviation?");
191 const BitCodeAbbrevOp &CodeOp = Abbv->getOperandInfo(0);
202 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i != e; ++i) {
203 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
222 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 106 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
107 const BitCodeAbbrevOp &CodeOp = Abbv->getOperandInfo(0);
118 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i < e; ++i) {
119 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
135 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
190 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
193 assert(Abbv->getNumOperandInfos() != 0 && "no record code in abbreviation?");
194 const BitCodeAbbrevOp &CodeOp = Abbv->getOperandInfo(0);
205 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i != e; ++i) {
206 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i)
    [all...]
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 598 const BitCodeAbbrev *Abbv = nullptr;
600 Abbv = Stream.getAbbrev(Entry.ID);
640 if (Abbv) {
641 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i != e; ++i) {
642 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitstreamReader.h 492 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
494 for (unsigned i = 0, e = Abbv->getNumOperandInfos(); i != e; ++i) {
495 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
504 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
557 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
562 Abbv->Add(BitCodeAbbrevOp(ReadVBR64(8)));
568 Abbv->Add(BitCodeAbbrevOp(E, ReadVBR64(5)));
570 Abbv->Add(BitCodeAbbrevOp(E));
572 CurAbbrevs.push_back(Abbv);
605 BitCodeAbbrev *Abbv = CurAbbrevs.back()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 628 const BitCodeAbbrev *Abbv = nullptr;
630 Abbv = Stream.getAbbrev(Entry.ID);
693 if (Abbv) {
694 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i != e; ++i) {
695 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
BitcodeWriter.cpp 198 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
199 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
200 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
202 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
203 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
206 Abbv = new BitCodeAbbrev();
207 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
208 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
209 Abbv->Add(BitCodeAbbrevOp(0)); // FIXME: DEAD value, remove in LLVM 3.0
210 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array))
    [all...]
  /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
NaClBitstreamReader.h 84 NaClBitCodeAbbrev *Abbv = new NaClBitCodeAbbrev();
85 Abbrevs.push_back(Abbv);
86 return Abbv;
458 NaClBitCodeAbbrev *Abbv = LocalAbbrevs.last();
459 List->append(Abbv);
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 759 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
760 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
761 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
762 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
763 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
766 Abbv = new BitCodeAbbrev();
767 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
768 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
769 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
770 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 787 auto Abbv = std::make_shared<BitCodeAbbrev>();
788 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
789 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
790 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
791 unsigned PtrAbbrev = Stream.EmitAbbrev(std::move(Abbv));
794 Abbv = std::make_shared<BitCodeAbbrev>();
795 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
796 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
797 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
798 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits))
    [all...]

Completed in 835 milliseconds