summaryrefslogtreecommitdiff
path: root/assembler/brw_structs.h
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2013-01-16 01:19:29 +0000
committerDamien Lespiau <damien.lespiau@intel.com>2013-03-04 15:54:36 +0000
commitcb425d6d203c9e36d20aaf4c975aecb3ca10b598 (patch)
tree766bad59346c75a22a4f3f7bad8424fda63fce45 /assembler/brw_structs.h
parent0fde3ddccc4f2f1dcf9f81c2038ce18ef1a62a29 (diff)
assembler: Rename branch to branch_gen6
The purpose of this commit is to synchronize opcode definitions across the gen4asm assembler and mesa. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Diffstat (limited to 'assembler/brw_structs.h')
-rw-r--r--assembler/brw_structs.h17
1 files changed, 12 insertions, 5 deletions
diff --git a/assembler/brw_structs.h b/assembler/brw_structs.h
index 511c3266..7b0b0da5 100644
--- a/assembler/brw_structs.h
+++ b/assembler/brw_structs.h
@@ -1125,6 +1125,18 @@ struct brw_instruction
GLuint dest_address_mode:1;
} ia16; /* indirect align16 */
+ struct {
+ GLuint dest_reg_file:2;
+ GLuint dest_reg_type:3;
+ GLuint src0_reg_file:2;
+ GLuint src0_reg_type:3;
+ GLuint src1_reg_file:2;
+ GLuint src1_reg_type:3;
+ GLuint pad:1;
+
+ GLint jump_count:16;
+ } branch_gen6;
+
struct
{
GLuint dest_reg_file:1; /* used in Gen6, deleted in Gen7 */
@@ -1144,11 +1156,6 @@ struct brw_instruction
GLuint dest_reg_nr:8;
} da3src;
- struct
- {
- GLuint pad:16;
- GLint JIP:16;
- } branch; /* conditional branch JIP for Gen6 only */
} bits1;