Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/utils/TableGen/
H A DDFAEmitter.h46 using action_type = uint64_t; variable
51 void addTransition(state_type From, state_type To, action_type A);
58 virtual void printActionValue(action_type A, raw_ostream &OS);
79 std::set<action_type> Actions;
83 std::map<std::pair<state_type, action_type>, std::vector<state_type>>
94 std::map<std::pair<dfa_state_type, action_type>,
H A DDFAEmitter.cpp48 void DfaEmitter::addTransition(state_type From, state_type To, action_type A) { in addTransition()
59 for (action_type A : Actions) { in visitDfaState()
154 action_type A = KV.first.second; in emit()
165 void DfaEmitter::printActionValue(action_type A, raw_ostream &OS) { OS << A; } in printActionValue()
252 void printActionValue(action_type A, raw_ostream &OS) override;
376 void CustomDfaEmitter::printActionValue(action_type A, raw_ostream &OS) { in printActionValue()