| OLD | NEW |
| (Empty) |
| 1 /* native_client/src/trusted/validator/x86/decoder/gen/ncopcode_prefix.h | |
| 2 * THIS FILE IS AUTO_GENERATED DO NOT EDIT. | |
| 3 * | |
| 4 * This file was auto-generated by enum_gen.py | |
| 5 * from file ncopcode_prefix.enum | |
| 6 */ | |
| 7 | |
| 8 #ifndef NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_X86_DECODER_GEN_NCOPCODE_PREFIX_H__ | |
| 9 #define NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_X86_DECODER_GEN_NCOPCODE_PREFIX_H__ | |
| 10 | |
| 11 #include "native_client/src/include/portability.h" | |
| 12 | |
| 13 EXTERN_C_BEGIN | |
| 14 typedef enum NaClInstPrefix { | |
| 15 NoPrefix = 0, | |
| 16 Prefix0F = 1, | |
| 17 PrefixF20F = 2, | |
| 18 PrefixF30F = 3, | |
| 19 Prefix660F = 4, | |
| 20 Prefix0F0F = 5, | |
| 21 Prefix0F38 = 6, | |
| 22 Prefix660F38 = 7, | |
| 23 PrefixF20F38 = 8, | |
| 24 Prefix0F3A = 9, | |
| 25 Prefix660F3A = 10, | |
| 26 PrefixD8 = 11, | |
| 27 PrefixD9 = 12, | |
| 28 PrefixDA = 13, | |
| 29 PrefixDB = 14, | |
| 30 PrefixDC = 15, | |
| 31 PrefixDD = 16, | |
| 32 PrefixDE = 17, | |
| 33 PrefixDF = 18, | |
| 34 NaClInstPrefixEnumSize = 19, /* special size marker */ | |
| 35 } NaClInstPrefix; | |
| 36 | |
| 37 /* Returns the name of an NaClInstPrefix constant. */ | |
| 38 extern const char* NaClInstPrefixName(NaClInstPrefix name); | |
| 39 | |
| 40 EXTERN_C_END | |
| 41 | |
| 42 #endif /* NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_X86_DECODER_GEN_NCOPCODE_PREFIX_H_
_ */ | |
| OLD | NEW |