Home
last modified time | relevance | path

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

/third_party/mesa3d/src/intel/compiler/
Dbrw_vec4_dead_code_eliminate.cpp120 inst->opcode = BRW_OPCODE_NOP; in dead_code_eliminate()
135 inst->opcode = BRW_OPCODE_NOP; in dead_code_eliminate()
157 if (inst->opcode == BRW_OPCODE_NOP) { in dead_code_eliminate()
Dbrw_fs_dead_code_eliminate.cpp108 inst->opcode = BRW_OPCODE_NOP; in dead_code_eliminate()
124 if (inst->opcode == BRW_OPCODE_NOP) { in dead_code_eliminate()
Dbrw_fs_register_coalesce.cpp208 inst->opcode = BRW_OPCODE_NOP; in register_coalesce()
284 mov[i]->opcode = BRW_OPCODE_NOP; in register_coalesce()
332 if (inst->opcode == BRW_OPCODE_NOP) { in register_coalesce()
Dbrw_eu.c704 { BRW_OPCODE_NOP, 126, "nop", 0, 0, GFX_LT(GFX12) },
705 { BRW_OPCODE_NOP, 96, "nop", 0, 0, GFX_GE(GFX12) }
Dbrw_eu_defines.h262 BRW_OPCODE_NOP, enumerator
Dbrw_shader.cpp1096 ((opcode >= BRW_OPCODE_ADD && opcode < BRW_OPCODE_NOP) || in writes_accumulator_implicitly()
Dbrw_disasm.c1955 if (opcode != BRW_OPCODE_NOP && opcode != BRW_OPCODE_NENOP) { in brw_disassemble_inst()
2452 if (opcode != BRW_OPCODE_NOP && opcode != BRW_OPCODE_NENOP) { in brw_disassemble_inst()
Dbrw_ir_performance.cpp331 case BRW_OPCODE_NOP: in instruction_desc()
Dbrw_eu_emit.c1335 brw_inst *insn = next_insn(p, BRW_OPCODE_NOP); in brw_NOP()
1337 brw_inst_set_opcode(p->isa, insn, BRW_OPCODE_NOP); in brw_NOP()
Dbrw_eu_compact.c2660 devinfo, align, brw_opcode_encode(p->isa, BRW_OPCODE_NOP)); in brw_compact_instructions()
Dbrw_fs.cpp95 init(BRW_OPCODE_NOP, 8, dst, NULL, 0); in fs_inst()
/third_party/mesa3d/src/intel/tools/
Di965_lex.l106 nop { yylval.integer = BRW_OPCODE_NOP; return NOP; }