OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BitCodeAbbrevOp
(Results
1 - 12
of
12
) sorted by null
/external/clang/lib/Serialization/
ASTWriterDecl.cpp
[
all
...]
ASTWriter.cpp
[
all
...]
GlobalModuleIndex.cpp
716
Abbrev->Add(
BitCodeAbbrevOp
(IDENTIFIER_INDEX));
717
Abbrev->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 32));
718
Abbrev->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Blob));
/external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp
85
void BitstreamCursor::readAbbreviatedLiteral(const
BitCodeAbbrevOp
&Op,
92
void BitstreamCursor::readAbbreviatedField(const
BitCodeAbbrevOp
&Op,
98
case
BitCodeAbbrevOp
::Array:
99
case
BitCodeAbbrevOp
::Blob:
101
case
BitCodeAbbrevOp
::Fixed:
104
case
BitCodeAbbrevOp
::VBR:
107
case
BitCodeAbbrevOp
::Char6:
108
Vals.push_back(
BitCodeAbbrevOp
::DecodeChar6(Read(6)));
113
void BitstreamCursor::skipAbbreviatedField(const
BitCodeAbbrevOp
&Op) {
118
case
BitCodeAbbrevOp
::Array
[
all
...]
/external/llvm/include/llvm/Bitcode/
BitCodes.h
81
///
BitCodeAbbrevOp
- This describes one or more operands in an abbreviation.
86
class
BitCodeAbbrevOp
{
99
explicit
BitCodeAbbrevOp
(uint64_t V) : Val(V), IsLiteral(true) {}
100
explicit
BitCodeAbbrevOp
(Encoding E, uint64_t Data = 0)
159
template <> struct isPodLike<
BitCodeAbbrevOp
> { static const bool value=true; };
165
SmallVector<
BitCodeAbbrevOp
, 32> OperandList;
177
const
BitCodeAbbrevOp
&getOperandInfo(unsigned N) const {
181
void Add(const
BitCodeAbbrevOp
&OpInfo) {
BitstreamWriter.h
278
void EmitAbbreviatedLiteral(const
BitCodeAbbrevOp
&Op, uintty V) {
289
void EmitAbbreviatedField(const
BitCodeAbbrevOp
&Op, uintty V) {
295
case
BitCodeAbbrevOp
::Fixed:
299
case
BitCodeAbbrevOp
::VBR:
303
case
BitCodeAbbrevOp
::Char6:
304
Emit(
BitCodeAbbrevOp
::EncodeChar6((char)V), 6);
327
const
BitCodeAbbrevOp
&Op = Abbv->getOperandInfo(i);
332
} else if (Op.getEncoding() ==
BitCodeAbbrevOp
::Array) {
335
const
BitCodeAbbrevOp
&EltEnc = Abbv->getOperandInfo(++i);
359
} else if (Op.getEncoding() ==
BitCodeAbbrevOp
::Blob)
[
all
...]
BitstreamReader.h
526
void readAbbreviatedLiteral(const
BitCodeAbbrevOp
&Op,
528
void readAbbreviatedField(const
BitCodeAbbrevOp
&Op,
530
void skipAbbreviatedField(const
BitCodeAbbrevOp
&Op);
/external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp
360
Abbrev->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 10)); // File ID.
361
Abbrev->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 32)); // Line.
362
Abbrev->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 32)); // Column.
363
Abbrev->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 32)); // Offset;
386
Abbrev->Add(
BitCodeAbbrevOp
(RECORD_VERSION));
387
Abbrev->Add(
BitCodeAbbrevOp
(BitCodeAbbrevOp::Fixed, 32))
[
all
...]
/frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp
126
if (AbbrevToUse && !
BitCodeAbbrevOp
::isChar6(Str[i]))
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));
241
Abbv->Add(
BitCodeAbbrevOp
(bitc::TYPE_CODE_POINTER));
242
Abbv->Add(
BitCodeAbbrevOp
(BitCodeAbbrevOp::Fixed
[
all
...]
/frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp
149
if (AbbrevToUse && !
BitCodeAbbrevOp
::isChar6(Str[i]))
192
Abbv->Add(
BitCodeAbbrevOp
(bitc::TYPE_CODE_POINTER));
193
Abbv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed,
195
Abbv->Add(
BitCodeAbbrevOp
(0)); // Addrspace = 0
200
Abbv->Add(
BitCodeAbbrevOp
(bitc::TYPE_CODE_FUNCTION_OLD));
201
Abbv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 1)); // isvararg
202
Abbv->Add(
BitCodeAbbrevOp
(0)); // FIXME: DEAD value, remove in LLVM 3.0
203
Abbv->Add(
BitCodeAbbrevOp
(BitCodeAbbrevOp::Array))
[
all
...]
/external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp
155
if (AbbrevToUse && !
BitCodeAbbrevOp
::isChar6(Str[i]))
326
Abbv->Add(
BitCodeAbbrevOp
(bitc::TYPE_CODE_POINTER));
327
Abbv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, NumBits));
328
Abbv->Add(
BitCodeAbbrevOp
(0)); // Addrspace = 0
333
Abbv->Add(
BitCodeAbbrevOp
(bitc::TYPE_CODE_FUNCTION));
334
Abbv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 1)); // isvararg
335
Abbv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Array))
[
all
...]
/frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp
154
if (AbbrevToUse && !
BitCodeAbbrevOp
::isChar6(Str[i]))
199
Abbv->Add(
BitCodeAbbrevOp
(bitc::TYPE_CODE_POINTER));
200
Abbv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, NumBits));
201
Abbv->Add(
BitCodeAbbrevOp
(0)); // Addrspace = 0
206
Abbv->Add(
BitCodeAbbrevOp
(bitc::TYPE_CODE_FUNCTION));
207
Abbv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 1)); // isvararg
208
Abbv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Array))
[
all
...]
Completed in 294 milliseconds