Home
last modified time | relevance | path

Searched refs:st_dst_reg (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi_private.h38 class st_dst_reg; variable
56 explicit st_src_reg(st_dst_reg reg);
94 class st_dst_reg {
96 st_dst_reg(gl_register_file file, int writemask, enum glsl_base_type type, int index);
98 st_dst_reg(gl_register_file file, int writemask, enum glsl_base_type type);
100 st_dst_reg();
101 st_dst_reg(const st_dst_reg &reg);
102 void operator=(const st_dst_reg &reg);
104 explicit st_dst_reg(st_src_reg reg);
119 bool operator == (const st_dst_reg& lhs, const st_dst_reg& rhs);
[all …]
Dst_glsl_to_tgsi_private.cpp163 st_src_reg::st_src_reg(st_dst_reg reg) in st_src_reg()
262 st_dst_reg::st_dst_reg(st_src_reg reg) in st_dst_reg() function in st_dst_reg
275 st_dst_reg::st_dst_reg(gl_register_file file, int writemask, enum glsl_base_type type, int index) in st_dst_reg() function in st_dst_reg
289 st_dst_reg::st_dst_reg(gl_register_file file, int writemask, enum glsl_base_type type) in st_dst_reg() function in st_dst_reg
303 st_dst_reg::st_dst_reg() in st_dst_reg() function in st_dst_reg
316 st_dst_reg::st_dst_reg(const st_dst_reg &reg) in st_dst_reg() function in st_dst_reg
321 void st_dst_reg::operator=(const st_dst_reg &reg) in operator =()
334 bool operator == (const st_dst_reg& lhs, const st_dst_reg& rhs) in operator ==()
366 std::ostream& operator << (std::ostream& os, const st_dst_reg& reg) in operator <<()
Dst_glsl_to_tgsi.cpp155 static const st_dst_reg undef_dst = st_dst_reg(PROGRAM_UNDEFINED, SWIZZLE_NOOP, GLSL_TYPE_ERROR);
317 st_dst_reg dst = undef_dst,
324 st_dst_reg dst, st_dst_reg dst1,
331 st_dst_reg dst,
338 st_dst_reg dst,
344 st_dst_reg dst, st_src_reg src0);
347 st_dst_reg dst, st_src_reg src0, st_src_reg src1);
349 void emit_arl(ir_instruction *ir, st_dst_reg dst, st_src_reg src0);
391 st_dst_reg *l, st_src_reg *r,
399 static st_dst_reg address_reg = st_dst_reg(PROGRAM_ADDRESS, WRITEMASK_X,
[all …]
Dst_glsl_to_tgsi_temprename.cpp1016 void record_write(const st_dst_reg& src, int line, prog_scope *scope,
1066 void access_recorder::record_write(const st_dst_reg& dst, int line, in record_write()
Dst_glsl_to_tgsi_array_merge.cpp645 st_dst_reg& dst = inst->dst[j]; in remap_arrays()
/external/mesa3d/src/mesa/state_tracker/tests/
Dst_tests_common.h82 st_dst_reg create_array_dst_register(const std::tuple<int,int,int>& r);
84 st_dst_reg create_dst_register(int dst_idx);
85 st_dst_reg create_dst_register(int dst_idx, int writemask);
86 st_dst_reg create_dst_register(int dst_idx, gl_register_file file);
87 st_dst_reg create_dst_register(const std::tuple<int,int,int>& dest);
93 std::vector<st_dst_reg> dst;
Dst_tests_common.cpp286 st_dst_reg FakeCodeline::create_array_dst_register(const tuple<int,int,int>& r) in create_array_dst_register()
292 st_dst_reg retval = create_dst_register(idx, std::get<2>(r)); in create_array_dst_register()
336 st_dst_reg FakeCodeline::create_dst_register(int dst_idx,int writemask) in create_dst_register()
349 return st_dst_reg(file, writemask, GLSL_TYPE_INT, idx); in create_dst_register()
352 st_dst_reg FakeCodeline::create_dst_register(int dst_idx) in create_dst_register()
358 st_dst_reg FakeCodeline::create_dst_register(int dst_idx, gl_register_file file) in create_dst_register()
360 st_dst_reg retval; in create_dst_register()
378 st_dst_reg FakeCodeline::create_dst_register(const tuple<int,int,int>& dst) in create_dst_register()
390 st_dst_reg retval = create_dst_register(dst_idx, file); in create_dst_register()