From eabeedf6af1e5277074ca460fa48390195b21329 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sat, 14 Apr 2018 14:42:47 -0400 Subject: gl_shader_decompiler: Cleanup log statements. --- .../renderer_opengl/gl_shader_decompiler.cpp | 30 +++++++++++----------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp index 96d50dd9e..6251a4be2 100644 --- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp +++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp @@ -158,7 +158,7 @@ private: return "input_attribute_" + std::to_string(index); } - LOG_ERROR(HW_GPU, "Unhandled input attribute: 0x%02x", index); + LOG_CRITICAL(HW_GPU, "Unhandled input attribute: 0x%02x", index); UNREACHABLE(); } @@ -175,7 +175,7 @@ private: return "output_attribute_" + std::to_string(index); } - LOG_ERROR(HW_GPU, "Unhandled output attribute: 0x%02x", index); + LOG_CRITICAL(HW_GPU, "Unhandled output attribute: 0x%02x", index); UNREACHABLE(); } } @@ -267,9 +267,9 @@ private: break; } default: { - LOG_ERROR(HW_GPU, "Unhandled arithmetic instruction: 0x%02x (%s): 0x%08x", - (int)instr.opcode.EffectiveOpCode(), OpCode::GetInfo(instr.opcode).name, - instr.hex); + LOG_CRITICAL(HW_GPU, "Unhandled arithmetic instruction: 0x%02x (%s): 0x%08x", + static_cast(instr.opcode.EffectiveOpCode()), + OpCode::GetInfo(instr.opcode).name.c_str(), instr.hex); throw DecompileFail("Unhandled instruction"); break; } @@ -296,9 +296,9 @@ private: } default: { - LOG_ERROR(HW_GPU, "Unhandled arithmetic FFMA instruction: 0x%02x (%s): 0x%08x", - (int)instr.opcode.EffectiveOpCode(), OpCode::GetInfo(instr.opcode).name, - instr.hex); + LOG_CRITICAL(HW_GPU, "Unhandled arithmetic FFMA instruction: 0x%02x (%s): 0x%08x", + static_cast(instr.opcode.EffectiveOpCode()), + OpCode::GetInfo(instr.opcode).name.c_str(), instr.hex); throw DecompileFail("Unhandled instruction"); break; } @@ -321,9 +321,9 @@ private: break; } default: { - LOG_ERROR(HW_GPU, "Unhandled memory instruction: 0x%02x (%s): 0x%08x", - (int)instr.opcode.EffectiveOpCode(), OpCode::GetInfo(instr.opcode).name, - instr.hex); + LOG_CRITICAL(HW_GPU, "Unhandled memory instruction: 0x%02x (%s): 0x%08x", + static_cast(instr.opcode.EffectiveOpCode()), + OpCode::GetInfo(instr.opcode).name.c_str(), instr.hex); throw DecompileFail("Unhandled instruction"); break; } @@ -340,10 +340,10 @@ private: } default: { - LOG_ERROR(HW_GPU, "Unhandled instruction: 0x%02x (%s): 0x%08x", - (int)instr.opcode.EffectiveOpCode(), - OpCode::GetInfo(instr.opcode).name.c_str(), instr.hex); - // throw DecompileFail("Unhandled instruction"); + LOG_CRITICAL(HW_GPU, "Unhandled instruction: 0x%02x (%s): 0x%08x", + static_cast(instr.opcode.EffectiveOpCode()), + OpCode::GetInfo(instr.opcode).name.c_str(), instr.hex); + throw DecompileFail("Unhandled instruction"); break; } } -- cgit v1.2.3