Home
last modified time | relevance | path

Searched refs:MatchAction (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DGlobalISelMatchTable.h50 class MatchAction; variable
461 using ActionList = std::list<std::unique_ptr<MatchAction>>;
2236 class MatchAction {
2249 MatchAction(ActionKind K) : Kind(K) {} in MatchAction() function
2253 virtual ~MatchAction() {} in ~MatchAction()
2277 class DebugCommentAction : public MatchAction {
2283 : MatchAction(AK_DebugComment), S(std::string(S)) {} in DebugCommentAction()
2285 static bool classof(const MatchAction *A) { in classof()
2296 class BuildMIAction : public MatchAction {
2313 : MatchAction(AK_BuildMI), InsnID(InsnID), I(I), Matched(nullptr) {} in BuildMIAction()
[all …]
H A DGlobalISelMatchTable.cpp1042 return A->getKind() != MatchAction::AK_DebugComment; in emit()