2018-12-20 22:09:21 +00:00
|
|
|
// Copyright 2018 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "video_core/engines/shader_bytecode.h"
|
2019-06-05 01:44:06 +00:00
|
|
|
#include "video_core/shader/node_helper.h"
|
2018-12-20 22:09:21 +00:00
|
|
|
#include "video_core/shader/shader_ir.h"
|
|
|
|
|
|
|
|
namespace VideoCommon::Shader {
|
|
|
|
|
|
|
|
using Tegra::Shader::Instruction;
|
|
|
|
using Tegra::Shader::OpCode;
|
2020-03-13 12:01:49 +00:00
|
|
|
using Tegra::Shader::PredCondition;
|
2018-12-20 22:09:21 +00:00
|
|
|
|
2019-01-30 05:09:40 +00:00
|
|
|
u32 ShaderIR::DecodeXmad(NodeBlock& bb, u32 pc) {
|
2018-12-20 22:09:21 +00:00
|
|
|
const Instruction instr = {program_code[pc]};
|
|
|
|
const auto opcode = OpCode::Decode(instr);
|
|
|
|
|
2018-12-17 21:09:40 +00:00
|
|
|
UNIMPLEMENTED_IF(instr.xmad.sign_a);
|
|
|
|
UNIMPLEMENTED_IF(instr.xmad.sign_b);
|
|
|
|
UNIMPLEMENTED_IF_MSG(instr.generates_cc,
|
|
|
|
"Condition codes generation in XMAD is not implemented");
|
|
|
|
|
2018-12-21 06:12:16 +00:00
|
|
|
Node op_a = GetRegister(instr.gpr8);
|
2018-12-17 21:09:40 +00:00
|
|
|
|
|
|
|
// TODO(bunnei): Needs to be fixed once op_a or op_b is signed
|
|
|
|
UNIMPLEMENTED_IF(instr.xmad.sign_a != instr.xmad.sign_b);
|
|
|
|
const bool is_signed_a = instr.xmad.sign_a == 1;
|
|
|
|
const bool is_signed_b = instr.xmad.sign_b == 1;
|
|
|
|
const bool is_signed_c = is_signed_a;
|
|
|
|
|
2019-04-08 13:49:11 +00:00
|
|
|
auto [is_merge, is_psl, is_high_b, mode, op_b,
|
|
|
|
op_c] = [&]() -> std::tuple<bool, bool, bool, Tegra::Shader::XmadMode, Node, Node> {
|
2018-12-17 21:09:40 +00:00
|
|
|
switch (opcode->get().GetId()) {
|
|
|
|
case OpCode::Id::XMAD_CR:
|
2019-01-28 21:11:23 +00:00
|
|
|
return {instr.xmad.merge_56,
|
2019-04-08 13:49:11 +00:00
|
|
|
instr.xmad.product_shift_left_second,
|
|
|
|
instr.xmad.high_b,
|
|
|
|
instr.xmad.mode_cbf,
|
2019-01-28 21:11:23 +00:00
|
|
|
GetConstBuffer(instr.cbuf34.index, instr.cbuf34.GetOffset()),
|
2018-12-17 21:09:40 +00:00
|
|
|
GetRegister(instr.gpr39)};
|
|
|
|
case OpCode::Id::XMAD_RR:
|
2019-04-08 13:49:11 +00:00
|
|
|
return {instr.xmad.merge_37, instr.xmad.product_shift_left, instr.xmad.high_b_rr,
|
|
|
|
instr.xmad.mode, GetRegister(instr.gpr20), GetRegister(instr.gpr39)};
|
2018-12-17 21:09:40 +00:00
|
|
|
case OpCode::Id::XMAD_RC:
|
2019-04-08 13:49:11 +00:00
|
|
|
return {false,
|
|
|
|
false,
|
|
|
|
instr.xmad.high_b,
|
|
|
|
instr.xmad.mode_cbf,
|
|
|
|
GetRegister(instr.gpr39),
|
2019-01-28 21:11:23 +00:00
|
|
|
GetConstBuffer(instr.cbuf34.index, instr.cbuf34.GetOffset())};
|
2018-12-17 21:09:40 +00:00
|
|
|
case OpCode::Id::XMAD_IMM:
|
2019-04-08 13:49:11 +00:00
|
|
|
return {instr.xmad.merge_37,
|
|
|
|
instr.xmad.product_shift_left,
|
|
|
|
false,
|
|
|
|
instr.xmad.mode,
|
|
|
|
Immediate(static_cast<u32>(instr.xmad.imm20_16)),
|
2018-12-17 21:09:40 +00:00
|
|
|
GetRegister(instr.gpr39)};
|
2019-04-03 07:33:36 +00:00
|
|
|
default:
|
|
|
|
UNIMPLEMENTED_MSG("Unhandled XMAD instruction: {}", opcode->get().GetName());
|
|
|
|
return {false, false, false, Tegra::Shader::XmadMode::None, Immediate(0), Immediate(0)};
|
2018-12-17 21:09:40 +00:00
|
|
|
}
|
|
|
|
}();
|
|
|
|
|
2020-03-13 12:01:49 +00:00
|
|
|
op_a = SignedOperation(OperationCode::IBitfieldExtract, is_signed_a, std::move(op_a),
|
|
|
|
instr.xmad.high_a ? Immediate(16) : Immediate(0), Immediate(16));
|
2018-12-17 21:09:40 +00:00
|
|
|
|
|
|
|
const Node original_b = op_b;
|
2020-03-13 12:01:49 +00:00
|
|
|
op_b = SignedOperation(OperationCode::IBitfieldExtract, is_signed_b, std::move(op_b),
|
|
|
|
is_high_b ? Immediate(16) : Immediate(0), Immediate(16));
|
2018-12-17 21:09:40 +00:00
|
|
|
|
2020-03-13 12:01:49 +00:00
|
|
|
// we already check sign_a and sign_b is difference or not before so just use one in here.
|
|
|
|
Node product = SignedOperation(OperationCode::IMul, is_signed_a, op_a, op_b);
|
2019-04-08 13:49:11 +00:00
|
|
|
if (is_psl) {
|
2020-03-13 12:01:49 +00:00
|
|
|
product =
|
|
|
|
SignedOperation(OperationCode::ILogicalShiftLeft, is_signed_a, product, Immediate(16));
|
2018-12-17 21:09:40 +00:00
|
|
|
}
|
2019-07-16 14:31:17 +00:00
|
|
|
SetTemporary(bb, 0, product);
|
|
|
|
product = GetTemporary(0);
|
2018-12-17 21:09:40 +00:00
|
|
|
|
2019-01-16 00:06:05 +00:00
|
|
|
const Node original_c = op_c;
|
2019-04-08 13:49:11 +00:00
|
|
|
const Tegra::Shader::XmadMode set_mode = mode; // Workaround to clang compile error
|
2018-12-17 21:09:40 +00:00
|
|
|
op_c = [&]() {
|
2019-04-08 13:49:11 +00:00
|
|
|
switch (set_mode) {
|
2018-12-17 21:09:40 +00:00
|
|
|
case Tegra::Shader::XmadMode::None:
|
2019-01-16 00:06:05 +00:00
|
|
|
return original_c;
|
2018-12-17 21:09:40 +00:00
|
|
|
case Tegra::Shader::XmadMode::CLo:
|
2019-01-16 00:06:05 +00:00
|
|
|
return BitfieldExtract(original_c, 0, 16);
|
2018-12-17 21:09:40 +00:00
|
|
|
case Tegra::Shader::XmadMode::CHi:
|
2019-01-16 00:06:05 +00:00
|
|
|
return BitfieldExtract(original_c, 16, 16);
|
2018-12-17 21:09:40 +00:00
|
|
|
case Tegra::Shader::XmadMode::CBcc: {
|
|
|
|
const Node shifted_b = SignedOperation(OperationCode::ILogicalShiftLeft, is_signed_b,
|
2020-03-13 12:01:49 +00:00
|
|
|
original_b, Immediate(16));
|
|
|
|
return SignedOperation(OperationCode::IAdd, is_signed_c, original_c, shifted_b);
|
|
|
|
}
|
|
|
|
case Tegra::Shader::XmadMode::CSfu: {
|
|
|
|
const Node comp_a = GetPredicateComparisonInteger(PredCondition::Equal, is_signed_a,
|
|
|
|
op_a, Immediate(0));
|
|
|
|
const Node comp_b = GetPredicateComparisonInteger(PredCondition::Equal, is_signed_b,
|
|
|
|
op_b, Immediate(0));
|
2020-03-13 13:47:38 +00:00
|
|
|
const Node comp = Operation(OperationCode::LogicalOr, comp_a, comp_b);
|
2020-03-13 12:01:49 +00:00
|
|
|
|
|
|
|
const Node comp_minus_a = GetPredicateComparisonInteger(
|
|
|
|
PredCondition::NotEqual, is_signed_a,
|
|
|
|
SignedOperation(OperationCode::IBitwiseAnd, is_signed_a, op_a,
|
|
|
|
Immediate(0x80000000)),
|
|
|
|
Immediate(0));
|
|
|
|
const Node comp_minus_b = GetPredicateComparisonInteger(
|
|
|
|
PredCondition::NotEqual, is_signed_b,
|
|
|
|
SignedOperation(OperationCode::IBitwiseAnd, is_signed_b, op_b,
|
|
|
|
Immediate(0x80000000)),
|
|
|
|
Immediate(0));
|
|
|
|
|
|
|
|
Node new_c = Operation(
|
|
|
|
OperationCode::Select, comp_minus_a,
|
|
|
|
SignedOperation(OperationCode::IAdd, is_signed_c, original_c, Immediate(-65536)),
|
|
|
|
original_c);
|
|
|
|
new_c = Operation(
|
|
|
|
OperationCode::Select, comp_minus_b,
|
2020-03-13 13:47:38 +00:00
|
|
|
SignedOperation(OperationCode::IAdd, is_signed_c, new_c, Immediate(-65536)),
|
|
|
|
std::move(new_c));
|
2020-03-13 12:01:49 +00:00
|
|
|
|
2020-03-13 13:47:38 +00:00
|
|
|
return Operation(OperationCode::Select, comp, original_c, std::move(new_c));
|
2018-12-17 21:09:40 +00:00
|
|
|
}
|
2018-12-21 21:47:22 +00:00
|
|
|
default:
|
2020-03-13 12:01:49 +00:00
|
|
|
UNREACHABLE();
|
2018-12-21 21:47:22 +00:00
|
|
|
return Immediate(0);
|
2018-12-17 21:09:40 +00:00
|
|
|
}
|
|
|
|
}();
|
|
|
|
|
2019-07-16 14:31:17 +00:00
|
|
|
SetTemporary(bb, 1, op_c);
|
|
|
|
op_c = GetTemporary(1);
|
2019-04-08 13:49:11 +00:00
|
|
|
|
2018-12-17 21:09:40 +00:00
|
|
|
// TODO(Rodrigo): Use an appropiate sign for this operation
|
2020-03-13 13:47:38 +00:00
|
|
|
Node sum = SignedOperation(OperationCode::IAdd, is_signed_a, product, std::move(op_c));
|
2019-07-16 14:31:17 +00:00
|
|
|
SetTemporary(bb, 2, sum);
|
|
|
|
sum = GetTemporary(2);
|
2018-12-17 21:09:40 +00:00
|
|
|
if (is_merge) {
|
2020-03-13 13:47:38 +00:00
|
|
|
const Node a = SignedOperation(OperationCode::IBitfieldExtract, is_signed_a, std::move(sum),
|
|
|
|
Immediate(0), Immediate(16));
|
|
|
|
const Node b = SignedOperation(OperationCode::ILogicalShiftLeft, is_signed_b, original_b,
|
|
|
|
Immediate(16));
|
|
|
|
sum = SignedOperation(OperationCode::IBitwiseOr, is_signed_a, a, b);
|
2018-12-17 21:09:40 +00:00
|
|
|
}
|
|
|
|
|
2018-12-27 19:50:36 +00:00
|
|
|
SetInternalFlagsFromInteger(bb, sum, instr.generates_cc);
|
2020-03-13 13:47:38 +00:00
|
|
|
SetRegister(bb, instr.gpr0, std::move(sum));
|
2018-12-20 22:09:21 +00:00
|
|
|
|
|
|
|
return pc;
|
|
|
|
}
|
|
|
|
|
2019-04-08 13:49:11 +00:00
|
|
|
} // namespace VideoCommon::Shader
|