Home | History | Annotate | Download | only in i915

Lines Matching defs:opcode

258 	       unsigned opcode, const unsigned * program)
260 if (opcode != A0_NOP) {
268 PRINTF(stream, "%s ", opcodes[opcode]);
271 if (args[opcode] == 1) {
278 if (args[opcode] == 2) {
292 unsigned opcode, const unsigned * program)
297 PRINTF(stream, "%s ", opcodes[opcode]);
310 unsigned opcode, const unsigned * program)
323 unsigned opcode, const unsigned * program)
325 PRINTF(stream, "%s ", opcodes[opcode]);
344 unsigned opcode = program[0] & (0x1f << 24);
348 if ((int) opcode >= A0_NOP && opcode <= A0_SLT)
349 print_arith_op(stream, opcode >> 24, program);
350 else if (opcode >= T0_TEXLD && opcode < T0_TEXKILL)
351 print_tex_op(stream, opcode >> 24, program);
352 else if (opcode == T0_TEXKILL)
353 print_texkil_op(stream, opcode >> 24, program);
354 else if (opcode == D0_DCL)
355 print_dcl_op(stream, opcode >> 24, program);
357 PRINTF(stream, "Unknown opcode 0x%x\n", opcode);