i965: Move common fields into backend_instruction.
authorMatt Turner <mattst88@gmail.com>
Mon, 30 Jun 2014 00:32:14 +0000 (17:32 -0700)
committerMatt Turner <mattst88@gmail.com>
Sun, 6 Jul 2014 05:42:30 +0000 (22:42 -0700)
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
src/mesa/drivers/dri/i965/brw_fs.h
src/mesa/drivers/dri/i965/brw_shader.h
src/mesa/drivers/dri/i965/brw_vec4.h

index 4781079ab8d3f452407cb4bb8c1f378ad73bdcf6..da4d373508a0edc242a34ad43aa5e8f4e2df8b70 100644 (file)
@@ -183,31 +183,19 @@ public:
    fs_reg dst;
    fs_reg *src;
 
-   uint32_t texture_offset; /**< Texture offset bitfield */
-   uint32_t offset; /* spill/unspill offset */
-
    uint8_t sources; /**< Number of fs_reg sources. */
-   uint8_t conditional_mod; /**< BRW_CONDITIONAL_* */
 
    /* Chooses which flag subregister (f0.0 or f0.1) is used for conditional
     * mod and predication.
     */
    uint8_t flag_subreg;
 
-   uint8_t mlen; /**< SEND message length */
    uint8_t regs_written; /**< Number of vgrfs written by a SEND message, or 1 */
-   int8_t base_mrf; /**< First MRF in the SEND message, if mlen is nonzero. */
-   uint8_t sampler;
-   uint8_t target; /**< MRT target. */
-   bool saturate:1;
    bool eot:1;
    bool header_present:1;
    bool shadow_compare:1;
    bool force_uncompressed:1;
    bool force_sechalf:1;
-   bool force_writemask_all:1;
-   bool no_dd_clear:1;
-   bool no_dd_check:1;
 };
 
 /**
index a5eed91ef2260f07aadf6981e7894ee154d8b5a2..7205a8584bd3821d8e7b7b161515fac2be8789e0 100644 (file)
@@ -111,6 +111,19 @@ public:
    const void *ir;
    const char *annotation;
    /** @} */
+
+   uint32_t texture_offset; /**< Texture offset bitfield */
+   uint32_t offset; /**< spill/unspill offset */
+   uint8_t sampler;
+   uint8_t mlen; /**< SEND message length */
+   int8_t base_mrf; /**< First MRF in the SEND message, if mlen is nonzero. */
+   uint8_t target; /**< MRT target. */
+   uint8_t conditional_mod; /**< BRW_CONDITIONAL_* */
+
+   bool force_writemask_all:1;
+   bool no_dd_clear:1;
+   bool no_dd_check:1;
+   bool saturate:1;
 };
 
 enum instruction_scheduler_mode {
index 4b6e63826840ba8efb334eac0404dff1a85bdfda..21df552401373aedb8882380470dc0c2d9422baa 100644 (file)
@@ -215,23 +215,10 @@ public:
    dst_reg dst;
    src_reg src[3];
 
-   bool saturate;
-   bool force_writemask_all;
-   bool no_dd_clear, no_dd_check;
-
-   int conditional_mod; /**< BRW_CONDITIONAL_* */
-
-   int sampler;
-   uint32_t texture_offset; /**< Texture Offset bitfield */
-   int target; /**< MRT target. */
    bool shadow_compare;
 
    enum brw_urb_write_flags urb_write_flags;
    bool header_present;
-   int mlen; /**< SEND message length */
-   int base_mrf; /**< First MRF in the SEND message, if mlen is nonzero. */
-
-   uint32_t offset; /* spill/unspill offset */
 
    bool is_send_from_grf();
    bool can_reswizzle_dst(int dst_writemask, int swizzle, int swizzle_mask);