Searched refs:brw_reg (Results 1 - 25 of 54) sorted by relevance

123

/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_sf.h65 struct brw_reg pv;
66 struct brw_reg det;
67 struct brw_reg dx0;
68 struct brw_reg dx2;
69 struct brw_reg dy0;
70 struct brw_reg dy2;
74 struct brw_reg z[3];
75 struct brw_reg inv_w[3];
79 struct brw_reg vert[3];
83 struct brw_reg inv_de
[all...]
H A Dbrw_clip.h78 struct brw_reg R0;
79 struct brw_reg vertex[MAX_VERTS];
81 struct brw_reg t;
82 struct brw_reg t0, t1;
83 struct brw_reg dp0, dp1;
85 struct brw_reg dpPrev;
86 struct brw_reg dp;
87 struct brw_reg loopcount;
88 struct brw_reg nr_verts;
89 struct brw_reg planemas
[all...]
H A Dbrw_wm.h117 struct brw_reg hw_reg; /* emitted to this reg, may not always be there */
125 struct brw_reg hw_reg; /* nr filled in in pass2, everything else, pass0 */
264 struct brw_reg reg;
269 struct brw_reg stack;
270 struct brw_reg emit_mask_reg;
280 struct brw_reg reg;
321 struct brw_reg,
322 struct brw_reg),
323 const struct brw_reg *dst,
325 const struct brw_reg *arg
[all...]
H A Dbrw_eu.h73 struct brw_reg struct
175 * Construct a brw_reg.
186 static INLINE struct brw_reg brw_reg( GLuint file, function
196 struct brw_reg reg;
230 static INLINE struct brw_reg brw_vec16_reg( GLuint file,
234 return brw_reg(file,
246 static INLINE struct brw_reg brw_vec8_reg( GLuint file,
250 return brw_reg(file,
262 static INLINE struct brw_reg brw_vec4_re
[all...]
H A Dbrw_gs.h81 struct brw_reg R0;
88 struct brw_reg SVBI;
90 struct brw_reg vertex[MAX_GS_VERTS];
91 struct brw_reg header;
92 struct brw_reg temp;
98 struct brw_reg destination_indices;
H A Dbrw_vs.h101 struct brw_reg r0;
102 struct brw_reg r1;
103 struct brw_reg regs[PROGRAM_ADDRESS+1][128];
104 struct brw_reg tmp;
108 struct brw_reg reg;
111 struct brw_reg userplane[MAX_CLIP_PLANES];
116 struct brw_reg reg;
H A Dbrw_eu_util.c39 struct brw_reg dst,
40 struct brw_reg src)
54 struct brw_reg dst,
55 struct brw_reg src,
73 struct brw_reg dst,
74 struct brw_reg src,
107 struct brw_reg dst,
H A Dbrw_vec4_emit.cpp65 struct brw_reg reg = brw_vec8_grf(grf, 0);
78 struct brw_reg reg = brw_vec8_grf(grf, 0);
156 struct brw_reg
159 struct brw_reg brw_reg; local
163 brw_reg = brw_vec8_grf(dst.reg + dst.reg_offset, 0);
164 brw_reg = retype(brw_reg, dst.type);
165 brw_reg.dw1.bits.writemask = dst.writemask;
169 brw_reg
193 struct brw_reg brw_reg; local
[all...]
H A Dbrw_wm_emit.c38 can_do_pln(struct intel_context *intel, const struct brw_reg *deltas)
116 const struct brw_reg *dst,
120 struct brw_reg r1 = brw_vec1_grf(1, 0);
121 struct brw_reg r1_uw = retype(r1, BRW_REGISTER_TYPE_UW);
122 struct brw_reg dst0_uw, dst1_uw;
163 const struct brw_reg *dst,
165 const struct brw_reg *arg0)
168 struct brw_reg r1 = brw_vec1_grf(1, 0);
207 const struct brw_reg *dst,
209 const struct brw_reg *arg
513 emit_alu1(struct brw_compile *p, struct brw_instruction *(*func)(struct brw_compile *, struct brw_reg, struct brw_reg), const struct brw_reg *dst, GLuint mask, const struct brw_reg *arg0) argument
537 emit_alu2(struct brw_compile *p, struct brw_instruction *(*func)(struct brw_compile *, struct brw_reg, struct brw_reg, struct brw_reg), const struct brw_reg *dst, GLuint mask, const struct brw_reg *arg0, const struct brw_reg *arg1) argument
[all...]
H A Dbrw_vec4.h52 HW_REG, /* a struct brw_reg */
69 struct brw_reg fixed_hw_reg;
137 dst_reg(struct brw_reg reg);
167 struct brw_reg get_dst(void);
168 struct brw_reg get_src(int i);
414 void emit_psiz_and_flags(struct brw_reg reg);
415 void emit_clip_distances(struct brw_reg reg, int offset);
444 struct brw_reg dst,
445 struct brw_reg *src);
448 struct brw_reg ds
[all...]
H A Dbrw_fs_emit.cpp44 struct brw_reg implied_header;
122 fs_visitor::generate_pixel_xy(struct brw_reg dst, bool is_x)
124 struct brw_reg g1_uw = retype(brw_vec1_grf(1, 0), BRW_REGISTER_TYPE_UW);
125 struct brw_reg src;
126 struct brw_reg deltas;
151 struct brw_reg dst, struct brw_reg *src)
153 struct brw_reg delta_x = src[0];
154 struct brw_reg delta_y = src[1];
155 struct brw_reg inter
673 struct brw_reg brw_reg; local
[all...]
H A Dbrw_fs.h63 FIXED_HW_REG, /* a struct brw_reg */
87 fs_reg(struct brw_reg fixed_hw_reg);
112 struct brw_reg fixed_hw_reg;
268 void generate_pixel_xy(struct brw_reg dst, bool is_x);
269 void generate_linterp(fs_inst *inst, struct brw_reg dst,
270 struct brw_reg *src);
271 void generate_tex(fs_inst *inst, struct brw_reg dst, struct brw_reg src);
273 struct brw_reg dst,
274 struct brw_reg sr
[all...]
H A Dbrw_vs_emit.c80 static struct brw_reg get_tmp( struct brw_vs_compile *c )
82 struct brw_reg tmp = brw_vec8_grf(c->last_tmp, 0);
90 static void release_tmp( struct brw_vs_compile *c, struct brw_reg tmp )
354 c->regs[PROGRAM_ADDRESS][i] = brw_reg(BRW_GENERAL_REGISTER_FILE,
430 struct brw_reg dst,
431 struct brw_reg arg0,
433 struct brw_reg,
434 struct brw_reg ))
438 struct brw_reg tmp = brw_writemask(get_tmp(c), dst.dw1.bits.writemask);
453 struct brw_reg ds
429 unalias1( struct brw_vs_compile *c, struct brw_reg dst, struct brw_reg arg0, void (*func)( struct brw_vs_compile *, struct brw_reg, struct brw_reg )) argument
452 unalias2( struct brw_vs_compile *c, struct brw_reg dst, struct brw_reg arg0, struct brw_reg arg1, void (*func)( struct brw_vs_compile *, struct brw_reg, struct brw_reg, struct brw_reg )) argument
478 unalias3( struct brw_vs_compile *c, struct brw_reg dst, struct brw_reg arg0, struct brw_reg arg1, struct brw_reg arg2, void (*func)( struct brw_vs_compile *, struct brw_reg, struct brw_reg, struct brw_reg, struct brw_reg )) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_sf.h65 struct brw_reg pv;
66 struct brw_reg det;
67 struct brw_reg dx0;
68 struct brw_reg dx2;
69 struct brw_reg dy0;
70 struct brw_reg dy2;
74 struct brw_reg z[3];
75 struct brw_reg inv_w[3];
79 struct brw_reg vert[3];
83 struct brw_reg inv_de
[all...]
H A Dbrw_clip.h78 struct brw_reg R0;
79 struct brw_reg vertex[MAX_VERTS];
81 struct brw_reg t;
82 struct brw_reg t0, t1;
83 struct brw_reg dp0, dp1;
85 struct brw_reg dpPrev;
86 struct brw_reg dp;
87 struct brw_reg loopcount;
88 struct brw_reg nr_verts;
89 struct brw_reg planemas
[all...]
H A Dbrw_wm.h117 struct brw_reg hw_reg; /* emitted to this reg, may not always be there */
125 struct brw_reg hw_reg; /* nr filled in in pass2, everything else, pass0 */
264 struct brw_reg reg;
269 struct brw_reg stack;
270 struct brw_reg emit_mask_reg;
280 struct brw_reg reg;
321 struct brw_reg,
322 struct brw_reg),
323 const struct brw_reg *dst,
325 const struct brw_reg *arg
[all...]
H A Dbrw_eu.h73 struct brw_reg struct
175 * Construct a brw_reg.
186 static INLINE struct brw_reg brw_reg( GLuint file, function
196 struct brw_reg reg;
230 static INLINE struct brw_reg brw_vec16_reg( GLuint file,
234 return brw_reg(file,
246 static INLINE struct brw_reg brw_vec8_reg( GLuint file,
250 return brw_reg(file,
262 static INLINE struct brw_reg brw_vec4_re
[all...]
H A Dbrw_gs.h81 struct brw_reg R0;
88 struct brw_reg SVBI;
90 struct brw_reg vertex[MAX_GS_VERTS];
91 struct brw_reg header;
92 struct brw_reg temp;
98 struct brw_reg destination_indices;
H A Dbrw_vs.h101 struct brw_reg r0;
102 struct brw_reg r1;
103 struct brw_reg regs[PROGRAM_ADDRESS+1][128];
104 struct brw_reg tmp;
108 struct brw_reg reg;
111 struct brw_reg userplane[MAX_CLIP_PLANES];
116 struct brw_reg reg;
H A Dbrw_eu_util.c39 struct brw_reg dst,
40 struct brw_reg src)
54 struct brw_reg dst,
55 struct brw_reg src,
73 struct brw_reg dst,
74 struct brw_reg src,
107 struct brw_reg dst,
H A Dbrw_vec4_emit.cpp65 struct brw_reg reg = brw_vec8_grf(grf, 0);
78 struct brw_reg reg = brw_vec8_grf(grf, 0);
156 struct brw_reg
159 struct brw_reg brw_reg; local
163 brw_reg = brw_vec8_grf(dst.reg + dst.reg_offset, 0);
164 brw_reg = retype(brw_reg, dst.type);
165 brw_reg.dw1.bits.writemask = dst.writemask;
169 brw_reg
193 struct brw_reg brw_reg; local
[all...]
H A Dbrw_wm_emit.c38 can_do_pln(struct intel_context *intel, const struct brw_reg *deltas)
116 const struct brw_reg *dst,
120 struct brw_reg r1 = brw_vec1_grf(1, 0);
121 struct brw_reg r1_uw = retype(r1, BRW_REGISTER_TYPE_UW);
122 struct brw_reg dst0_uw, dst1_uw;
163 const struct brw_reg *dst,
165 const struct brw_reg *arg0)
168 struct brw_reg r1 = brw_vec1_grf(1, 0);
207 const struct brw_reg *dst,
209 const struct brw_reg *arg
513 emit_alu1(struct brw_compile *p, struct brw_instruction *(*func)(struct brw_compile *, struct brw_reg, struct brw_reg), const struct brw_reg *dst, GLuint mask, const struct brw_reg *arg0) argument
537 emit_alu2(struct brw_compile *p, struct brw_instruction *(*func)(struct brw_compile *, struct brw_reg, struct brw_reg, struct brw_reg), const struct brw_reg *dst, GLuint mask, const struct brw_reg *arg0, const struct brw_reg *arg1) argument
[all...]
H A Dbrw_vec4.h52 HW_REG, /* a struct brw_reg */
69 struct brw_reg fixed_hw_reg;
137 dst_reg(struct brw_reg reg);
167 struct brw_reg get_dst(void);
168 struct brw_reg get_src(int i);
414 void emit_psiz_and_flags(struct brw_reg reg);
415 void emit_clip_distances(struct brw_reg reg, int offset);
444 struct brw_reg dst,
445 struct brw_reg *src);
448 struct brw_reg ds
[all...]
H A Dbrw_fs_emit.cpp44 struct brw_reg implied_header;
122 fs_visitor::generate_pixel_xy(struct brw_reg dst, bool is_x)
124 struct brw_reg g1_uw = retype(brw_vec1_grf(1, 0), BRW_REGISTER_TYPE_UW);
125 struct brw_reg src;
126 struct brw_reg deltas;
151 struct brw_reg dst, struct brw_reg *src)
153 struct brw_reg delta_x = src[0];
154 struct brw_reg delta_y = src[1];
155 struct brw_reg inter
673 struct brw_reg brw_reg; local
[all...]
H A Dbrw_fs.h63 FIXED_HW_REG, /* a struct brw_reg */
87 fs_reg(struct brw_reg fixed_hw_reg);
112 struct brw_reg fixed_hw_reg;
268 void generate_pixel_xy(struct brw_reg dst, bool is_x);
269 void generate_linterp(fs_inst *inst, struct brw_reg dst,
270 struct brw_reg *src);
271 void generate_tex(fs_inst *inst, struct brw_reg dst, struct brw_reg src);
273 struct brw_reg dst,
274 struct brw_reg sr
[all...]

Completed in 267 milliseconds

123