OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 /* Common definitions for the generator of all instructions and the definitions | 7 /* Common definitions for the generator of all instructions and the definitions |
8 * of the DFA generated by the parse_dfa.py. */ | 8 * of the DFA generated by the parse_dfa.py. */ |
9 | 9 |
10 #ifndef _TEST_DFA_H | 10 #ifndef _TEST_DFA_H |
(...skipping 16 matching lines...) Expand all Loading... |
27 void AddRange(int state_idx, | 27 void AddRange(int state_idx, |
28 uint8_t byte_begin, | 28 uint8_t byte_begin, |
29 uint8_t byte_end, | 29 uint8_t byte_end, |
30 uint16_t target); | 30 uint16_t target); |
31 | 31 |
32 void InitTransitions(); | 32 void InitTransitions(); |
33 | 33 |
34 extern uint16_t start_state; | 34 extern uint16_t start_state; |
35 | 35 |
36 #endif /* _TEST_DFA_H */ | 36 #endif /* _TEST_DFA_H */ |
OLD | NEW |