OLD | NEW |
| (Empty) |
1 /* native_client/src/trusted/validator/x86/decoder/gen/ncop_expr_node_kind.h | |
2 * THIS FILE IS AUTO_GENERATED DO NOT EDIT. | |
3 * | |
4 * This file was auto-generated by enum_gen.py | |
5 * from file ncop_expr_node_kind.enum | |
6 */ | |
7 | |
8 #ifndef NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_X86_DECODER_GEN_NCOP_EXPR_NODE_KIND_
H__ | |
9 #define NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_X86_DECODER_GEN_NCOP_EXPR_NODE_KIND_
H__ | |
10 | |
11 #include "native_client/src/include/portability.h" | |
12 | |
13 EXTERN_C_BEGIN | |
14 typedef enum NaClExpKind { | |
15 UndefinedExp = 0, | |
16 ExprRegister = 1, | |
17 OperandReference = 2, | |
18 ExprConstant = 3, | |
19 ExprSegmentAddress = 4, | |
20 ExprMemOffset = 5, | |
21 ExprNaClIllegal = 6, | |
22 NaClExpKindEnumSize = 7, /* special size marker */ | |
23 } NaClExpKind; | |
24 | |
25 /* Returns the name of an NaClExpKind constant. */ | |
26 extern const char* NaClExpKindName(NaClExpKind name); | |
27 | |
28 EXTERN_C_END | |
29 | |
30 #endif /* NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_X86_DECODER_GEN_NCOP_EXPR_NODE_KIN
D_H__ */ | |
OLD | NEW |