mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +02:00
tgsi: report opcode name in addition to the number when translation fails
This commit is contained in:
parent
c3c90c2dd9
commit
4f61bc135a
2 changed files with 9 additions and 3 deletions
|
|
@ -38,6 +38,7 @@
|
|||
#include "util/u_math.h"
|
||||
#include "util/u_memory.h"
|
||||
#include "util/u_sse.h"
|
||||
#include "tgsi/tgsi_info.h"
|
||||
#include "tgsi/tgsi_parse.h"
|
||||
#include "tgsi/tgsi_util.h"
|
||||
#include "tgsi_dump.h"
|
||||
|
|
@ -1317,8 +1318,10 @@ tgsi_emit_ppc(const struct tgsi_token *tokens,
|
|||
ok = emit_instruction(&gen, &parse.FullToken.FullInstruction);
|
||||
|
||||
if (!ok) {
|
||||
uint opcode = parse.FullToken.FullInstruction.Instruction.Opcode;
|
||||
debug_printf("failed to translate tgsi opcode %d to PPC (%s)\n",
|
||||
parse.FullToken.FullInstruction.Instruction.Opcode,
|
||||
opcode,
|
||||
tgsi_get_opcode_name(opcode),
|
||||
parse.FullHeader.Processor.Processor == TGSI_PROCESSOR_VERTEX ?
|
||||
"vertex shader" : "fragment shader");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@
|
|||
#if defined(PIPE_ARCH_SSE)
|
||||
#include "util/u_sse.h"
|
||||
#endif
|
||||
#include "tgsi/tgsi_info.h"
|
||||
#include "tgsi/tgsi_parse.h"
|
||||
#include "tgsi/tgsi_util.h"
|
||||
#include "tgsi_exec.h"
|
||||
|
|
@ -2917,8 +2918,10 @@ tgsi_emit_sse2(
|
|||
&parse.FullToken.FullInstruction );
|
||||
|
||||
if (!ok) {
|
||||
debug_printf("failed to translate tgsi opcode %d to SSE (%s)\n",
|
||||
parse.FullToken.FullInstruction.Instruction.Opcode,
|
||||
uint opcode = parse.FullToken.FullInstruction.Instruction.Opcode;
|
||||
debug_printf("failed to translate tgsi opcode %d (%s) to SSE (%s)\n",
|
||||
opcode,
|
||||
tgsi_get_opcode_name(opcode),
|
||||
parse.FullHeader.Processor.Processor == TGSI_PROCESSOR_VERTEX ?
|
||||
"vertex shader" : "fragment shader");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue