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 161 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
162 Abbv->Add(BitCodeAbbrevOp(bitc::VST_CODE_ENTRY));
163 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
165 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
166 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7));
167 unsigned V7Abbrev = Stream.EmitAbbrev(Abbv);
236 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
237 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
238 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
240 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace =
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 187 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
188 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
189 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
191 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
192 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
195 Abbv = new BitCodeAbbrev();
196 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION_OLD));
197 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
198 Abbv->Add(BitCodeAbbrevOp(0)); // FIXME: DEAD value, remove in LLVM 3.0
199 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array))
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 242 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
243 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
244 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
245 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
246 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
249 Abbv = new BitCodeAbbrev();
250 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
251 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
252 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
253 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);
207 for (unsigned i = 0, e = Abbv->getNumOperandInfos(); i != e; ++i) {
208 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
226 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
274 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
279 Abbv->Add(BitCodeAbbrevOp(ReadVBR64(8)))
    [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);
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) {
493 EncodeAbbrev(Abbv);
    [all...]

Completed in 358 milliseconds