Skip to content
Snippets Groups Projects
Unverified Commit fb5bd092 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #564 from bunnei/lop32i_passb

gl_shader_decompiler: Implement LOP32I LogicOperation PassB.
parents 46cbb6b0 61f9d9c4
No related branches found
No related tags found
No related merge requests found
...@@ -930,20 +930,26 @@ private: ...@@ -930,20 +930,26 @@ private:
if (instr.alu.lop.invert_b) if (instr.alu.lop.invert_b)
imm = ~imm; imm = ~imm;
std::string op_b = std::to_string(imm);
switch (instr.alu.lop.operation) { switch (instr.alu.lop.operation) {
case Tegra::Shader::LogicOperation::And: { case Tegra::Shader::LogicOperation::And: {
regs.SetRegisterToInteger(instr.gpr0, true, 0, regs.SetRegisterToInteger(instr.gpr0, true, 0, '(' + op_a + " & " + op_b + ')',
'(' + op_a + " & " + std::to_string(imm) + ')', 1, 1); 1, 1);
break; break;
} }
case Tegra::Shader::LogicOperation::Or: { case Tegra::Shader::LogicOperation::Or: {
regs.SetRegisterToInteger(instr.gpr0, true, 0, regs.SetRegisterToInteger(instr.gpr0, true, 0, '(' + op_a + " | " + op_b + ')',
'(' + op_a + " | " + std::to_string(imm) + ')', 1, 1); 1, 1);
break; break;
} }
case Tegra::Shader::LogicOperation::Xor: { case Tegra::Shader::LogicOperation::Xor: {
regs.SetRegisterToInteger(instr.gpr0, true, 0, regs.SetRegisterToInteger(instr.gpr0, true, 0, '(' + op_a + " ^ " + op_b + ')',
'(' + op_a + " ^ " + std::to_string(imm) + ')', 1, 1); 1, 1);
break;
}
case Tegra::Shader::LogicOperation::PassB: {
regs.SetRegisterToInteger(instr.gpr0, true, 0, op_b, 1, 1);
break; break;
} }
default: default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment