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.h51 class MatchAction; variable
462 using ActionList = std::list<std::unique_ptr<MatchAction>>;
2297 class MatchAction {
2310 MatchAction(ActionKind K) : Kind(K) {} in MatchAction() function
2314 virtual ~MatchAction() {} in ~MatchAction()
2338 class DebugCommentAction : public MatchAction {
2343 DebugCommentAction(StringRef S) : MatchAction(AK_DebugComment), S(S.str()) {} in DebugCommentAction()
2345 static bool classof(const MatchAction *A) { in classof()
2356 class BuildMIAction : public MatchAction {
2373 : MatchAction(AK_BuildMI), InsnID(InsnID), I(I) {} in BuildMIAction()
[all …]
H A DGlobalISelMatchTable.cpp1035 return A->getKind() != MatchAction::AK_DebugComment; in emit()