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"
|
|
|
|
#include "video_core/shader/shader_ir.h"
|
|
|
|
|
|
|
|
namespace VideoCommon::Shader {
|
|
|
|
|
|
|
|
using Tegra::Shader::Instruction;
|
|
|
|
using Tegra::Shader::OpCode;
|
2018-12-15 20:32:51 +00:00
|
|
|
using Tegra::Shader::Register;
|
2018-12-20 22:09:21 +00:00
|
|
|
|
|
|
|
u32 ShaderIR::DecodeConversion(BasicBlock& bb, u32 pc) {
|
|
|
|
const Instruction instr = {program_code[pc]};
|
|
|
|
const auto opcode = OpCode::Decode(instr);
|
|
|
|
|
2018-12-15 20:32:51 +00:00
|
|
|
switch (opcode->get().GetId()) {
|
2018-12-21 04:53:05 +00:00
|
|
|
case OpCode::Id::I2F_R:
|
|
|
|
case OpCode::Id::I2F_C: {
|
|
|
|
UNIMPLEMENTED_IF(instr.conversion.dest_size != Register::Size::Word);
|
|
|
|
UNIMPLEMENTED_IF(instr.conversion.selector);
|
|
|
|
UNIMPLEMENTED_IF_MSG(instr.generates_cc,
|
|
|
|
"Condition codes generation in I2F is not implemented");
|
|
|
|
|
|
|
|
Node value = [&]() {
|
|
|
|
if (instr.is_b_gpr) {
|
|
|
|
return GetRegister(instr.gpr20);
|
|
|
|
} else {
|
|
|
|
return GetConstBuffer(instr.cbuf34.index, instr.cbuf34.offset);
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
const bool input_signed = instr.conversion.is_input_signed;
|
|
|
|
value = ConvertIntegerSize(value, instr.conversion.src_size, input_signed);
|
|
|
|
value = GetOperandAbsNegInteger(value, instr.conversion.abs_a, false, input_signed);
|
|
|
|
value = SignedOperation(OperationCode::FCastInteger, input_signed, PRECISE, value);
|
|
|
|
value = GetOperandAbsNegFloat(value, false, instr.conversion.negate_a);
|
|
|
|
|
|
|
|
SetRegister(bb, instr.gpr0, value);
|
|
|
|
break;
|
|
|
|
}
|
2018-12-15 20:32:51 +00:00
|
|
|
case OpCode::Id::F2F_R: {
|
|
|
|
UNIMPLEMENTED_IF(instr.conversion.dest_size != Register::Size::Word);
|
|
|
|
UNIMPLEMENTED_IF(instr.conversion.src_size != Register::Size::Word);
|
|
|
|
UNIMPLEMENTED_IF_MSG(instr.generates_cc,
|
|
|
|
"Condition codes generation in F2F is not implemented");
|
|
|
|
|
|
|
|
Node value = GetRegister(instr.gpr20);
|
|
|
|
value = GetOperandAbsNegFloat(value, instr.conversion.abs_a, instr.conversion.negate_a);
|
|
|
|
|
|
|
|
value = [&]() {
|
|
|
|
switch (instr.conversion.f2f.rounding) {
|
|
|
|
case Tegra::Shader::F2fRoundingOp::None:
|
|
|
|
return value;
|
|
|
|
case Tegra::Shader::F2fRoundingOp::Round:
|
|
|
|
return Operation(OperationCode::FRoundEven, PRECISE, value);
|
|
|
|
case Tegra::Shader::F2fRoundingOp::Floor:
|
|
|
|
return Operation(OperationCode::FFloor, PRECISE, value);
|
|
|
|
case Tegra::Shader::F2fRoundingOp::Ceil:
|
|
|
|
return Operation(OperationCode::FCeil, PRECISE, value);
|
|
|
|
case Tegra::Shader::F2fRoundingOp::Trunc:
|
|
|
|
return Operation(OperationCode::FTrunc, PRECISE, value);
|
|
|
|
default:
|
|
|
|
UNIMPLEMENTED_MSG("Unimplemented F2F rounding mode {}",
|
|
|
|
static_cast<u32>(instr.conversion.f2f.rounding.Value()));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
value = GetSaturatedFloat(value, instr.alu.saturate_d);
|
|
|
|
|
|
|
|
SetRegister(bb, instr.gpr0, value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
UNIMPLEMENTED_MSG("Unhandled conversion instruction: {}", opcode->get().GetName());
|
|
|
|
}
|
2018-12-20 22:09:21 +00:00
|
|
|
|
|
|
|
return pc;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace VideoCommon::Shader
|