Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: src/trusted/validator/x86/decoder/gen/ncopcode_prefix.h

Issue 625923004: Delete old x86 validator. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: rebase master Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_ _ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698