blob: a046ee2f7a24aa6e35db65ff085d57067be7fd55 [file] [log] [blame]
Julie Hockettd0f9a872018-06-04 17:22:20 +00001//===-- BitcodeReader.h - ClangDoc Bitcode Reader --------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Julie Hockettd0f9a872018-06-04 17:22:20 +00006//
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 "clang/AST/AST.h"
Julie Hockettd0f9a872018-06-04 17:22:20 +000021#include "llvm/ADT/SmallVector.h"
Francis Visoiu Mistrihe0308272019-07-03 22:40:07 +000022#include "llvm/Bitstream/BitstreamReader.h"
Julie Hockett46fc9592018-08-15 16:02:28 +000023#include "llvm/Support/Error.h"
Krzysztof Parzyszek49e75eb2022-12-07 10:04:25 -080024#include <optional>
Julie Hockettd0f9a872018-06-04 17:22:20 +000025
26namespace clang {
27namespace doc {
28
29// Class to read bitstream into an InfoSet collection
30class ClangDocBitcodeReader {
31public:
32 ClangDocBitcodeReader(llvm::BitstreamCursor &Stream) : Stream(Stream) {}
33
34 // Main entry point, calls readBlock to read each block in the given stream.
Julie Hockett8899c292018-08-02 20:10:17 +000035 llvm::Expected<std::vector<std::unique_ptr<Info>>> readBitcode();
Julie Hockettd0f9a872018-06-04 17:22:20 +000036
37private:
38 enum class Cursor { BadBlock = 1, Record, BlockEnd, BlockBegin };
39
40 // Top level parsing
Julie Hockett46fc9592018-08-15 16:02:28 +000041 llvm::Error validateStream();
42 llvm::Error readVersion();
43 llvm::Error readBlockInfoBlock();
Julie Hockettd0f9a872018-06-04 17:22:20 +000044
45 // Read a block of records into a single Info struct, calls readRecord on each
46 // record found.
Julie Hockett46fc9592018-08-15 16:02:28 +000047 template <typename T> llvm::Error readBlock(unsigned ID, T I);
Julie Hockettd0f9a872018-06-04 17:22:20 +000048
49 // Step through a block of records to find the next data field.
Julie Hockett46fc9592018-08-15 16:02:28 +000050 template <typename T> llvm::Error readSubBlock(unsigned ID, T I);
Julie Hockettd0f9a872018-06-04 17:22:20 +000051
52 // Read record data into the given Info data field, calling the appropriate
53 // parseRecord functions to parse and store the data.
Julie Hockett46fc9592018-08-15 16:02:28 +000054 template <typename T> llvm::Error readRecord(unsigned ID, T I);
Julie Hockettd0f9a872018-06-04 17:22:20 +000055
56 // Allocate the relevant type of info and add read data to the object.
Julie Hockett46fc9592018-08-15 16:02:28 +000057 template <typename T>
58 llvm::Expected<std::unique_ptr<Info>> createInfo(unsigned ID);
Julie Hockettd0f9a872018-06-04 17:22:20 +000059
60 // Helper function to step through blocks to find and dispatch the next record
61 // or block to be read.
62 Cursor skipUntilRecordOrBlock(unsigned &BlockOrRecordID);
63
Kazuaki Ishizakib7ecf1c2020-01-04 10:28:41 -050064 // Helper function to set up the appropriate type of Info.
Julie Hockett46fc9592018-08-15 16:02:28 +000065 llvm::Expected<std::unique_ptr<Info>> readBlockToInfo(unsigned ID);
Julie Hockettd0f9a872018-06-04 17:22:20 +000066
67 llvm::BitstreamCursor &Stream;
Krzysztof Parzyszek49e75eb2022-12-07 10:04:25 -080068 std::optional<llvm::BitstreamBlockInfo> BlockInfo;
Julie Hockettd0f9a872018-06-04 17:22:20 +000069 FieldId CurrentReferenceField;
70};
71
72} // namespace doc
73} // namespace clang
74
75#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_BITCODEREADER_H