Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Release 1.0
[palacios.git] / misc / decoder_test / XED2 / include / xed-operand-enum.h
1 /*BEGIN_LEGAL 
2 Intel Open Source License 
3
4 Copyright (c) 2002-2007 Intel Corporation 
5 All rights reserved. 
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are
8 met:
9
10 Redistributions of source code must retain the above copyright notice,
11 this list of conditions and the following disclaimer.  Redistributions
12 in binary form must reproduce the above copyright notice, this list of
13 conditions and the following disclaimer in the documentation and/or
14 other materials provided with the distribution.  Neither the name of
15 the Intel Corporation nor the names of its contributors may be used to
16 endorse or promote products derived from this software without
17 specific prior written permission.
18  
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INTEL OR
23 ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 END_LEGAL */
31 /// @file xed-operand-enum.h
32 /// @author Mark Charney <mark.charney@intel.com>
33
34 // This file was automatically generated.
35 // Do not edit this file.
36
37 #if !defined(_XED_OPERAND_ENUM_H_)
38 # define _XED_OPERAND_ENUM_H_
39 #include "xed-common-hdrs.h"
40 typedef enum {
41   XED_OPERAND_INVALID,
42   XED_OPERAND_AGEN,
43   XED_OPERAND_AMODE,
44   XED_OPERAND_ASZ,
45   XED_OPERAND_BASE0,
46   XED_OPERAND_BASE1,
47   XED_OPERAND_BRDISP_WIDTH,
48   XED_OPERAND_BRDISP0,
49   XED_OPERAND_BRDISP1,
50   XED_OPERAND_DEFAULT_SEG,
51   XED_OPERAND_DF64,
52   XED_OPERAND_DISP_WIDTH,
53   XED_OPERAND_DISP0,
54   XED_OPERAND_DISP1,
55   XED_OPERAND_DISP2,
56   XED_OPERAND_DISP3,
57   XED_OPERAND_EASZ,
58   XED_OPERAND_ENCODER_PREFERRED,
59   XED_OPERAND_EOSZ,
60   XED_OPERAND_ERROR,
61   XED_OPERAND_HINT_TAKEN,
62   XED_OPERAND_HINT_NOT_TAKEN,
63   XED_OPERAND_ICLASS,
64   XED_OPERAND_IMM_WIDTH,
65   XED_OPERAND_IMM0,
66   XED_OPERAND_IMM0SIGNED,
67   XED_OPERAND_IMM1,
68   XED_OPERAND_INDEX,
69   XED_OPERAND_LOCK,
70   XED_OPERAND_LOCKABLE,
71   XED_OPERAND_MEM_WIDTH,
72   XED_OPERAND_MEM0,
73   XED_OPERAND_MEM1,
74   XED_OPERAND_MOD,
75   XED_OPERAND_MODE,
76   XED_OPERAND_MODRM,
77   XED_OPERAND_NOREX,
78   XED_OPERAND_OSZ,
79   XED_OPERAND_OUTREG,
80   XED_OPERAND_PTR,
81   XED_OPERAND_REFINING,
82   XED_OPERAND_REG,
83   XED_OPERAND_REG0,
84   XED_OPERAND_REG1,
85   XED_OPERAND_REG2,
86   XED_OPERAND_REG3,
87   XED_OPERAND_REG4,
88   XED_OPERAND_REG5,
89   XED_OPERAND_REG6,
90   XED_OPERAND_REG7,
91   XED_OPERAND_REG8,
92   XED_OPERAND_REG9,
93   XED_OPERAND_REG10,
94   XED_OPERAND_REG11,
95   XED_OPERAND_REG12,
96   XED_OPERAND_REG13,
97   XED_OPERAND_REG14,
98   XED_OPERAND_REG15,
99   XED_OPERAND_RELBR,
100   XED_OPERAND_REP,
101   XED_OPERAND_REP_ABLE,
102   XED_OPERAND_REX,
103   XED_OPERAND_REXB,
104   XED_OPERAND_REXR,
105   XED_OPERAND_REXW,
106   XED_OPERAND_REXX,
107   XED_OPERAND_RM,
108   XED_OPERAND_SCALE,
109   XED_OPERAND_SEG_OVD,
110   XED_OPERAND_SEG0,
111   XED_OPERAND_SEG1,
112   XED_OPERAND_SIB,
113   XED_OPERAND_SIBBASE,
114   XED_OPERAND_SIBINDEX,
115   XED_OPERAND_SIBSCALE,
116   XED_OPERAND_SMODE,
117   XED_OPERAND_UIMM00,
118   XED_OPERAND_UIMM1,
119   XED_OPERAND_UIMM01,
120   XED_OPERAND_UIMM02,
121   XED_OPERAND_UIMM03,
122   XED_OPERAND_USING_DEFAULT_SEGMENT0,
123   XED_OPERAND_USING_DEFAULT_SEGMENT1,
124   XED_OPERAND_LAST
125 } xed_operand_enum_t;
126
127 XED_DLL_EXPORT xed_operand_enum_t
128 str2xed_operand_enum_t(const char* s);
129 XED_DLL_EXPORT const char*
130 xed_operand_enum_t2str(const xed_operand_enum_t p);
131
132 #endif