Searched refs:MatchAction (Results 1 – 2 of 2) sorted by relevance
51 class MatchAction; variable462 using ActionList = std::list<std::unique_ptr<MatchAction>>;2297 class MatchAction {2310 MatchAction(ActionKind K) : Kind(K) {} in MatchAction() function2314 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 …]
1035 return A->getKind() != MatchAction::AK_DebugComment; in emit()