Searched refs:DfaStates (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDFAEmitter.h62 /// this class. This is an ID into the DfaStates UniqueVector.
88 /// The set of deterministic states. DfaStates.getId(DfaState) returns an ID,
91 UniqueVector<DfaState> DfaStates; member in class:llvm::DfaEmitter
H A DDFAEmitter.cpp58 auto FromId = DfaStates.idFor(DS);
82 unsigned ToId = DfaStates.insert(NewStates);
89 DfaStates.insert(Initial);
93 while (DfaStateId <= DfaStates.size()) {
94 DfaState S = DfaStates[DfaStateId];
105 OS << "// Generated DFA has " << DfaStates.size() << " states with "

Completed in 62 milliseconds