OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BitCodeAbbrevOp
(Results
1 - 12
of
12
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriterDecl.cpp
1895
Abv->Add(
BitCodeAbbrevOp
(serialization::DECL_FIELD));
1897
Abv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::VBR, 6)); // DeclContext
1898
Abv->Add(
BitCodeAbbrevOp
(0)); // LexicalDeclContext
1899
Abv->Add(
BitCodeAbbrevOp
(0)); // isInvalidDecl
1900
Abv->Add(
BitCodeAbbrevOp
(0)); // HasAttrs
1901
Abv->Add(
BitCodeAbbrevOp
(0)); // isImplicit
1902
Abv->Add(
BitCodeAbbrevOp
(0)); // isUsed
1903
Abv->Add(
BitCodeAbbrevOp
(0)); // isReferenced
1904
Abv->Add(
BitCodeAbbrevOp
(0)); // TopLevelDeclInObjCContaine
[
all
...]
ASTWriter.cpp
515
Abv->Add(
BitCodeAbbrevOp
(serialization::TYPE_EXT_QUAL));
516
Abv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::VBR, 6)); // Type
517
Abv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::VBR, 3)); // Quals
522
Abv->Add(
BitCodeAbbrevOp
(serialization::TYPE_FUNCTION_PROTO));
524
Abv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::VBR, 6)); // ReturnType
525
Abv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 1)); // NoRetur
[
all
...]
GlobalModuleIndex.cpp
837
Abbrev->Add(
BitCodeAbbrevOp
(IDENTIFIER_INDEX));
838
Abbrev->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 32));
839
Abbrev->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Blob));
/src/external/apache2/llvm/dist/llvm/lib/Remarks/
BitstreamRemarkSerializer.cpp
55
Abbrev->Add(
BitCodeAbbrevOp
(RECORD_META_CONTAINER_INFO));
56
Abbrev->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 32)); // Version.
57
Abbrev->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 2)); // Type.
67
Abbrev->Add(
BitCodeAbbrevOp
(RECORD_META_REMARK_VERSION));
68
Abbrev->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 32)); // Version.
86
Abbrev->Add(
BitCodeAbbrevOp
(RECORD_META_STRTAB));
87
Abbrev->Add(
BitCodeAbbrevOp
(BitCodeAbbrevOp::Blob)); // Raw table
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Bitstream/Reader/
BitstreamReader.cpp
67
const
BitCodeAbbrevOp
&Op) {
72
case
BitCodeAbbrevOp
::Array:
73
case
BitCodeAbbrevOp
::Blob:
75
case
BitCodeAbbrevOp
::Fixed:
78
case
BitCodeAbbrevOp
::VBR:
81
case
BitCodeAbbrevOp
::Char6:
83
return
BitCodeAbbrevOp
::DecodeChar6(Res.get());
111
const
BitCodeAbbrevOp
&CodeOp = Abbv->getOperandInfo(0);
116
if (CodeOp.getEncoding() ==
BitCodeAbbrevOp
::Array ||
117
CodeOp.getEncoding() ==
BitCodeAbbrevOp
::Blob
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
BitCodes.h
91
///
BitCodeAbbrevOp
- This describes one or more operands in an abbreviation.
96
class
BitCodeAbbrevOp
{
109
explicit
BitCodeAbbrevOp
(uint64_t V) : Val(V), IsLiteral(true) {}
110
explicit
BitCodeAbbrevOp
(Encoding E, uint64_t Data = 0)
163
SmallVector<
BitCodeAbbrevOp
, 32> OperandList;
168
explicit BitCodeAbbrev(std::initializer_list<
BitCodeAbbrevOp
> OperandList)
174
const
BitCodeAbbrevOp
&getOperandInfo(unsigned N) const {
178
void Add(const
BitCodeAbbrevOp
&OpInfo) {
BitstreamWriter.h
339
void EmitAbbreviatedLiteral(const
BitCodeAbbrevOp
&Op, uintty V) {
350
void EmitAbbreviatedField(const
BitCodeAbbrevOp
&Op, uintty V) {
356
case
BitCodeAbbrevOp
::Fixed:
360
case
BitCodeAbbrevOp
::VBR:
364
case
BitCodeAbbrevOp
::Char6:
365
Emit(
BitCodeAbbrevOp
::EncodeChar6((char)V), 6);
390
const
BitCodeAbbrevOp
&Op = Abbv->getOperandInfo(i++);
395
assert(Op.getEncoding() !=
BitCodeAbbrevOp
::Array &&
396
Op.getEncoding() !=
BitCodeAbbrevOp
::Blob &&
404
const
BitCodeAbbrevOp
&Op = Abbv->getOperandInfo(i)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp
602
if (AbbrevToUse && !
BitCodeAbbrevOp
::isChar6(Str[i]))
858
Abbv->Add(
BitCodeAbbrevOp
(bitc::TYPE_CODE_POINTER));
859
Abbv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, NumBits));
860
Abbv->Add(
BitCodeAbbrevOp
(0)); // Addrspace = 0
865
Abbv->Add(
BitCodeAbbrevOp
(bitc::TYPE_CODE_OPAQUE_POINTER));
866
Abbv->Add(
BitCodeAbbrevOp
(0)); // Addrspace = 0
871
Abbv->Add(
BitCodeAbbrevOp
(bitc::TYPE_CODE_FUNCTION));
872
Abbv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 1)); // isvarar
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp
417
Abbrev.Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 10)); // File ID.
418
Abbrev.Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 32)); // Line.
419
Abbrev.Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 32)); // Column.
420
Abbrev.Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Fixed, 32)); // Offset;
443
Abbrev->Add(
BitCodeAbbrevOp
(RECORD_VERSION));
444
Abbrev->Add(
BitCodeAbbrevOp
(BitCodeAbbrevOp::Fixed, 32))
[
all
...]
TestModuleFileExtension.cpp
29
Abv->Add(
BitCodeAbbrevOp
(FIRST_EXTENSION_RECORD_ID));
30
Abv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::VBR, 6)); // # of characters
31
Abv->Add(
BitCodeAbbrevOp
(
BitCodeAbbrevOp
::Blob)); // message
/src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
BitcodeConvenience.h
66
abbrev.Add(llvm::
BitCodeAbbrevOp
(Value));
82
abbrev.Add(llvm::
BitCodeAbbrevOp
(llvm::
BitCodeAbbrevOp
::Fixed, Width));
107
abbrev.Add(llvm::
BitCodeAbbrevOp
(llvm::
BitCodeAbbrevOp
::VBR, Width));
124
abbrev.Add(llvm::
BitCodeAbbrevOp
(llvm::
BitCodeAbbrevOp
::Char6));
128
assert(llvm::
BitCodeAbbrevOp
::isChar6(data) && "invalid Char6 data");
142
abbrev.Add(llvm::
BitCodeAbbrevOp
(llvm::
BitCodeAbbrevOp
::Blob))
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeAnalyzer.cpp
940
const
BitCodeAbbrevOp
&Op = Abbv->getOperandInfo(i);
941
if (!Op.isEncoding() || Op.getEncoding() !=
BitCodeAbbrevOp
::Array)
Completed in 30 milliseconds
Indexes created Wed Jun 17 00:25:26 UTC 2026