static void
decode_group(struct gen_spec *spec, struct gen_group *strct,
- const uint32_t *p, int starting_dword,
- bool print_dword_headers)
+ const uint32_t *p, int starting_dword)
{
struct gen_field_iterator iter;
char *token = NULL;
fprintf(outfile, "0x%08"PRIx64": 0x%08x : Dword %d\n",
offset + 4 * idx, p[idx], idx);
struct gen_group *struct_val = gen_spec_find_struct(spec, token);
- decode_group(spec, struct_val, &p[idx], 0, false);
+ decode_group(spec, struct_val, &p[idx], 0);
token = NULL;
}
}
decode_structure(struct gen_spec *spec, struct gen_group *strct,
const uint32_t *p)
{
- decode_group(spec, strct, p, 0, false);
+ decode_group(spec, strct, p, 0);
}
static void
gen_group_get_name(inst), reset_color);
if (option_full_decode) {
- decode_group(spec, inst, p, 1, true);
+ decode_group(spec, inst, p, 1);
for (i = 0; i < ARRAY_LENGTH(custom_handlers); i++) {
if (gen_group_get_opcode(inst) == custom_handlers[i].opcode)