amd: remove always-true BRAHMA_BUILD define
[mesa.git] / src / intel / common / gen_decoder.h
1 /*
2 * Copyright © 2016 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #ifndef GEN_DECODER_H
25 #define GEN_DECODER_H
26
27 #include <stdint.h>
28 #include <stdbool.h>
29
30 #include "common/gen_device_info.h"
31 #include "util/hash_table.h"
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36
37 struct gen_spec;
38 struct gen_group;
39 struct gen_field;
40 union gen_field_value;
41
42 static inline uint32_t gen_make_gen(uint32_t major, uint32_t minor)
43 {
44 return (major << 8) | minor;
45 }
46
47 struct gen_group *gen_spec_find_struct(struct gen_spec *spec, const char *name);
48 struct gen_spec *gen_spec_load(const struct gen_device_info *devinfo);
49 struct gen_spec *gen_spec_load_from_path(const struct gen_device_info *devinfo,
50 const char *path);
51 void gen_spec_destroy(struct gen_spec *spec);
52 uint32_t gen_spec_get_gen(struct gen_spec *spec);
53 struct gen_group *gen_spec_find_instruction(struct gen_spec *spec, const uint32_t *p);
54 struct gen_group *gen_spec_find_register(struct gen_spec *spec, uint32_t offset);
55 struct gen_group *gen_spec_find_register_by_name(struct gen_spec *spec, const char *name);
56 struct gen_enum *gen_spec_find_enum(struct gen_spec *spec, const char *name);
57
58 int gen_group_get_length(struct gen_group *group, const uint32_t *p);
59 const char *gen_group_get_name(struct gen_group *group);
60 uint32_t gen_group_get_opcode(struct gen_group *group);
61 struct gen_field *gen_group_find_field(struct gen_group *group, const char *name);
62 struct gen_enum *gen_spec_find_enum(struct gen_spec *spec, const char *name);
63
64 bool gen_field_is_header(struct gen_field *field);
65 void gen_field_decode(struct gen_field *field,
66 const uint32_t *p, const uint32_t *end,
67 union gen_field_value *value);
68
69 struct gen_field_iterator {
70 struct gen_group *group;
71 char name[128];
72 char value[128];
73 struct gen_group *struct_desc;
74 const uint32_t *p;
75 const uint32_t *p_end;
76 int dword; /**< current field starts at &p[dword] */
77 int start; /**< current field starts at this bit number */
78 int end; /**< current field ends at this bit number */
79
80 int group_iter;
81
82 struct gen_field *field;
83 bool print_colors;
84 };
85
86 struct gen_spec {
87 uint32_t gen;
88
89 struct hash_table *commands;
90 struct hash_table *structs;
91 struct hash_table *registers_by_name;
92 struct hash_table *registers_by_offset;
93 struct hash_table *enums;
94
95 struct hash_table *access_cache;
96 };
97
98 struct gen_group {
99 struct gen_spec *spec;
100 char *name;
101
102 struct gen_field *fields; /* linked list of fields */
103
104 uint32_t dw_length;
105 uint32_t group_offset, group_count;
106 uint32_t group_size;
107 bool variable;
108
109 struct gen_group *parent;
110 struct gen_group *next;
111
112 uint32_t opcode_mask;
113 uint32_t opcode;
114
115 /* Register specific */
116 uint32_t register_offset;
117 };
118
119 struct gen_value {
120 char *name;
121 uint64_t value;
122 };
123
124 struct gen_enum {
125 char *name;
126 int nvalues;
127 struct gen_value **values;
128 };
129
130 struct gen_type {
131 enum {
132 GEN_TYPE_UNKNOWN,
133 GEN_TYPE_INT,
134 GEN_TYPE_UINT,
135 GEN_TYPE_BOOL,
136 GEN_TYPE_FLOAT,
137 GEN_TYPE_ADDRESS,
138 GEN_TYPE_OFFSET,
139 GEN_TYPE_STRUCT,
140 GEN_TYPE_UFIXED,
141 GEN_TYPE_SFIXED,
142 GEN_TYPE_MBO,
143 GEN_TYPE_ENUM
144 } kind;
145
146 /* Struct definition for GEN_TYPE_STRUCT */
147 union {
148 struct gen_group *gen_struct;
149 struct gen_enum *gen_enum;
150 struct {
151 /* Integer and fractional sizes for GEN_TYPE_UFIXED and GEN_TYPE_SFIXED */
152 int i, f;
153 };
154 };
155 };
156
157 union gen_field_value {
158 bool b32;
159 float f32;
160 uint64_t u64;
161 int64_t i64;
162 };
163
164 struct gen_field {
165 struct gen_group *parent;
166 struct gen_field *next;
167
168 char *name;
169 int start, end;
170 struct gen_type type;
171 bool has_default;
172 uint32_t default_value;
173
174 struct gen_enum inline_enum;
175 };
176
177 void gen_field_iterator_init(struct gen_field_iterator *iter,
178 struct gen_group *group,
179 const uint32_t *p,
180 bool print_colors);
181
182 bool gen_field_iterator_next(struct gen_field_iterator *iter);
183
184 void gen_print_group(FILE *out,
185 struct gen_group *group,
186 uint64_t offset, const uint32_t *p,
187 bool color);
188
189 #ifdef __cplusplus
190 }
191 #endif
192
193
194 #endif /* GEN_DECODER_H */