Home
last modified time | relevance | path

Searched refs:hw_class (Results 1 – 12 of 12) sorted by relevance

/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_bc.h624 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 …]
Dsb_context.cpp50 hw_class = cclass; in init()
96 switch (hw_class) { in get_hw_class_name()
Dsb_bc_decoder.cpp400 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()
Dsb_bc_builder.cpp660 switch (ctx.hw_class) { in build_fetch_vtx()
Dsb_bc_finalize.cpp905 switch (ctx.hw_class) { in get_stack_depth()
Dsb_bc_parser.cpp162 bool ps_interp = ctx.hw_class >= HW_CLASS_EVERGREEN in parse_decls()
Dsb_sched.cpp1974 : sh(sh), kt(sh.get_ctx().hw_class), slot_count(), in alu_clause_tracker()
/external/mesa3d/src/gallium/drivers/r600/
Deg_asm.c40 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()
Dr700_asm.c61 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()
Dr600_isa.c541 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()
Dr600_asm.c243 (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()
Dr600_isa.h662 enum r600_chip_class hw_class; member