Searched refs:MatchAction (Results 1 – 2 of 2) sorted by relevance
50 class MatchAction; variable461 using ActionList = std::list<std::unique_ptr<MatchAction>>;2236 class MatchAction {2249 MatchAction(ActionKind K) : Kind(K) {} in MatchAction() function2253 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 …]
1042 return A->getKind() != MatchAction::AK_DebugComment; in emit()