assembler: Rename dp_read_gen6 to gen6_dp_sampler_const_cache
authorDamien Lespiau <damien.lespiau@intel.com>
Tue, 15 Jan 2013 16:40:06 +0000 (16:40 +0000)
committerDamien Lespiau <damien.lespiau@intel.com>
Mon, 4 Mar 2013 15:54:36 +0000 (15:54 +0000)
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>
assembler/brw_structs.h
assembler/gram.y

index e4fdb51..e2be147 100644 (file)
@@ -1469,17 +1469,22 @@ struct brw_instruction
            GLuint end_of_thread:1;
        } dp_read_gen5;
 
-       struct {
-           GLuint binding_table_index:8;
-           GLuint msg_control:5;  
-           GLuint msg_type:3;  
-           GLuint pad0:3;
-           GLuint header_present:1;
-           GLuint response_length:5;
-           GLuint msg_length:4;
-           GLuint pad1:2;
-           GLuint end_of_thread:1;
-       } dp_read_gen6;
+      /**
+       * Message for the Sandybridge Sampler Cache or Constant Cache Data Port.
+       *
+       * See the Sandybridge PRM, Volume 4 Part 1, Section 3.9.2.1.1.
+       **/
+      struct {
+        GLuint binding_table_index:8;
+        GLuint msg_control:5;
+        GLuint msg_type:3;
+        GLuint pad0:3;
+        GLuint header_present:1;
+        GLuint response_length:5;
+        GLuint msg_length:4;
+        GLuint pad1:2;
+        GLuint end_of_thread:1;
+      } gen6_dp_sampler_const_cache;
 
        struct {
            GLuint binding_table_index:8;
index 9380f44..70caeb4 100644 (file)
@@ -1260,9 +1260,9 @@ msgtarget:        NULL_TOKEN
                       $$.bits2.send_gen5.sfid = 
                           BRW_MESSAGE_TARGET_DP_SC;
                       $$.bits3.generic_gen5.header_present = 1;
-                      $$.bits3.dp_read_gen6.binding_table_index = $3;
-                      $$.bits3.dp_read_gen6.msg_control = $7;
-                      $$.bits3.dp_read_gen6.msg_type = $9;
+                      $$.bits3.gen6_dp_sampler_const_cache.binding_table_index = $3;
+                      $$.bits3.gen6_dp_sampler_const_cache.msg_control = $7;
+                      $$.bits3.gen6_dp_sampler_const_cache.msg_type = $9;
                  } else if (IS_GENx(5)) {
                       $$.bits2.send_gen5.sfid = 
                           BRW_MESSAGE_TARGET_DATAPORT_READ;