Home
last modified time | relevance | path

Searched refs:brw_wm_compile (Results 1 – 13 of 13) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_wm.h187 struct brw_wm_compile { struct
294 void brw_wm_pass_fp( struct brw_wm_compile *c ); argument
295 void brw_wm_pass0( struct brw_wm_compile *c );
296 void brw_wm_pass1( struct brw_wm_compile *c );
297 void brw_wm_pass2( struct brw_wm_compile *c );
298 void brw_wm_emit( struct brw_wm_compile *c );
300 void brw_wm_print_value( struct brw_wm_compile *c,
303 void brw_wm_print_ref( struct brw_wm_compile *c,
306 void brw_wm_print_insn( struct brw_wm_compile *c,
309 void brw_wm_print_program( struct brw_wm_compile *c,
[all …]
Dbrw_wm_pass0.c42 static struct brw_wm_ref *get_ref( struct brw_wm_compile *c ) in get_ref()
49 static struct brw_wm_value *get_value( struct brw_wm_compile *c) in get_value()
57 static struct brw_wm_instruction *get_instruction( struct brw_wm_compile *c ) in get_instruction()
68 static void pass0_init_undef( struct brw_wm_compile *c) in pass0_init_undef()
78 static void pass0_set_fpreg_value( struct brw_wm_compile *c, in pass0_set_fpreg_value()
93 static void pass0_set_fpreg_ref( struct brw_wm_compile *c, in pass0_set_fpreg_ref()
102 static const struct brw_wm_ref *get_param_ref( struct brw_wm_compile *c, in get_param_ref()
132 static const struct brw_wm_ref *get_const_ref( struct brw_wm_compile *c, in get_const_ref()
166 static const struct brw_wm_ref *pass0_get_reg( struct brw_wm_compile *c, in pass0_get_reg()
244 static void pass0_set_dst( struct brw_wm_compile *c, in pass0_set_dst()
[all …]
Dbrw_wm_pass2.c44 static void spill_value(struct brw_wm_compile *c,
47 static void prealloc_reg(struct brw_wm_compile *c, in prealloc_reg()
70 static void init_registers( struct brw_wm_compile *c ) in init_registers()
130 static void update_register_usage(struct brw_wm_compile *c, in update_register_usage()
163 static void spill_value(struct brw_wm_compile *c, in spill_value()
192 static GLuint search_contiguous_regs(struct brw_wm_compile *c, in search_contiguous_regs()
229 static void alloc_contiguous_dest(struct brw_wm_compile *c, in alloc_contiguous_dest()
262 static void load_args(struct brw_wm_compile *c, in load_args()
306 void brw_wm_pass2( struct brw_wm_compile *c ) in brw_wm_pass2()
Dbrw_wm_fp.c160 static struct prog_dst_register get_temp( struct brw_wm_compile *c ) in get_temp()
174 static void release_temp( struct brw_wm_compile *c, struct prog_dst_register temp ) in release_temp()
184 static struct prog_instruction *get_fp_inst(struct brw_wm_compile *c) in get_fp_inst()
192 static struct prog_instruction *emit_insn(struct brw_wm_compile *c, in emit_insn()
200 static struct prog_instruction * emit_tex_op(struct brw_wm_compile *c, in emit_tex_op()
233 static struct prog_instruction * emit_op(struct brw_wm_compile *c, in emit_op()
253 static struct prog_instruction *emit_scalar_insn(struct brw_wm_compile *c, in emit_scalar_insn()
286 static struct prog_src_register get_pixel_xy( struct brw_wm_compile *c ) in get_pixel_xy()
312 static struct prog_src_register get_delta_xy( struct brw_wm_compile *c ) in get_delta_xy()
335 static struct prog_src_register get_pixel_w( struct brw_wm_compile *c ) in get_pixel_w()
[all …]
Dbrw_wm_debug.c37 void brw_wm_print_value( struct brw_wm_compile *c, in brw_wm_print_value()
61 void brw_wm_print_ref( struct brw_wm_compile *c, in brw_wm_print_ref()
81 void brw_wm_print_insn( struct brw_wm_compile *c, in brw_wm_print_insn()
164 void brw_wm_print_program( struct brw_wm_compile *c, in brw_wm_print_program()
Dbrw_wm_emit.c115 void emit_pixel_xy(struct brw_wm_compile *c, in emit_pixel_xy()
206 void emit_wpos_xy(struct brw_wm_compile *c, in emit_wpos_xy()
257 void emit_pixel_w(struct brw_wm_compile *c, in emit_pixel_w()
882 void emit_math1(struct brw_wm_compile *c, in emit_math1()
940 void emit_math2(struct brw_wm_compile *c, in emit_math2()
1036 void emit_tex(struct brw_wm_compile *c, in emit_tex()
1167 void emit_txb(struct brw_wm_compile *c, in emit_txb()
1247 static void emit_lit(struct brw_wm_compile *c, in emit_lit()
1289 static void emit_kil( struct brw_wm_compile *c, in emit_kil()
1322 static void fire_fb_write( struct brw_wm_compile *c, in fire_fb_write()
[all …]
Dbrw_wm_pass1.c37 static GLuint get_tracked_mask(struct brw_wm_compile *c, in get_tracked_mask()
69 static void track_arg(struct brw_wm_compile *c, in track_arg()
117 void brw_wm_pass1( struct brw_wm_compile *c ) in brw_wm_pass1()
Dbrw_wm.c95 brw_wm_non_glsl_emit(struct brw_context *brw, struct brw_wm_compile *c) in brw_wm_non_glsl_emit()
193 struct brw_wm_compile *c) in brw_wm_payload_setup()
267 struct brw_wm_compile *c; in do_wm_prog()
273 brw->wm.compile_data = rzalloc(NULL, struct brw_wm_compile); in do_wm_prog()
Dbrw_wm_iz.c124 struct brw_wm_compile *c) in brw_wm_lookup_iz()
Dbrw_fs.h189 fs_visitor(struct brw_wm_compile *c, struct gl_shader_program *prog,
345 struct brw_wm_compile *c;
Dbrw_context.h966 struct brw_wm_compile *compile_data;
Dbrw_fs.cpp2061 brw_wm_fs_emit(struct brw_context *brw, struct brw_wm_compile *c, in brw_wm_fs_emit()
Dbrw_fs_visitor.cpp2231 fs_visitor::fs_visitor(struct brw_wm_compile *c, struct gl_shader_program *prog, in fs_visitor()