/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 | 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/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/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/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); 476 void EncodeAbbrev(BitCodeAbbrev *Abbv) { 478 EmitVBR(Abbv->getNumOperandInfos(), 5); 479 for (unsigned i = 0, e = static_cast<unsigned>(Abbv->getNumOperandInfos()); 481 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i); 496 unsigned EmitAbbrev(BitCodeAbbrev *Abbv) { [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/ |
BitstreamWriter.h | 304 BitCodeAbbrev *Abbv = CurAbbrevs[AbbrevNo]; 309 for (unsigned i = 0, e = static_cast<unsigned>(Abbv->getNumOperandInfos()); 311 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i); 319 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i); 456 void EncodeAbbrev(BitCodeAbbrev *Abbv) { 458 EmitVBR(Abbv->getNumOperandInfos(), 5); 459 for (unsigned i = 0, e = static_cast<unsigned>(Abbv->getNumOperandInfos()); 461 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i); 476 unsigned EmitAbbrev(BitCodeAbbrev *Abbv) { 478 EncodeAbbrev(Abbv); [all...] |
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/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 | 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...] |