HomeSort by relevance Sort by last modified time
    Searched refs:BitCodeAbbrevOp (Results 1 - 9 of 9) sorted by null

  /external/clang/lib/Serialization/
ASTWriterDecl.cpp     [all...]
ASTWriter.cpp     [all...]
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 80 /// BitCodeAbbrevOp - This describes one or more operands in an abbreviation.
85 class BitCodeAbbrevOp {
98 explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {}
99 explicit BitCodeAbbrevOp(Encoding E, uint64_t Data = 0)
158 template <> struct isPodLike<BitCodeAbbrevOp> { static const bool value=true; };
164 SmallVector<BitCodeAbbrevOp, 32> OperandList;
176 const BitCodeAbbrevOp &getOperandInfo(unsigned N) const {
180 void Add(const BitCodeAbbrevOp &OpInfo) {
BitstreamReader.h 470 void ReadAbbreviatedLiteral(const BitCodeAbbrevOp &Op,
477 void ReadAbbreviatedField(const BitCodeAbbrevOp &Op,
484 case BitCodeAbbrevOp::Fixed:
487 case BitCodeAbbrevOp::VBR:
490 case BitCodeAbbrevOp::Char6:
491 Vals.push_back(BitCodeAbbrevOp::DecodeChar6(Read(6)));
517 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
520 } else if (Op.getEncoding() == BitCodeAbbrevOp::Array) {
526 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
531 } else if (Op.getEncoding() == BitCodeAbbrevOp::Blob)
    [all...]
BitstreamWriter.h 276 void EmitAbbreviatedLiteral(const BitCodeAbbrevOp &Op, uintty V) {
287 void EmitAbbreviatedField(const BitCodeAbbrevOp &Op, uintty V) {
293 case BitCodeAbbrevOp::Fixed:
297 case BitCodeAbbrevOp::VBR:
301 case BitCodeAbbrevOp::Char6:
302 Emit(BitCodeAbbrevOp::EncodeChar6((char)V), 6);
325 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
330 } else if (Op.getEncoding() == BitCodeAbbrevOp::Array) {
333 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
357 } else if (Op.getEncoding() == BitCodeAbbrevOp::Blob)
    [all...]
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 319 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
320 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
321 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
322 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
342 Abbrev->Add(BitCodeAbbrevOp(RECORD_VERSION));
343 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32))
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 125 if (AbbrevToUse && !BitCodeAbbrevOp::isChar6(Str[i]))
176 Abbv->Add(BitCodeAbbrevOp(bitc::VST_CODE_ENTRY));
177 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
179 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
180 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7));
250 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
251 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 147 if (AbbrevToUse && !BitCodeAbbrevOp::isChar6(Str[i]))
200 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
201 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
203 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
208 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION_OLD));
209 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
210 Abbv->Add(BitCodeAbbrevOp(0)); // FIXME: DEAD value, remove in LLVM 3.0
211 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array))
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 154 if (AbbrevToUse && !BitCodeAbbrevOp::isChar6(Str[i]))
209 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
210 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
211 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
216 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
217 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
218 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array))
    [all...]

Completed in 140 milliseconds