intel: gen-decoder: print all dword a field belongs to
[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 #include <stdio.h>
30
31 #include "dev/gen_device_info.h"
32 #include "util/hash_table.h"
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 struct gen_spec;
39 struct gen_group;
40 struct gen_field;
41 union gen_field_value;
42
43 static inline uint32_t gen_make_gen(uint32_t major, uint32_t minor)
44 {
45 return (major << 8) | minor;
46 }
47
48 struct gen_group *gen_spec_find_struct(struct gen_spec *spec, const char *name);
49 struct gen_spec *gen_spec_load(const struct gen_device_info *devinfo);
50 struct gen_spec *gen_spec_load_from_path(const struct gen_device_info *devinfo,
51 const char *path);
52 void gen_spec_destroy(struct gen_spec *spec);
53 uint32_t gen_spec_get_gen(struct gen_spec *spec);
54 struct gen_group *gen_spec_find_instruction(struct gen_spec *spec, const uint32_t *p);
55 struct gen_group *gen_spec_find_register(struct gen_spec *spec, uint32_t offset);
56 struct gen_group *gen_spec_find_register_by_name(struct gen_spec *spec, const char *name);
57 struct gen_enum *gen_spec_find_enum(struct gen_spec *spec, const char *name);
58
59 int gen_group_get_length(struct gen_group *group, const uint32_t *p);
60 const char *gen_group_get_name(struct gen_group *group);
61 uint32_t gen_group_get_opcode(struct gen_group *group);
62 struct gen_field *gen_group_find_field(struct gen_group *group, const char *name);
63 struct gen_enum *gen_spec_find_enum(struct gen_spec *spec, const char *name);
64
65 bool gen_field_is_header(struct gen_field *field);
66
67 struct gen_field_iterator {
68 struct gen_group *group;
69 char name[128];
70 char value[128];
71 uint64_t raw_value;
72 struct gen_group *struct_desc;
73 const uint32_t *p;
74 int p_bit; /**< bit offset into p */
75 const uint32_t *p_end;
76 int start_bit; /**< current field starts at this bit offset into p */
77 int end_bit; /**< current field ends at this bit offset into p */
78
79 int group_iter;
80
81 struct gen_field *field;
82 bool print_colors;
83 };
84
85 struct gen_spec {
86 uint32_t gen;
87
88 struct hash_table *commands;
89 struct hash_table *structs;
90 struct hash_table *registers_by_name;
91 struct hash_table *registers_by_offset;
92 struct hash_table *enums;
93
94 struct hash_table *access_cache;
95 };
96
97 struct gen_group {
98 struct gen_spec *spec;
99 char *name;
100
101 struct gen_field *fields; /* linked list of fields */
102
103 uint32_t dw_length;
104 uint32_t group_offset, group_count;
105 uint32_t group_size;
106 bool variable;
107
108 struct gen_group *parent;
109 struct gen_group *next;
110
111 uint32_t opcode_mask;
112 uint32_t opcode;
113
114 /* Register specific */
115 uint32_t register_offset;
116 };
117
118 struct gen_value {
119 char *name;
120 uint64_t value;
121 };
122
123 struct gen_enum {
124 char *name;
125 int nvalues;
126 struct gen_value **values;
127 };
128
129 struct gen_type {
130 enum {
131 GEN_TYPE_UNKNOWN,
132 GEN_TYPE_INT,
133 GEN_TYPE_UINT,
134 GEN_TYPE_BOOL,
135 GEN_TYPE_FLOAT,
136 GEN_TYPE_ADDRESS,
137 GEN_TYPE_OFFSET,
138 GEN_TYPE_STRUCT,
139 GEN_TYPE_UFIXED,
140 GEN_TYPE_SFIXED,
141 GEN_TYPE_MBO,
142 GEN_TYPE_ENUM
143 } kind;
144
145 /* Struct definition for GEN_TYPE_STRUCT */
146 union {
147 struct gen_group *gen_struct;
148 struct gen_enum *gen_enum;
149 struct {
150 /* Integer and fractional sizes for GEN_TYPE_UFIXED and GEN_TYPE_SFIXED */
151 int i, f;
152 };
153 };
154 };
155
156 union gen_field_value {
157 bool b32;
158 float f32;
159 uint64_t u64;
160 int64_t i64;
161 };
162
163 struct gen_field {
164 struct gen_group *parent;
165 struct gen_field *next;
166
167 char *name;
168 int start, end;
169 struct gen_type type;
170 bool has_default;
171 uint32_t default_value;
172
173 struct gen_enum inline_enum;
174 };
175
176 void gen_field_iterator_init(struct gen_field_iterator *iter,
177 struct gen_group *group,
178 const uint32_t *p, int p_bit,
179 bool print_colors);
180
181 bool gen_field_iterator_next(struct gen_field_iterator *iter);
182
183 void gen_print_group(FILE *out,
184 struct gen_group *group,
185 uint64_t offset, const uint32_t *p, int p_bit,
186 bool color);
187
188 enum gen_batch_decode_flags {
189 /** Print in color! */
190 GEN_BATCH_DECODE_IN_COLOR = (1 << 0),
191 /** Print everything, not just headers */
192 GEN_BATCH_DECODE_FULL = (1 << 1),
193 /** Print offsets along with the batch */
194 GEN_BATCH_DECODE_OFFSETS = (1 << 2),
195 /** Guess when a value is a float and print it as such */
196 GEN_BATCH_DECODE_FLOATS = (1 << 3),
197 };
198
199 struct gen_batch_decode_bo {
200 uint64_t addr;
201 uint32_t size;
202 const void *map;
203 };
204
205 struct gen_disasm *disasm;
206
207 struct gen_batch_decode_ctx {
208 struct gen_batch_decode_bo (*get_bo)(void *user_data,
209 uint64_t base_address);
210 void *user_data;
211
212 FILE *fp;
213 struct gen_spec *spec;
214 enum gen_batch_decode_flags flags;
215
216 struct gen_disasm *disasm;
217
218 struct gen_batch_decode_bo surface_base;
219 struct gen_batch_decode_bo dynamic_base;
220 struct gen_batch_decode_bo instruction_base;
221 };
222
223 void gen_batch_decode_ctx_init(struct gen_batch_decode_ctx *ctx,
224 const struct gen_device_info *devinfo,
225 FILE *fp, enum gen_batch_decode_flags flags,
226 const char *xml_path,
227 struct gen_batch_decode_bo (*get_bo)(void *,
228 uint64_t),
229 void *user_data);
230 void gen_batch_decode_ctx_finish(struct gen_batch_decode_ctx *ctx);
231
232
233 void gen_print_batch(struct gen_batch_decode_ctx *ctx,
234 const uint32_t *batch, uint32_t batch_size,
235 uint64_t batch_addr);
236
237 #ifdef __cplusplus
238 }
239 #endif
240
241
242 #endif /* GEN_DECODER_H */