/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_emulate_branches.h | 26 struct radeon_compiler; 28 void rc_emulate_branches(struct radeon_compiler *c, void *user);
|
radeon_rename_regs.h | 5 struct radeon_compiler; 7 void rc_rename_regs(struct radeon_compiler *c, void *user);
|
r300_fragprog.h | 36 #include "radeon_compiler.h" 40 extern void r300BuildFragmentProgramHwCode(struct radeon_compiler *c, void *user); 42 extern void r300FragmentProgramDump(struct radeon_compiler *c, void *user);
|
radeon_program_alu.h | 34 struct radeon_compiler * c, 39 struct radeon_compiler * c, 44 struct radeon_compiler * c, 49 struct radeon_compiler * c, 54 struct radeon_compiler *c, 59 struct radeon_compiler * c, 63 void rc_transform_KILP(struct radeon_compiler * c,
|
r500_fragprog.h | 36 #include "radeon_compiler.h" 39 extern void r500BuildFragmentProgramHwCode(struct radeon_compiler *c, void *user); 41 extern void r500FragmentProgramDump(struct radeon_compiler *c, void *user); 46 struct radeon_compiler * c,
|
radeon_program_tex.h | 31 #include "radeon_compiler.h" 35 struct radeon_compiler * c,
|
radeon_remove_constants.h | 31 #include "radeon_compiler.h" 33 void rc_remove_unused_constants(struct radeon_compiler *c, void *user);
|
radeon_emulate_loops.h | 8 struct radeon_compiler; 20 struct radeon_compiler * C; 26 void rc_transform_loops(struct radeon_compiler *c, void *user); 28 void rc_unroll_loops(struct radeon_compiler * c, void *user); 30 void rc_emulate_loops(struct radeon_compiler * c, void *user);
|
radeon_compiler.h | 44 struct radeon_compiler { struct 80 void rc_init(struct radeon_compiler * c); 81 void rc_destroy(struct radeon_compiler * c); 83 void rc_debug(struct radeon_compiler * c, const char * fmt, ...); 84 void rc_error(struct radeon_compiler * c, const char * fmt, ...); 86 int rc_if_fail_helper(struct radeon_compiler * c, const char * file, int line, const char * assertion); 103 void rc_calculate_inputs_outputs(struct radeon_compiler * c); 105 void rc_move_input(struct radeon_compiler * c, unsigned input, struct rc_src_register new_input); 106 void rc_move_output(struct radeon_compiler * c, unsigned output, unsigned new_output, unsigned writemask); 107 void rc_copy_output(struct radeon_compiler * c, unsigned output, unsigned dup_output) [all...] |
radeon_program.h | 39 struct radeon_compiler; 180 struct radeon_compiler*, 187 struct radeon_compiler *c, 191 struct radeon_compiler * c, 196 struct radeon_compiler * c, 201 unsigned int rc_find_free_temporary(struct radeon_compiler * c); 203 struct rc_instruction *rc_alloc_instruction(struct radeon_compiler * c); 204 struct rc_instruction *rc_insert_new_instruction(struct radeon_compiler * c, struct rc_instruction * after); 208 unsigned int rc_recompute_ips(struct radeon_compiler * c);
|
radeon_variable.h | 31 #include "radeon_compiler.h" 33 struct radeon_compiler; 45 struct radeon_compiler * C; 70 struct radeon_compiler * c, 76 struct rc_list * rc_get_variables(struct radeon_compiler * c);
|
radeon_program_pair.h | 35 struct radeon_compiler; 132 void rc_pair_translate(struct radeon_compiler *cc, void *user); 133 void rc_pair_schedule(struct radeon_compiler *cc, void *user); 134 void rc_pair_regalloc(struct radeon_compiler *cc, void *user); 135 void rc_pair_regalloc_inputs_only(struct radeon_compiler *cc, void *user); 136 void rc_pair_remove_dead_sources(struct radeon_compiler *c, void *user);
|
radeon_dataflow.h | 34 struct radeon_compiler; 107 struct radeon_compiler * c, 115 struct radeon_compiler * c, 128 void rc_dataflow_deadcode(struct radeon_compiler * c, void *user); 129 void rc_dataflow_swizzles(struct radeon_compiler * c, void *user); 132 void rc_optimize(struct radeon_compiler * c, void *user); 133 void rc_inline_literals(struct radeon_compiler *c, void *user);
|
radeon_compiler_util.h | 8 struct radeon_compiler; 71 struct radeon_compiler * c, 90 struct radeon_compiler * c, 95 struct radeon_compiler * c,
|
radeon_program.c | 32 #include "radeon_compiler.h" 52 struct radeon_compiler * c, 105 struct radeon_compiler * c, 135 struct radeon_compiler * c, 150 unsigned int rc_find_free_temporary(struct radeon_compiler * c) 169 struct rc_instruction *rc_alloc_instruction(struct radeon_compiler * c) 193 struct rc_instruction *rc_insert_new_instruction(struct radeon_compiler * c, struct rc_instruction * after) 211 unsigned int rc_recompute_ips(struct radeon_compiler * c)
|
radeon_program_alu.c | 38 #include "radeon_compiler.h" 43 struct radeon_compiler * c, struct rc_instruction * after, 60 struct radeon_compiler * c, struct rc_instruction * after, 79 struct radeon_compiler * c, struct rc_instruction * after, 216 static struct rc_dst_register try_to_reuse_dst(struct radeon_compiler *c, 229 static void transform_ABS(struct radeon_compiler* c, 239 static void transform_CEIL(struct radeon_compiler* c, 259 static void transform_CLAMP(struct radeon_compiler *c, 275 static void transform_DP2(struct radeon_compiler* c, 290 static void transform_DPH(struct radeon_compiler* c [all...] |
radeon_compiler.c | 23 #include "radeon_compiler.h" 35 void rc_init(struct radeon_compiler * c) 45 void rc_destroy(struct radeon_compiler * c) 52 void rc_debug(struct radeon_compiler * c, const char * fmt, ...) 64 void rc_error(struct radeon_compiler * c, const char * fmt, ...) 99 int rc_if_fail_helper(struct radeon_compiler * c, const char * file, int line, const char * assertion) 110 void rc_calculate_inputs_outputs(struct radeon_compiler * c) 138 void rc_move_input(struct radeon_compiler * c, unsigned input, struct rc_src_register new_input) 170 void rc_move_output(struct radeon_compiler * c, unsigned output, unsigned new_output, unsigned writemask) 194 void rc_copy_output(struct radeon_compiler * c, unsigned output, unsigned dup_output [all...] |
radeon_emulate_loops.c | 34 #include "radeon_compiler.h" 43 struct radeon_compiler * C; 50 struct radeon_compiler * C; 58 static unsigned int loop_max_possible_iterations(struct radeon_compiler *c, 67 static void unroll_loop(struct radeon_compiler * c, struct loop_info * loop, 186 static int try_unroll_loop(struct radeon_compiler * c, struct loop_info * loop) 326 static int build_loop_info(struct radeon_compiler * c, struct loop_info * loop, 472 void rc_transform_loops(struct radeon_compiler *c, void *user) 489 void rc_unroll_loops(struct radeon_compiler *c, void *user) 505 void rc_emulate_loops(struct radeon_compiler *c, void *user [all...] |
radeon_rename_regs.c | 34 #include "radeon_compiler.h" 47 void rc_rename_regs(struct radeon_compiler *c, void *user)
|
radeon_dataflow_swizzles.c | 30 #include "radeon_compiler.h" 34 static void rewrite_source(struct radeon_compiler * c, 90 void rc_dataflow_swizzles(struct radeon_compiler * c, void *user)
|
radeon_pair_dead_sources.c | 2 #include "radeon_compiler.h" 41 void rc_pair_remove_dead_sources(struct radeon_compiler * c, void *user)
|
r3xx_vertprog_dump.c | 23 #include "radeon_compiler.h" 169 void r300_vertex_program_dump(struct radeon_compiler *compiler, void *user)
|
radeon_inline_literals.c | 2 #include "radeon_compiler.h" 61 void rc_inline_literals(struct radeon_compiler *c, void *user)
|
radeon_optimize.c | 31 #include "radeon_compiler.h" 140 static void copy_propagate(struct radeon_compiler * c, struct rc_instruction * inst_mov) 309 static void constant_folding(struct radeon_compiler * c, struct rc_instruction * inst) 451 struct radeon_compiler * c, 513 struct radeon_compiler * c, 563 struct radeon_compiler * c, 627 struct radeon_compiler * c, 699 struct radeon_compiler * c, 840 static int peephole(struct radeon_compiler * c, struct rc_instruction * inst) 857 void rc_optimize(struct radeon_compiler * c, void *user [all...] |
/external/mesa3d/src/gallium/drivers/r300/ |
r300_tgsi_to_rc.h | 28 struct radeon_compiler; 40 struct radeon_compiler * compiler;
|