1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_UTILS_TABLEGEN_DECODERTABLEEMITTER_H
#define LLVM_UTILS_TABLEGEN_DECODERTABLEEMITTER_H
#include "DecoderTree.h"
#include "llvm/Support/FormattedStream.h"
namespace llvm {
struct DecoderTableInfo {
bool HasCheckPredicate = false;
bool HasSoftFail = false;
};
class DecoderTableEmitter {
DecoderTableInfo &TableInfo;
formatted_raw_ostream OS;
/// The number of positions occupied by the index in the output. Used to
/// right-align indices and left-align the text that follows them.
unsigned IndexWidth;
/// The current position in the output stream. After the table is emitted,
/// this is its size.
unsigned CurrentIndex;
/// The index of the first byte of the table row. Used as a label in the
/// comment following the row.
unsigned LineStartIndex;
public:
DecoderTableEmitter(DecoderTableInfo &TableInfo, raw_ostream &OS)
: TableInfo(TableInfo), OS(OS) {}
void emitTable(StringRef TableName, unsigned BitWidth,
const DecoderTreeNode *Root);
private:
unsigned computeNodeSize(const DecoderTreeNode *Node) const;
unsigned computeTableSize(const DecoderTreeNode *Root,
unsigned BitWidth) const;
void emitStartLine();
void emitOpcode(StringRef Name);
void emitByte(uint8_t Val);
void emitUInt8(unsigned Val);
void emitULEB128(uint64_t Val);
raw_ostream &emitComment(indent Indent);
void emitCheckAnyNode(const CheckAnyNode *N, indent Indent);
void emitCheckAllNode(const CheckAllNode *N, indent Indent);
void emitSwitchFieldNode(const SwitchFieldNode *N, indent Indent);
void emitCheckFieldNode(const CheckFieldNode *N, indent Indent);
void emitCheckPredicateNode(const CheckPredicateNode *N, indent Indent);
void emitSoftFailNode(const SoftFailNode *N, indent Indent);
void emitDecodeNode(const DecodeNode *N, indent Indent);
void emitNode(const DecoderTreeNode *N, indent Indent);
};
} // namespace llvm
#endif // LLVM_UTILS_TABLEGEN_DECODERTABLEEMITTER_H
|