Zydis  v3.0.0
Status.h
Go to the documentation of this file.
1 /***************************************************************************************************
2 
3  Zyan Disassembler Library (Zydis)
4 
5  Original Author : Florian Bernd
6 
7  * Permission is hereby granted, free of charge, to any person obtaining a copy
8  * of this software and associated documentation files (the "Software"), to deal
9  * in the Software without restriction, including without limitation the rights
10  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11  * copies of the Software, and to permit persons to whom the Software is
12  * furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in all
15  * copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24 
25 ***************************************************************************************************/
26 
32 #ifndef ZYDIS_STATUS_H
33 #define ZYDIS_STATUS_H
34 
35 #include <Zycore/Status.h>
36 
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40 
41 /* ============================================================================================== */
42 /* Status codes */
43 /* ============================================================================================== */
44 
45 /* ---------------------------------------------------------------------------------------------- */
46 /* Module IDs */
47 /* ---------------------------------------------------------------------------------------------- */
48 
52 #define ZYAN_MODULE_ZYDIS 0x002
53 
54 /* ---------------------------------------------------------------------------------------------- */
55 /* Status codes */
56 /* ---------------------------------------------------------------------------------------------- */
57 
58 /* ---------------------------------------------------------------------------------------------- */
59 /* Decoder */
60 /* ---------------------------------------------------------------------------------------------- */
61 
66 #define ZYDIS_STATUS_NO_MORE_DATA \
67  ZYAN_MAKE_STATUS(1, ZYAN_MODULE_ZYDIS, 0x00)
68 
73 #define ZYDIS_STATUS_DECODING_ERROR \
74  ZYAN_MAKE_STATUS(1, ZYAN_MODULE_ZYDIS, 0x01)
75 
79 #define ZYDIS_STATUS_INSTRUCTION_TOO_LONG \
80  ZYAN_MAKE_STATUS(1, ZYAN_MODULE_ZYDIS, 0x02)
81 
85 #define ZYDIS_STATUS_BAD_REGISTER \
86  ZYAN_MAKE_STATUS(1, ZYAN_MODULE_ZYDIS, 0x03)
87 
92 #define ZYDIS_STATUS_ILLEGAL_LOCK \
93  ZYAN_MAKE_STATUS(1, ZYAN_MODULE_ZYDIS, 0x04)
94 
99 #define ZYDIS_STATUS_ILLEGAL_LEGACY_PFX \
100  ZYAN_MAKE_STATUS(1, ZYAN_MODULE_ZYDIS, 0x05)
101 
105 #define ZYDIS_STATUS_ILLEGAL_REX \
106  ZYAN_MAKE_STATUS(1, ZYAN_MODULE_ZYDIS, 0x06)
107 
111 #define ZYDIS_STATUS_INVALID_MAP \
112  ZYAN_MAKE_STATUS(1, ZYAN_MODULE_ZYDIS, 0x07)
113 
117 #define ZYDIS_STATUS_MALFORMED_EVEX \
118  ZYAN_MAKE_STATUS(1, ZYAN_MODULE_ZYDIS, 0x08)
119 
123 #define ZYDIS_STATUS_MALFORMED_MVEX \
124  ZYAN_MAKE_STATUS(1, ZYAN_MODULE_ZYDIS, 0x09)
125 
129 #define ZYDIS_STATUS_INVALID_MASK \
130  ZYAN_MAKE_STATUS(1, ZYAN_MODULE_ZYDIS, 0x0A)
131 
132 /* ---------------------------------------------------------------------------------------------- */
133 /* Formatter */
134 /* ---------------------------------------------------------------------------------------------- */
135 
148 #define ZYDIS_STATUS_SKIP_TOKEN \
149  ZYAN_MAKE_STATUS(0, ZYAN_MODULE_ZYDIS, 0x0B)
150 
151 /* ---------------------------------------------------------------------------------------------- */
152 
153 /* ============================================================================================== */
154 
155 #ifdef __cplusplus
156 }
157 #endif
158 
159 #endif /* ZYDIS_STATUS_H */