| OLD | NEW |
| (Empty) |
| 1 /* native_client/src/trusted/validator/x86/decoder/gen/ncop_expr_node_flag.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_flag.enum | |
| 6 */ | |
| 7 | |
| 8 #ifndef NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_X86_DECODER_GEN_NCOP_EXPR_NODE_FLAG_
H__ | |
| 9 #define NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_X86_DECODER_GEN_NCOP_EXPR_NODE_FLAG_
H__ | |
| 10 | |
| 11 #include "native_client/src/include/portability.h" | |
| 12 | |
| 13 EXTERN_C_BEGIN | |
| 14 typedef enum NaClExpFlag { | |
| 15 ExprSet = 0, | |
| 16 ExprUsed = 1, | |
| 17 ExprAddress = 2, | |
| 18 ExprSize8 = 3, | |
| 19 ExprSize16 = 4, | |
| 20 ExprSize32 = 5, | |
| 21 ExprSize48 = 6, | |
| 22 ExprSize64 = 7, | |
| 23 ExprUnsignedHex = 8, | |
| 24 ExprSignedHex = 9, | |
| 25 ExprUnsignedInt = 10, | |
| 26 ExprSignedInt = 11, | |
| 27 ExprImplicit = 12, | |
| 28 ExprJumpTarget = 13, | |
| 29 ExprDSrCase = 14, | |
| 30 ExprESrCase = 15, | |
| 31 NaClExpFlagEnumSize = 16, /* special size marker */ | |
| 32 } NaClExpFlag; | |
| 33 | |
| 34 /* Returns the name of an NaClExpFlag constant. */ | |
| 35 extern const char* NaClExpFlagName(NaClExpFlag name); | |
| 36 | |
| 37 EXTERN_C_END | |
| 38 | |
| 39 #endif /* NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_X86_DECODER_GEN_NCOP_EXPR_NODE_FLA
G_H__ */ | |
| OLD | NEW |