clang-tools 22.0.0git
BitcodeReader.h
Go to the documentation of this file.
1//===-- BitcodeReader.h - ClangDoc Bitcode Reader --------------*- 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 reader for parsing the clang-doc internal
10// representation from LLVM bitcode. The reader takes in a stream of bits and
11// generates the set of infos that it represents.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_BITCODEREADER_H
16#define LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_BITCODEREADER_H
17
18#include "BitcodeWriter.h"
19#include "Representation.h"
20#include "llvm/Bitstream/BitstreamReader.h"
21#include "llvm/Support/Error.h"
22#include <optional>
23
24namespace clang {
25namespace doc {
26
27// Class to read bitstream into an InfoSet collection
29public:
30 ClangDocBitcodeReader(llvm::BitstreamCursor &Stream, DiagnosticsEngine &Diags)
31 : Stream(Stream), Diags(Diags) {}
32
33 // Main entry point, calls readBlock to read each block in the given stream.
34 llvm::Expected<std::vector<std::unique_ptr<Info>>> readBitcode();
35
36private:
37 enum class Cursor { BadBlock = 1, Record, BlockEnd, BlockBegin };
38
39 // Top level parsing
40 llvm::Error validateStream();
41 llvm::Error readVersion();
42 llvm::Error readBlockInfoBlock();
43
44 // Read a block of records into a single Info struct, calls readRecord on each
45 // record found.
46 template <typename T> llvm::Error readBlock(unsigned ID, T I);
47
48 // Step through a block of records to find the next data field.
49 template <typename T> llvm::Error readSubBlock(unsigned ID, T I);
50
51 // Read record data into the given Info data field, calling the appropriate
52 // parseRecord functions to parse and store the data.
53 template <typename T> llvm::Error readRecord(unsigned ID, T I);
54
55 // Allocate the relevant type of info and add read data to the object.
56 template <typename T>
57 llvm::Expected<std::unique_ptr<Info>> createInfo(unsigned ID);
58
59 // Helper function to step through blocks to find and dispatch the next record
60 // or block to be read.
61 llvm::Expected<Cursor> skipUntilRecordOrBlock(unsigned &BlockOrRecordID);
62
63 // Helper function to set up the appropriate type of Info.
64 llvm::Expected<std::unique_ptr<Info>> readBlockToInfo(unsigned ID);
65
66 template <typename InfoType, typename T, typename CallbackFunction>
67 llvm::Error handleSubBlock(unsigned ID, T Parent, CallbackFunction Function);
68
69 template <typename InfoType, typename T, typename CallbackFunction>
70 llvm::Error handleTypeSubBlock(unsigned ID, T Parent,
71 CallbackFunction Function);
72
73 llvm::BitstreamCursor &Stream;
74 std::optional<llvm::BitstreamBlockInfo> BlockInfo;
75 FieldId CurrentReferenceField;
76 DiagnosticsEngine &Diags;
77};
78
79} // namespace doc
80} // namespace clang
81
82#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_BITCODEREADER_H
ClangDocBitcodeReader(llvm::BitstreamCursor &Stream, DiagnosticsEngine &Diags)
llvm::Expected< std::vector< std::unique_ptr< Info > > > readBitcode()
llvm::SmallVector< uint64_t, 1024 > Record
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//