clang-tools  9.0.0
BitcodeWriter.h
Go to the documentation of this file.
1 //===-- BitcodeWriter.h - ClangDoc Bitcode Writer --------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements a writer for serializing the clang-doc internal
10 // representation to LLVM bitcode. The writer takes in a stream and emits the
11 // generated bitcode to that stream.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_BITCODEWRITER_H
16 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_BITCODEWRITER_H
17 
18 #include "Representation.h"
19 #include "clang/AST/AST.h"
20 #include "llvm/ADT/DenseMap.h"
21 #include "llvm/ADT/SmallVector.h"
22 #include "llvm/ADT/StringRef.h"
23 #include "llvm/Bitstream/BitstreamWriter.h"
24 #include <initializer_list>
25 #include <vector>
26 
27 namespace clang {
28 namespace doc {
29 
30 // Current version number of clang-doc bitcode.
31 // Should be bumped when removing or changing BlockIds, RecordIds, or
32 // BitCodeConstants, though they can be added without breaking it.
33 static const unsigned VersionNumber = 2;
34 
36  static constexpr unsigned RecordSize = 32U;
37  static constexpr unsigned SignatureBitSize = 8U;
38  static constexpr unsigned SubblockIDSize = 4U;
39  static constexpr unsigned BoolSize = 1U;
40  static constexpr unsigned IntSize = 16U;
41  static constexpr unsigned StringLengthSize = 16U;
42  static constexpr unsigned FilenameLengthSize = 16U;
43  static constexpr unsigned LineNumberSize = 16U;
44  static constexpr unsigned ReferenceTypeSize = 8U;
45  static constexpr unsigned USRLengthSize = 6U;
46  static constexpr unsigned USRBitLengthSize = 8U;
47  static constexpr unsigned char Signature[4] = {'D', 'O', 'C', 'S'};
48  static constexpr int USRHashSize = 20;
49 };
50 
51 // New Ids need to be added to both the enum here and the relevant IdNameMap in
52 // the implementation file.
53 enum BlockId {
54  BI_VERSION_BLOCK_ID = llvm::bitc::FIRST_APPLICATION_BLOCKID,
66 };
67 
68 // New Ids need to be added to the enum here, and to the relevant IdNameMap and
69 // initialization list in the implementation file.
70 enum RecordId {
71  VERSION = 1,
115 };
116 
117 static constexpr unsigned BlockIdCount = BI_LAST - BI_FIRST;
118 static constexpr unsigned RecordIdCount = RI_LAST - RI_FIRST;
119 
120 // Identifiers for differentiating between subblocks
121 enum class FieldId {
122  F_default,
123  F_namespace,
124  F_parent,
125  F_vparent,
126  F_type,
129 };
130 
132 public:
133  ClangDocBitcodeWriter(llvm::BitstreamWriter &Stream) : Stream(Stream) {
134  emitHeader();
135  emitBlockInfoBlock();
136  emitVersionBlock();
137  }
138 
139  // Write a specific info to a bitcode stream.
140  bool dispatchInfoForWrite(Info *I);
141 
142  // Block emission of different info types.
143  void emitBlock(const NamespaceInfo &I);
144  void emitBlock(const RecordInfo &I);
145  void emitBlock(const FunctionInfo &I);
146  void emitBlock(const EnumInfo &I);
147  void emitBlock(const TypeInfo &B);
148  void emitBlock(const FieldTypeInfo &B);
149  void emitBlock(const MemberTypeInfo &B);
150  void emitBlock(const CommentInfo &B);
151  void emitBlock(const Reference &B, FieldId F);
152 
153 private:
154  class AbbreviationMap {
155  llvm::DenseMap<unsigned, unsigned> Abbrevs;
156 
157  public:
158  AbbreviationMap() : Abbrevs(RecordIdCount) {}
159 
160  void add(RecordId RID, unsigned AbbrevID);
161  unsigned get(RecordId RID) const;
162  };
163 
164  class StreamSubBlockGuard {
165  llvm::BitstreamWriter &Stream;
166 
167  public:
168  StreamSubBlockGuard(llvm::BitstreamWriter &Stream_, BlockId ID)
169  : Stream(Stream_) {
170  // NOTE: SubBlockIDSize could theoretically be calculated on the fly,
171  // based on the initialization list of records in each block.
172  Stream.EnterSubblock(ID, BitCodeConstants::SubblockIDSize);
173  }
174 
175  StreamSubBlockGuard(const StreamSubBlockGuard &) = delete;
176  StreamSubBlockGuard &operator=(const StreamSubBlockGuard &) = delete;
177 
178  ~StreamSubBlockGuard() { Stream.ExitBlock(); }
179  };
180 
181  // Emission of validation and overview blocks.
182  void emitHeader();
183  void emitVersionBlock();
184  void emitRecordID(RecordId ID);
185  void emitBlockID(BlockId ID);
186  void emitBlockInfoBlock();
187  void emitBlockInfo(BlockId BID, const std::vector<RecordId> &RIDs);
188 
189  // Emission of individual record types.
190  void emitRecord(StringRef Str, RecordId ID);
191  void emitRecord(const SymbolID &Str, RecordId ID);
192  void emitRecord(const Location &Loc, RecordId ID);
193  void emitRecord(const Reference &Ref, RecordId ID);
194  void emitRecord(bool Value, RecordId ID);
195  void emitRecord(int Value, RecordId ID);
196  void emitRecord(unsigned Value, RecordId ID);
197  bool prepRecordData(RecordId ID, bool ShouldEmit = true);
198 
199  // Emission of appropriate abbreviation type.
200  void emitAbbrev(RecordId ID, BlockId Block);
201 
202  // Static size is the maximum length of the block/record names we're pushing
203  // to this + 1. Longest is currently `MemberTypeBlock` at 15 chars.
204  SmallVector<uint32_t, BitCodeConstants::RecordSize> Record;
205  llvm::BitstreamWriter &Stream;
206  AbbreviationMap Abbrevs;
207 };
208 
209 } // namespace doc
210 } // namespace clang
211 
212 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_BITCODEWRITER_H
SourceLocation Loc
&#39;#&#39; location in the include directive
static constexpr unsigned SignatureBitSize
Definition: BitcodeWriter.h:37
static const unsigned VersionNumber
Definition: BitcodeWriter.h:33
static constexpr unsigned SubblockIDSize
Definition: BitcodeWriter.h:38
static constexpr unsigned BlockIdCount
static constexpr unsigned char Signature[4]
Definition: BitcodeWriter.h:47
ClangDocBitcodeWriter(llvm::BitstreamWriter &Stream)
llvm::SmallVector< uint64_t, 1024 > Record
static constexpr unsigned BoolSize
Definition: BitcodeWriter.h:39
static constexpr unsigned LineNumberSize
Definition: BitcodeWriter.h:43
static constexpr unsigned RecordSize
Definition: BitcodeWriter.h:36
static constexpr int USRHashSize
Definition: BitcodeWriter.h:48
static constexpr unsigned ReferenceTypeSize
Definition: BitcodeWriter.h:44
A base struct for Infos.
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
static constexpr unsigned IntSize
Definition: BitcodeWriter.h:40
static constexpr unsigned USRBitLengthSize
Definition: BitcodeWriter.h:46
static constexpr unsigned USRLengthSize
Definition: BitcodeWriter.h:45
static constexpr unsigned StringLengthSize
Definition: BitcodeWriter.h:41
std::array< uint8_t, 20 > SymbolID
static constexpr unsigned FilenameLengthSize
Definition: BitcodeWriter.h:42
static constexpr unsigned RecordIdCount