Searched refs:backend_instruction (Results 1 – 16 of 16) sorted by relevance
/external/mesa3d/src/intel/compiler/ |
D | brw_cfg.h | 49 struct backend_instruction; 64 backend_instruction *start(); 65 const backend_instruction *start() const; 66 backend_instruction *end(); 67 const backend_instruction *end() const; 77 backend_instruction *first_non_control_flow_inst(); 78 backend_instruction *last_non_control_flow_inst(); 96 static inline struct backend_instruction * 99 return (struct backend_instruction *)exec_list_get_head(&block->instructions); in bblock_start() 102 static inline const struct backend_instruction * [all …]
|
D | brw_dead_control_flow.cpp | 49 backend_instruction *const inst = block->start(); in dead_control_flow_eliminate() 50 backend_instruction *const prev_inst = prev_block->end(); in dead_control_flow_eliminate() 58 backend_instruction *const else_inst = prev_inst; in dead_control_flow_eliminate() 66 backend_instruction *const endif_inst = inst; in dead_control_flow_eliminate() 67 backend_instruction *const if_inst = prev_inst; in dead_control_flow_eliminate() 102 backend_instruction *const if_inst = prev_inst; in dead_control_flow_eliminate() 103 backend_instruction *const else_inst = inst; in dead_control_flow_eliminate()
|
D | brw_shader.cpp | 747 backend_instruction::is_commutative() const in is_commutative() 770 backend_instruction::is_3src(const struct gen_device_info *devinfo) const in is_3src() 776 backend_instruction::is_tex() const in is_tex() 797 backend_instruction::is_math() const in is_math() 812 backend_instruction::is_control_flow() const in is_control_flow() 829 backend_instruction::can_do_source_mods() const in can_do_source_mods() 850 backend_instruction::can_do_saturate() const in can_do_saturate() 894 backend_instruction::can_do_cmod() const in can_do_cmod() 941 backend_instruction::reads_accumulator_implicitly() const in reads_accumulator_implicitly() 954 backend_instruction::writes_accumulator_implicitly(const struct gen_device_info *devinfo) const in writes_accumulator_implicitly() [all …]
|
D | brw_shader.h | 98 struct backend_instruction : public exec_node { struct 111 void insert_after(bblock_t *block, backend_instruction *inst); 112 void insert_before(bblock_t *block, backend_instruction *inst); 128 struct backend_instruction { 227 virtual void dump_instruction(backend_instruction *inst) = 0; 228 virtual void dump_instruction(backend_instruction *inst, FILE *file) = 0;
|
D | brw_schedule_instructions.cpp | 65 schedule_node(backend_instruction *inst, instruction_scheduler *sched); 69 backend_instruction *inst; 499 virtual int issue_time(backend_instruction *inst) = 0; 501 virtual void count_reads_remaining(backend_instruction *inst) = 0; 503 virtual void update_register_pressure(backend_instruction *inst) = 0; 504 virtual int get_register_pressure_benefit(backend_instruction *inst) = 0; 573 int issue_time(backend_instruction *inst); 576 void count_reads_remaining(backend_instruction *inst); 578 void update_register_pressure(backend_instruction *inst); 579 int get_register_pressure_benefit(backend_instruction *inst); [all …]
|
D | brw_predicated_break.cpp | 68 backend_instruction *jump_inst = block->end(); in opt_predicated_break() 73 backend_instruction *if_inst = block->prev()->end(); in opt_predicated_break() 77 backend_instruction *endif_inst = block->next()->start(); in opt_predicated_break() 122 backend_instruction *while_inst = while_block->start(); in opt_predicated_break()
|
D | brw_disasm_info.h | 34 struct backend_instruction; 79 struct backend_instruction *inst, unsigned offset);
|
D | brw_cfg.cpp | 93 ends_block(const backend_instruction *inst) in ends_block() 106 starts_block(const backend_instruction *inst) in starts_block() 148 foreach_inst_in_block(backend_instruction, inst, this) { in dump() 178 foreach_in_list_safe(backend_instruction, inst, instructions) { in cfg_t()
|
D | brw_vec4.h | 318 void dump_instruction(backend_instruction *inst); 319 void dump_instruction(backend_instruction *inst, FILE *file);
|
D | brw_fs.h | 284 void dump_instruction(backend_instruction *inst); 285 void dump_instruction(backend_instruction *inst, FILE *file);
|
D | brw_disasm_info.c | 118 struct backend_instruction *inst, unsigned offset) in disasm_annotate()
|
D | brw_fs_register_coalesce.cpp | 285 foreach_block_and_inst_safe (block, backend_instruction, inst, cfg) { in register_coalesce()
|
D | brw_ir_vec4.h | 268 class vec4_instruction : public backend_instruction {
|
D | brw_ir_fs.h | 317 class fs_inst : public backend_instruction {
|
D | brw_vec4.cpp | 253 if (!backend_instruction::can_do_source_mods()) in can_do_source_mods() 1537 vec4_visitor::dump_instruction(backend_instruction *be_inst) in dump_instruction() 1543 vec4_visitor::dump_instruction(backend_instruction *be_inst, FILE *file) in dump_instruction()
|
D | brw_fs.cpp | 387 if (!backend_instruction::can_do_source_mods()) in can_do_source_mods() 5465 foreach_block_and_inst(block, backend_instruction, inst, cfg) { in dump_instructions() 5474 foreach_in_list(backend_instruction, inst, &instructions) { in dump_instructions() 5486 fs_visitor::dump_instruction(backend_instruction *be_inst) in dump_instruction() 5492 fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file) in dump_instruction()
|