| 179 | } |
| 180 | |
| 181 | void NFA::Decref(Thread* t) { |
| 182 | DCHECK(t != NULL); |
| 183 | t->ref--; |
| 184 | if (t->ref > 0) |
| 185 | return; |
| 186 | DCHECK_EQ(t->ref, 0); |
| 187 | t->next = freelist_; |
| 188 | freelist_ = t; |
| 189 | } |
| 190 | |
| 191 | // Follows all empty arrows from id0 and enqueues all the states reached. |
| 192 | // Enqueues only the ByteRange instructions that match byte c. |
no outgoing calls