Home
last modified time | relevance | path

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

/external/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.cpp107 inst->opcode = BRW_OPCODE_NOP; in dead_code_eliminate()
123 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.cpp696 { BRW_OPCODE_NOP, 126, "nop", 0, 0, GEN_LT(GEN12) },
697 { BRW_OPCODE_NOP, 96, "nop", 0, 0, GEN_GE(GEN12) }
Dbrw_eu_defines.h282 BRW_OPCODE_NOP, enumerator
Dbrw_shader.cpp1061 ((opcode >= BRW_OPCODE_ADD && opcode < BRW_OPCODE_NOP) || in writes_accumulator_implicitly()
Dbrw_disasm.c1744 if (opcode != BRW_OPCODE_NOP && opcode != BRW_OPCODE_NENOP) { in brw_disassemble_inst()
2123 if (opcode != BRW_OPCODE_NOP && opcode != BRW_OPCODE_NENOP) { in brw_disassemble_inst()
Dbrw_ir_performance.cpp328 case BRW_OPCODE_NOP: in instruction_desc()
Dbrw_eu_emit.c1311 brw_inst *insn = next_insn(p, BRW_OPCODE_NOP); in brw_NOP()
1313 brw_inst_set_opcode(p->devinfo, insn, BRW_OPCODE_NOP); in brw_NOP()
Dbrw_eu_compact.c2442 devinfo, align, brw_opcode_encode(devinfo, BRW_OPCODE_NOP)); in brw_compact_instructions()
Dbrw_fs.cpp94 init(BRW_OPCODE_NOP, 8, dst, NULL, 0); in fs_inst()
/external/igt-gpu-tools/assembler/
Dbrw_eu_compact.c723 align->dw0.opcode = BRW_OPCODE_NOP; in brw_compact_instructions()
786 align->dw0.opcode = BRW_OPCODE_NOP; in brw_compact_instructions()
Dgen8_disasm.c875 if (opcode != BRW_OPCODE_NOP) { in gen8_disassemble()
968 if (opcode != BRW_OPCODE_NOP) { in gen8_disassemble()
Dmain.c401 tmp_entry->insn.gen.header.opcode = BRW_OPCODE_NOP; in main()
Dbrw_disasm.c72 [BRW_OPCODE_NOP] = { .name = "nop", .nsrc = 0, .ndst = 0 },
1090 if (inst->header.opcode != BRW_OPCODE_NOP) { in brw_disasm()
1310 if (inst->header.opcode != BRW_OPCODE_NOP) { in brw_disasm()
Dlex.l136 "nop" { yylval.integer = BRW_OPCODE_NOP; return NOP; }
Dbrw_defines.h705 BRW_OPCODE_NOP = 126, enumerator
Dbrw_eu_emit.c1087 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_NOP); in brw_NOP()
/external/mesa3d/src/intel/tools/
Di965_lex.l105 nop { yylval.integer = BRW_OPCODE_NOP; return NOP; }