Searched refs:hw_class (Results 1 – 12 of 12) sorted by relevance
/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_bc.h | 624 sb_hw_class hw_class; variable 653 hw_chip(HW_CHIP_UNKNOWN), hw_class(HW_CLASS_UNKNOWN) {} in sb_context() 657 bool is_r600() {return hw_class == HW_CLASS_R600;} in is_r600() 658 bool is_r700() {return hw_class == HW_CLASS_R700;} in is_r700() 659 bool is_evergreen() {return hw_class == HW_CLASS_EVERGREEN;} in is_evergreen() 660 bool is_cayman() {return hw_class == HW_CLASS_CAYMAN;} in is_cayman() 661 bool is_egcm() {return hw_class >= HW_CLASS_EVERGREEN;} in is_egcm() 682 switch (hw_class) { in hw_class_bit() 693 return r600_isa_cf_opcode(isa->hw_class, op); in cf_opcode() 697 return r600_isa_alu_opcode(isa->hw_class, op); in alu_opcode() [all …]
|
D | sb_context.cpp | 50 hw_class = cclass; in init() 96 switch (hw_class) { in get_hw_class_name()
|
D | sb_bc_decoder.cpp | 400 bc.slot_flags = (alu_op_flags)bc.op_ptr->slots[ctx.isa->hw_class]; in decode_alu() 592 switch (ctx.hw_class) { in decode_fetch_vtx()
|
D | sb_bc_builder.cpp | 660 switch (ctx.hw_class) { in build_fetch_vtx()
|
D | sb_bc_finalize.cpp | 905 switch (ctx.hw_class) { in get_stack_depth()
|
D | sb_bc_parser.cpp | 162 bool ps_interp = ctx.hw_class >= HW_CLASS_EVERGREEN in parse_decls()
|
D | sb_sched.cpp | 1974 : sh(sh), kt(sh.get_ctx().hw_class), slot_count(), in alu_clause_tracker()
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | eg_asm.c | 40 unsigned opcode = r600_isa_cf_opcode(bc->isa->hw_class, cf->op); in eg_bytecode_cf_build() 55 r600_isa_cf_opcode(bc->isa->hw_class, CF_OP_ALU_EXT)) | in eg_bytecode_cf_build() 226 unsigned gds_op = (r600_isa_fetch_opcode(bc->isa->hw_class, gds->op) >> 8) & 0x3f; in eg_bytecode_gds_build() 288 unsigned lds_op = r600_isa_alu_opcode(bc->isa->hw_class, alu->op); in eg_bytecode_alu_build() 313 S_SQ_ALU_WORD1_OP3_ALU_INST(r600_isa_alu_opcode(bc->isa->hw_class, alu->op)) | in eg_bytecode_alu_build() 324 S_SQ_ALU_WORD1_OP2_ALU_INST(r600_isa_alu_opcode(bc->isa->hw_class, alu->op)) | in eg_bytecode_alu_build()
|
D | r700_asm.c | 61 S_SQ_ALU_WORD1_OP3_ALU_INST(r600_isa_alu_opcode(bc->isa->hw_class, alu->op)) | in r700_bytecode_alu_build() 72 S_SQ_ALU_WORD1_OP2_ALU_INST(r600_isa_alu_opcode(bc->isa->hw_class, alu->op)) | in r700_bytecode_alu_build()
|
D | r600_isa.c | 541 isa->hw_class = ctx->b.chip_class - R600; in r600_isa_init() 561 if (op->flags & AF_LDS || op->slots[isa->hw_class] == 0) in r600_isa_init() 563 opc = op->opcode[isa->hw_class >> 1]; in r600_isa_init() 573 unsigned opc = op->opcode[isa->hw_class]; in r600_isa_init() 581 unsigned opc = op->opcode[isa->hw_class]; in r600_isa_init()
|
D | r600_asm.c | 243 (r600_isa_alu_slots(bc->isa->hw_class, alu->op) == AF_4V); in is_alu_reduction_inst() 294 unsigned slots = r600_isa_alu_slots(bc->isa->hw_class, alu->op); in is_alu_vec_unit_inst() 300 unsigned slots = r600_isa_alu_slots(bc->isa->hw_class, alu->op); in is_alu_trans_unit_inst() 307 unsigned slots = r600_isa_alu_slots(bc->isa->hw_class, alu->op); in is_alu_any_unit_inst() 1546 r600_isa_fetch_opcode(bc->isa->hw_class, tex->op)) | in r600_bytecode_tex_build() 1581 unsigned opcode = r600_isa_alu_opcode(bc->isa->hw_class, alu->op); in r600_bytecode_alu_build() 1639 unsigned opcode = r600_isa_cf_opcode(bc->isa->hw_class, cf->op); in r600_bytecode_cf_build()
|
D | r600_isa.h | 662 enum r600_chip_class hw_class; member
|