forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPredicateExpander.h
85 lines (73 loc) · 3.49 KB
/
PredicateExpander.h
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
//===--------------------- PredicateExpander.h ----------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
/// \file
/// Functionalities used by the Tablegen backends to expand machine predicates.
///
/// See file llvm/Target/TargetInstrPredicate.td for a full list and description
/// of all the supported MCInstPredicate classes.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_UTILS_TABLEGEN_PREDICATEEXPANDER_H
#define LLVM_UTILS_TABLEGEN_PREDICATEEXPANDER_H
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/FormattedStream.h"
#include "llvm/TableGen/Record.h"
namespace llvm {
class formatted_raw_ostream;
class PredicateExpander {
bool EmitCallsByRef;
bool NegatePredicate;
bool ExpandForMC;
unsigned IndentLevel;
PredicateExpander(const PredicateExpander &) = delete;
PredicateExpander &operator=(const PredicateExpander &) = delete;
public:
PredicateExpander()
: EmitCallsByRef(true), NegatePredicate(false), ExpandForMC(false),
IndentLevel(1U) {}
bool isByRef() const { return EmitCallsByRef; }
bool shouldNegate() const { return NegatePredicate; }
bool shouldExpandForMC() const { return ExpandForMC; }
unsigned getIndentLevel() const { return IndentLevel; }
void setByRef(bool Value) { EmitCallsByRef = Value; }
void flipNegatePredicate() { NegatePredicate = !NegatePredicate; }
void setNegatePredicate(bool Value) { NegatePredicate = Value; }
void setExpandForMC(bool Value) { ExpandForMC = Value; }
void increaseIndentLevel() { ++IndentLevel; }
void decreaseIndentLevel() { --IndentLevel; }
void setIndentLevel(unsigned Level) { IndentLevel = Level; }
using RecVec = std::vector<Record *>;
void expandTrue(formatted_raw_ostream &OS);
void expandFalse(formatted_raw_ostream &OS);
void expandCheckImmOperand(formatted_raw_ostream &OS, int OpIndex,
int ImmVal);
void expandCheckImmOperand(formatted_raw_ostream &OS, int OpIndex,
StringRef ImmVal);
void expandCheckRegOperand(formatted_raw_ostream &OS, int OpIndex,
const Record *Reg);
void expandCheckSameRegOperand(formatted_raw_ostream &OS, int First,
int Second);
void expandCheckNumOperands(formatted_raw_ostream &OS, int NumOps);
void expandCheckOpcode(formatted_raw_ostream &OS, const Record *Inst);
void expandCheckPseudo(formatted_raw_ostream &OS, const RecVec &Opcodes);
void expandCheckOpcode(formatted_raw_ostream &OS, const RecVec &Opcodes);
void expandPredicateSequence(formatted_raw_ostream &OS,
const RecVec &Sequence, bool IsCheckAll);
void expandTIIFunctionCall(formatted_raw_ostream &OS, StringRef TargetName,
StringRef MethodName);
void expandCheckIsRegOperand(formatted_raw_ostream &OS, int OpIndex);
void expandCheckIsImmOperand(formatted_raw_ostream &OS, int OpIndex);
void expandCheckFunctionPredicate(formatted_raw_ostream &OS,
StringRef MCInstFn,
StringRef MachineInstrFn);
void expandCheckNonPortable(formatted_raw_ostream &OS, StringRef CodeBlock);
void expandPredicate(formatted_raw_ostream &OS, const Record *Rec);
};
} // namespace llvm
#endif