diff options
Diffstat (limited to 'src/intel/common/gen_decoder.h')
-rw-r--r-- | src/intel/common/gen_decoder.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/intel/common/gen_decoder.h b/src/intel/common/gen_decoder.h index 12d4551a127..ba9a19b55fe 100644 --- a/src/intel/common/gen_decoder.h +++ b/src/intel/common/gen_decoder.h @@ -68,6 +68,19 @@ struct gen_field_iterator { bool print_colors; }; +struct gen_spec { + uint32_t gen; + + uint32_t ncommands; + struct gen_group *commands[256]; + uint32_t nstructs; + struct gen_group *structs[256]; + uint32_t nregisters; + struct gen_group *registers[256]; + uint32_t nenums; + struct gen_enum *enums[256]; +}; + struct gen_group { struct gen_spec *spec; char *name; |