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 <cmath>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/common_types.h"
|
2018-12-27 19:50:36 +00:00
|
|
|
#include "common/logging/log.h"
|
2018-12-20 22:09:21 +00:00
|
|
|
#include "video_core/engines/shader_bytecode.h"
|
|
|
|
#include "video_core/shader/shader_ir.h"
|
|
|
|
|
|
|
|
namespace VideoCommon::Shader {
|
|
|
|
|
|
|
|
using Tegra::Shader::Attribute;
|
|
|
|
using Tegra::Shader::Instruction;
|
|
|
|
using Tegra::Shader::IpaMode;
|
|
|
|
using Tegra::Shader::Pred;
|
|
|
|
using Tegra::Shader::PredCondition;
|
|
|
|
using Tegra::Shader::PredOperation;
|
|
|
|
using Tegra::Shader::Register;
|
|
|
|
|
|
|
|
Node ShaderIR::StoreNode(NodeData&& node_data) {
|
|
|
|
auto store = std::make_unique<NodeData>(node_data);
|
|
|
|
const Node node = store.get();
|
|
|
|
stored_nodes.push_back(std::move(store));
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
Node ShaderIR::Conditional(Node condition, std::vector<Node>&& code) {
|
|
|
|
return StoreNode(ConditionalNode(condition, std::move(code)));
|
|
|
|
}
|
|
|
|
|
|
|
|
Node ShaderIR::Comment(const std::string& text) {
|
|
|
|
return StoreNode(CommentNode(text));
|
|
|
|
}
|
|
|
|
|
2018-12-21 01:36:17 +00:00
|
|
|
Node ShaderIR::Immediate(u32 value) {
|
|
|
|
return StoreNode(ImmediateNode(value));
|
|
|
|
}
|
|
|
|
|
2018-12-21 01:41:31 +00:00
|
|
|
Node ShaderIR::GetRegister(Register reg) {
|
|
|
|
if (reg != Register::ZeroIndex) {
|
|
|
|
used_registers.insert(static_cast<u32>(reg));
|
|
|
|
}
|
|
|
|
return StoreNode(GprNode(reg));
|
|
|
|
}
|
|
|
|
|
2018-12-21 01:36:17 +00:00
|
|
|
Node ShaderIR::GetImmediate19(Instruction instr) {
|
|
|
|
return Immediate(instr.alu.GetImm20_19());
|
|
|
|
}
|
|
|
|
|
|
|
|
Node ShaderIR::GetImmediate32(Instruction instr) {
|
|
|
|
return Immediate(instr.alu.GetImm20_32());
|
|
|
|
}
|
|
|
|
|
2018-12-21 01:42:47 +00:00
|
|
|
Node ShaderIR::GetConstBuffer(u64 index_, u64 offset_) {
|
|
|
|
const auto index = static_cast<u32>(index_);
|
|
|
|
const auto offset = static_cast<u32>(offset_);
|
|
|
|
|
|
|
|
const auto [entry, is_new] = used_cbufs.try_emplace(index);
|
|
|
|
entry->second.MarkAsUsed(offset);
|
|
|
|
|
|
|
|
return StoreNode(CbufNode(index, Immediate(offset)));
|
|
|
|
}
|
|
|
|
|
|
|
|
Node ShaderIR::GetConstBufferIndirect(u64 index_, u64 offset_, Node node) {
|
|
|
|
const auto index = static_cast<u32>(index_);
|
|
|
|
const auto offset = static_cast<u32>(offset_);
|
|
|
|
|
|
|
|
const auto [entry, is_new] = used_cbufs.try_emplace(index);
|
|
|
|
entry->second.MarkAsUsedIndirect();
|
|
|
|
|
|
|
|
const Node final_offset = Operation(OperationCode::UAdd, NO_PRECISE, node, Immediate(offset));
|
|
|
|
return StoreNode(CbufNode(index, final_offset));
|
|
|
|
}
|
|
|
|
|
2018-12-20 22:09:21 +00:00
|
|
|
Node ShaderIR::GetPredicate(u64 pred_, bool negated) {
|
|
|
|
const auto pred = static_cast<Pred>(pred_);
|
|
|
|
if (pred != Pred::UnusedIndex && pred != Pred::NeverExecute) {
|
|
|
|
used_predicates.insert(pred);
|
|
|
|
}
|
|
|
|
|
|
|
|
return StoreNode(PredicateNode(pred, negated));
|
|
|
|
}
|
|
|
|
|
2018-12-21 01:36:17 +00:00
|
|
|
Node ShaderIR::GetPredicate(bool immediate) {
|
|
|
|
return GetPredicate(static_cast<u64>(immediate ? Pred::UnusedIndex : Pred::NeverExecute));
|
|
|
|
}
|
|
|
|
|
2019-04-30 02:37:09 +00:00
|
|
|
Node ShaderIR::GetInputAttribute(Attribute::Index index, u64 element, Node buffer) {
|
|
|
|
used_input_attributes.emplace(index);
|
|
|
|
return StoreNode(AbufNode(index, static_cast<u32>(element), buffer));
|
2018-12-21 01:45:34 +00:00
|
|
|
}
|
|
|
|
|
2019-04-30 21:12:30 +00:00
|
|
|
Node ShaderIR::GetPhysicalInputAttribute(Tegra::Shader::Register physical_address, Node buffer) {
|
|
|
|
use_physical_attributes = true;
|
|
|
|
return StoreNode(AbufNode(GetRegister(physical_address), buffer));
|
|
|
|
}
|
|
|
|
|
2018-12-21 01:45:34 +00:00
|
|
|
Node ShaderIR::GetOutputAttribute(Attribute::Index index, u64 element, Node buffer) {
|
|
|
|
if (index == Attribute::Index::ClipDistances0123 ||
|
|
|
|
index == Attribute::Index::ClipDistances4567) {
|
|
|
|
const auto clip_index =
|
|
|
|
static_cast<u32>((index == Attribute::Index::ClipDistances4567 ? 1 : 0) + element);
|
|
|
|
used_clip_distances.at(clip_index) = true;
|
|
|
|
}
|
|
|
|
used_output_attributes.insert(index);
|
|
|
|
|
|
|
|
return StoreNode(AbufNode(index, static_cast<u32>(element), buffer));
|
|
|
|
}
|
|
|
|
|
2018-12-21 01:49:59 +00:00
|
|
|
Node ShaderIR::GetInternalFlag(InternalFlag flag, bool negated) {
|
|
|
|
const Node node = StoreNode(InternalFlagNode(flag));
|
|
|
|
if (negated) {
|
|
|
|
return Operation(OperationCode::LogicalNegate, node);
|
|
|
|
}
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2018-12-21 01:51:38 +00:00
|
|
|
Node ShaderIR::GetLocalMemory(Node address) {
|
|
|
|
return StoreNode(LmemNode(address));
|
|
|
|
}
|
|
|
|
|
2018-12-27 04:50:22 +00:00
|
|
|
Node ShaderIR::GetTemporal(u32 id) {
|
|
|
|
return GetRegister(Register::ZeroIndex + 1 + id);
|
|
|
|
}
|
|
|
|
|
2018-12-21 01:56:08 +00:00
|
|
|
Node ShaderIR::GetOperandAbsNegFloat(Node value, bool absolute, bool negate) {
|
|
|
|
if (absolute) {
|
|
|
|
value = Operation(OperationCode::FAbsolute, NO_PRECISE, value);
|
|
|
|
}
|
|
|
|
if (negate) {
|
|
|
|
value = Operation(OperationCode::FNegate, NO_PRECISE, value);
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
Node ShaderIR::GetSaturatedFloat(Node value, bool saturate) {
|
|
|
|
if (!saturate) {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
const Node positive_zero = Immediate(std::copysignf(0, 1));
|
|
|
|
const Node positive_one = Immediate(1.0f);
|
|
|
|
return Operation(OperationCode::FClamp, NO_PRECISE, value, positive_zero, positive_one);
|
|
|
|
}
|
|
|
|
|
2018-12-21 01:57:16 +00:00
|
|
|
Node ShaderIR::ConvertIntegerSize(Node value, Tegra::Shader::Register::Size size, bool is_signed) {
|
|
|
|
switch (size) {
|
|
|
|
case Register::Size::Byte:
|
|
|
|
value = SignedOperation(OperationCode::ILogicalShiftLeft, is_signed, NO_PRECISE, value,
|
|
|
|
Immediate(24));
|
|
|
|
value = SignedOperation(OperationCode::IArithmeticShiftRight, is_signed, NO_PRECISE, value,
|
|
|
|
Immediate(24));
|
|
|
|
return value;
|
|
|
|
case Register::Size::Short:
|
|
|
|
value = SignedOperation(OperationCode::ILogicalShiftLeft, is_signed, NO_PRECISE, value,
|
|
|
|
Immediate(16));
|
|
|
|
value = SignedOperation(OperationCode::IArithmeticShiftRight, is_signed, NO_PRECISE, value,
|
|
|
|
Immediate(16));
|
|
|
|
case Register::Size::Word:
|
|
|
|
// Default - do nothing
|
|
|
|
return value;
|
|
|
|
default:
|
|
|
|
UNREACHABLE_MSG("Unimplemented conversion size: {}", static_cast<u32>(size));
|
2018-12-21 21:47:22 +00:00
|
|
|
return value;
|
2018-12-21 01:57:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Node ShaderIR::GetOperandAbsNegInteger(Node value, bool absolute, bool negate, bool is_signed) {
|
|
|
|
if (!is_signed) {
|
|
|
|
// Absolute or negate on an unsigned is pointless
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
if (absolute) {
|
|
|
|
value = Operation(OperationCode::IAbsolute, NO_PRECISE, value);
|
|
|
|
}
|
|
|
|
if (negate) {
|
|
|
|
value = Operation(OperationCode::INegate, NO_PRECISE, value);
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2018-12-21 01:58:33 +00:00
|
|
|
Node ShaderIR::UnpackHalfImmediate(Instruction instr, bool has_negation) {
|
|
|
|
const Node value = Immediate(instr.half_imm.PackImmediates());
|
|
|
|
if (!has_negation) {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
const Node first_negate = GetPredicate(instr.half_imm.first_negate != 0);
|
|
|
|
const Node second_negate = GetPredicate(instr.half_imm.second_negate != 0);
|
|
|
|
|
2019-04-15 22:48:11 +00:00
|
|
|
return Operation(OperationCode::HNegate, NO_PRECISE, value, first_negate, second_negate);
|
|
|
|
}
|
|
|
|
|
|
|
|
Node ShaderIR::UnpackHalfFloat(Node value, Tegra::Shader::HalfType type) {
|
|
|
|
return Operation(OperationCode::HUnpack, type, value);
|
2018-12-21 01:58:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Node ShaderIR::HalfMerge(Node dest, Node src, Tegra::Shader::HalfMerge merge) {
|
|
|
|
switch (merge) {
|
|
|
|
case Tegra::Shader::HalfMerge::H0_H1:
|
|
|
|
return src;
|
|
|
|
case Tegra::Shader::HalfMerge::F32:
|
|
|
|
return Operation(OperationCode::HMergeF32, src);
|
|
|
|
case Tegra::Shader::HalfMerge::Mrg_H0:
|
|
|
|
return Operation(OperationCode::HMergeH0, dest, src);
|
|
|
|
case Tegra::Shader::HalfMerge::Mrg_H1:
|
|
|
|
return Operation(OperationCode::HMergeH1, dest, src);
|
|
|
|
}
|
|
|
|
UNREACHABLE();
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
|
|
|
|
Node ShaderIR::GetOperandAbsNegHalf(Node value, bool absolute, bool negate) {
|
|
|
|
if (absolute) {
|
2019-04-15 22:48:11 +00:00
|
|
|
value = Operation(OperationCode::HAbsolute, NO_PRECISE, value);
|
2018-12-21 01:58:33 +00:00
|
|
|
}
|
|
|
|
if (negate) {
|
2019-04-15 22:48:11 +00:00
|
|
|
value = Operation(OperationCode::HNegate, NO_PRECISE, value, GetPredicate(true),
|
2018-12-21 01:58:33 +00:00
|
|
|
GetPredicate(true));
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2019-04-09 21:41:41 +00:00
|
|
|
Node ShaderIR::GetSaturatedHalfFloat(Node value, bool saturate) {
|
|
|
|
if (!saturate) {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
const Node positive_zero = Immediate(std::copysignf(0, 1));
|
|
|
|
const Node positive_one = Immediate(1.0f);
|
2019-04-15 22:48:11 +00:00
|
|
|
return Operation(OperationCode::HClamp, NO_PRECISE, value, positive_zero, positive_one);
|
2019-04-09 21:41:41 +00:00
|
|
|
}
|
|
|
|
|
2018-12-21 02:01:03 +00:00
|
|
|
Node ShaderIR::GetPredicateComparisonFloat(PredCondition condition, Node op_a, Node op_b) {
|
2019-04-09 20:08:07 +00:00
|
|
|
const std::unordered_map<PredCondition, OperationCode> PredicateComparisonTable = {
|
2018-12-21 02:01:03 +00:00
|
|
|
{PredCondition::LessThan, OperationCode::LogicalFLessThan},
|
|
|
|
{PredCondition::Equal, OperationCode::LogicalFEqual},
|
|
|
|
{PredCondition::LessEqual, OperationCode::LogicalFLessEqual},
|
|
|
|
{PredCondition::GreaterThan, OperationCode::LogicalFGreaterThan},
|
|
|
|
{PredCondition::NotEqual, OperationCode::LogicalFNotEqual},
|
|
|
|
{PredCondition::GreaterEqual, OperationCode::LogicalFGreaterEqual},
|
|
|
|
{PredCondition::LessThanWithNan, OperationCode::LogicalFLessThan},
|
|
|
|
{PredCondition::NotEqualWithNan, OperationCode::LogicalFNotEqual},
|
|
|
|
{PredCondition::LessEqualWithNan, OperationCode::LogicalFLessEqual},
|
|
|
|
{PredCondition::GreaterThanWithNan, OperationCode::LogicalFGreaterThan},
|
|
|
|
{PredCondition::GreaterEqualWithNan, OperationCode::LogicalFGreaterEqual}};
|
|
|
|
|
|
|
|
const auto comparison{PredicateComparisonTable.find(condition)};
|
|
|
|
UNIMPLEMENTED_IF_MSG(comparison == PredicateComparisonTable.end(),
|
|
|
|
"Unknown predicate comparison operation");
|
|
|
|
|
|
|
|
Node predicate = Operation(comparison->second, NO_PRECISE, op_a, op_b);
|
|
|
|
|
|
|
|
if (condition == PredCondition::LessThanWithNan ||
|
|
|
|
condition == PredCondition::NotEqualWithNan ||
|
|
|
|
condition == PredCondition::LessEqualWithNan ||
|
|
|
|
condition == PredCondition::GreaterThanWithNan ||
|
|
|
|
condition == PredCondition::GreaterEqualWithNan) {
|
|
|
|
|
|
|
|
predicate = Operation(OperationCode::LogicalOr, predicate,
|
|
|
|
Operation(OperationCode::LogicalFIsNan, op_a));
|
|
|
|
predicate = Operation(OperationCode::LogicalOr, predicate,
|
|
|
|
Operation(OperationCode::LogicalFIsNan, op_b));
|
|
|
|
}
|
|
|
|
|
|
|
|
return predicate;
|
|
|
|
}
|
|
|
|
|
|
|
|
Node ShaderIR::GetPredicateComparisonInteger(PredCondition condition, bool is_signed, Node op_a,
|
|
|
|
Node op_b) {
|
2019-04-09 20:08:07 +00:00
|
|
|
const std::unordered_map<PredCondition, OperationCode> PredicateComparisonTable = {
|
2018-12-21 02:01:03 +00:00
|
|
|
{PredCondition::LessThan, OperationCode::LogicalILessThan},
|
|
|
|
{PredCondition::Equal, OperationCode::LogicalIEqual},
|
|
|
|
{PredCondition::LessEqual, OperationCode::LogicalILessEqual},
|
|
|
|
{PredCondition::GreaterThan, OperationCode::LogicalIGreaterThan},
|
|
|
|
{PredCondition::NotEqual, OperationCode::LogicalINotEqual},
|
|
|
|
{PredCondition::GreaterEqual, OperationCode::LogicalIGreaterEqual},
|
|
|
|
{PredCondition::LessThanWithNan, OperationCode::LogicalILessThan},
|
|
|
|
{PredCondition::NotEqualWithNan, OperationCode::LogicalINotEqual},
|
|
|
|
{PredCondition::LessEqualWithNan, OperationCode::LogicalILessEqual},
|
|
|
|
{PredCondition::GreaterThanWithNan, OperationCode::LogicalIGreaterThan},
|
|
|
|
{PredCondition::GreaterEqualWithNan, OperationCode::LogicalIGreaterEqual}};
|
|
|
|
|
|
|
|
const auto comparison{PredicateComparisonTable.find(condition)};
|
|
|
|
UNIMPLEMENTED_IF_MSG(comparison == PredicateComparisonTable.end(),
|
|
|
|
"Unknown predicate comparison operation");
|
|
|
|
|
|
|
|
Node predicate = SignedOperation(comparison->second, is_signed, NO_PRECISE, op_a, op_b);
|
|
|
|
|
|
|
|
UNIMPLEMENTED_IF_MSG(condition == PredCondition::LessThanWithNan ||
|
|
|
|
condition == PredCondition::NotEqualWithNan ||
|
|
|
|
condition == PredCondition::LessEqualWithNan ||
|
|
|
|
condition == PredCondition::GreaterThanWithNan ||
|
|
|
|
condition == PredCondition::GreaterEqualWithNan,
|
|
|
|
"NaN comparisons for integers are not implemented");
|
|
|
|
return predicate;
|
|
|
|
}
|
|
|
|
|
2019-04-15 22:48:11 +00:00
|
|
|
Node ShaderIR::GetPredicateComparisonHalf(Tegra::Shader::PredCondition condition, Node op_a,
|
|
|
|
Node op_b) {
|
2019-04-09 20:08:07 +00:00
|
|
|
const std::unordered_map<PredCondition, OperationCode> PredicateComparisonTable = {
|
2018-12-23 23:59:49 +00:00
|
|
|
{PredCondition::LessThan, OperationCode::Logical2HLessThan},
|
|
|
|
{PredCondition::Equal, OperationCode::Logical2HEqual},
|
|
|
|
{PredCondition::LessEqual, OperationCode::Logical2HLessEqual},
|
|
|
|
{PredCondition::GreaterThan, OperationCode::Logical2HGreaterThan},
|
|
|
|
{PredCondition::NotEqual, OperationCode::Logical2HNotEqual},
|
|
|
|
{PredCondition::GreaterEqual, OperationCode::Logical2HGreaterEqual},
|
2019-04-09 20:33:48 +00:00
|
|
|
{PredCondition::LessThanWithNan, OperationCode::Logical2HLessThanWithNan},
|
|
|
|
{PredCondition::NotEqualWithNan, OperationCode::Logical2HNotEqualWithNan},
|
|
|
|
{PredCondition::LessEqualWithNan, OperationCode::Logical2HLessEqualWithNan},
|
|
|
|
{PredCondition::GreaterThanWithNan, OperationCode::Logical2HGreaterThanWithNan},
|
|
|
|
{PredCondition::GreaterEqualWithNan, OperationCode::Logical2HGreaterEqualWithNan}};
|
2018-12-21 02:01:03 +00:00
|
|
|
|
|
|
|
const auto comparison{PredicateComparisonTable.find(condition)};
|
|
|
|
UNIMPLEMENTED_IF_MSG(comparison == PredicateComparisonTable.end(),
|
|
|
|
"Unknown predicate comparison operation");
|
|
|
|
|
2019-04-15 22:48:11 +00:00
|
|
|
const Node predicate = Operation(comparison->second, NO_PRECISE, op_a, op_b);
|
2018-12-21 02:01:03 +00:00
|
|
|
|
|
|
|
return predicate;
|
|
|
|
}
|
|
|
|
|
2018-12-21 02:40:54 +00:00
|
|
|
OperationCode ShaderIR::GetPredicateCombiner(PredOperation operation) {
|
2019-04-09 20:08:07 +00:00
|
|
|
const std::unordered_map<PredOperation, OperationCode> PredicateOperationTable = {
|
2018-12-21 02:40:54 +00:00
|
|
|
{PredOperation::And, OperationCode::LogicalAnd},
|
|
|
|
{PredOperation::Or, OperationCode::LogicalOr},
|
|
|
|
{PredOperation::Xor, OperationCode::LogicalXor},
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto op = PredicateOperationTable.find(operation);
|
|
|
|
UNIMPLEMENTED_IF_MSG(op == PredicateOperationTable.end(), "Unknown predicate operation");
|
|
|
|
return op->second;
|
|
|
|
}
|
|
|
|
|
2018-12-21 02:42:02 +00:00
|
|
|
Node ShaderIR::GetConditionCode(Tegra::Shader::ConditionCode cc) {
|
|
|
|
switch (cc) {
|
|
|
|
case Tegra::Shader::ConditionCode::NEU:
|
|
|
|
return GetInternalFlag(InternalFlag::Zero, true);
|
|
|
|
default:
|
|
|
|
UNIMPLEMENTED_MSG("Unimplemented condition code: {}", static_cast<u32>(cc));
|
|
|
|
return GetPredicate(static_cast<u64>(Pred::NeverExecute));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-30 05:09:40 +00:00
|
|
|
void ShaderIR::SetRegister(NodeBlock& bb, Register dest, Node src) {
|
2018-12-21 01:53:43 +00:00
|
|
|
bb.push_back(Operation(OperationCode::Assign, GetRegister(dest), src));
|
|
|
|
}
|
|
|
|
|
2019-01-30 05:09:40 +00:00
|
|
|
void ShaderIR::SetPredicate(NodeBlock& bb, u64 dest, Node src) {
|
2018-12-21 01:53:43 +00:00
|
|
|
bb.push_back(Operation(OperationCode::LogicalAssign, GetPredicate(dest), src));
|
|
|
|
}
|
|
|
|
|
2019-01-30 05:09:40 +00:00
|
|
|
void ShaderIR::SetInternalFlag(NodeBlock& bb, InternalFlag flag, Node value) {
|
2018-12-21 01:53:43 +00:00
|
|
|
bb.push_back(Operation(OperationCode::LogicalAssign, GetInternalFlag(flag), value));
|
|
|
|
}
|
|
|
|
|
2019-01-30 05:09:40 +00:00
|
|
|
void ShaderIR::SetLocalMemory(NodeBlock& bb, Node address, Node value) {
|
2018-12-21 01:53:43 +00:00
|
|
|
bb.push_back(Operation(OperationCode::Assign, GetLocalMemory(address), value));
|
|
|
|
}
|
|
|
|
|
2019-01-30 05:09:40 +00:00
|
|
|
void ShaderIR::SetTemporal(NodeBlock& bb, u32 id, Node value) {
|
2018-12-27 04:50:22 +00:00
|
|
|
SetRegister(bb, Register::ZeroIndex + 1 + id, value);
|
|
|
|
}
|
|
|
|
|
2019-01-30 05:09:40 +00:00
|
|
|
void ShaderIR::SetInternalFlagsFromFloat(NodeBlock& bb, Node value, bool sets_cc) {
|
2018-12-27 19:50:36 +00:00
|
|
|
if (!sets_cc) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const Node zerop = Operation(OperationCode::LogicalFEqual, value, Immediate(0.0f));
|
|
|
|
SetInternalFlag(bb, InternalFlag::Zero, zerop);
|
|
|
|
LOG_WARNING(HW_GPU, "Condition codes implementation is incomplete");
|
|
|
|
}
|
|
|
|
|
2019-01-30 05:09:40 +00:00
|
|
|
void ShaderIR::SetInternalFlagsFromInteger(NodeBlock& bb, Node value, bool sets_cc) {
|
2018-12-27 19:50:36 +00:00
|
|
|
if (!sets_cc) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const Node zerop = Operation(OperationCode::LogicalIEqual, value, Immediate(0));
|
|
|
|
SetInternalFlag(bb, InternalFlag::Zero, zerop);
|
|
|
|
LOG_WARNING(HW_GPU, "Condition codes implementation is incomplete");
|
|
|
|
}
|
|
|
|
|
2018-12-26 05:58:47 +00:00
|
|
|
Node ShaderIR::BitfieldExtract(Node value, u32 offset, u32 bits) {
|
|
|
|
return Operation(OperationCode::UBitfieldExtract, NO_PRECISE, value, Immediate(offset),
|
|
|
|
Immediate(bits));
|
|
|
|
}
|
|
|
|
|
2018-12-20 22:09:21 +00:00
|
|
|
/*static*/ OperationCode ShaderIR::SignedToUnsignedCode(OperationCode operation_code,
|
|
|
|
bool is_signed) {
|
|
|
|
if (is_signed) {
|
|
|
|
return operation_code;
|
|
|
|
}
|
|
|
|
switch (operation_code) {
|
|
|
|
case OperationCode::FCastInteger:
|
|
|
|
return OperationCode::FCastUInteger;
|
|
|
|
case OperationCode::IAdd:
|
|
|
|
return OperationCode::UAdd;
|
|
|
|
case OperationCode::IMul:
|
|
|
|
return OperationCode::UMul;
|
|
|
|
case OperationCode::IDiv:
|
|
|
|
return OperationCode::UDiv;
|
|
|
|
case OperationCode::IMin:
|
|
|
|
return OperationCode::UMin;
|
|
|
|
case OperationCode::IMax:
|
|
|
|
return OperationCode::UMax;
|
|
|
|
case OperationCode::ICastFloat:
|
|
|
|
return OperationCode::UCastFloat;
|
|
|
|
case OperationCode::ICastUnsigned:
|
|
|
|
return OperationCode::UCastSigned;
|
|
|
|
case OperationCode::ILogicalShiftLeft:
|
|
|
|
return OperationCode::ULogicalShiftLeft;
|
|
|
|
case OperationCode::ILogicalShiftRight:
|
|
|
|
return OperationCode::ULogicalShiftRight;
|
|
|
|
case OperationCode::IArithmeticShiftRight:
|
|
|
|
return OperationCode::UArithmeticShiftRight;
|
|
|
|
case OperationCode::IBitwiseAnd:
|
|
|
|
return OperationCode::UBitwiseAnd;
|
|
|
|
case OperationCode::IBitwiseOr:
|
|
|
|
return OperationCode::UBitwiseOr;
|
|
|
|
case OperationCode::IBitwiseXor:
|
|
|
|
return OperationCode::UBitwiseXor;
|
|
|
|
case OperationCode::IBitwiseNot:
|
|
|
|
return OperationCode::UBitwiseNot;
|
|
|
|
case OperationCode::IBitfieldInsert:
|
|
|
|
return OperationCode::UBitfieldInsert;
|
2018-12-23 04:33:47 +00:00
|
|
|
case OperationCode::IBitCount:
|
|
|
|
return OperationCode::UBitCount;
|
2018-12-20 22:09:21 +00:00
|
|
|
case OperationCode::LogicalILessThan:
|
|
|
|
return OperationCode::LogicalULessThan;
|
|
|
|
case OperationCode::LogicalIEqual:
|
|
|
|
return OperationCode::LogicalUEqual;
|
|
|
|
case OperationCode::LogicalILessEqual:
|
|
|
|
return OperationCode::LogicalULessEqual;
|
|
|
|
case OperationCode::LogicalIGreaterThan:
|
|
|
|
return OperationCode::LogicalUGreaterThan;
|
|
|
|
case OperationCode::LogicalINotEqual:
|
|
|
|
return OperationCode::LogicalUNotEqual;
|
|
|
|
case OperationCode::LogicalIGreaterEqual:
|
|
|
|
return OperationCode::LogicalUGreaterEqual;
|
|
|
|
case OperationCode::INegate:
|
|
|
|
UNREACHABLE_MSG("Can't negate an unsigned integer");
|
2019-04-03 07:33:36 +00:00
|
|
|
return {};
|
2018-12-20 22:09:21 +00:00
|
|
|
case OperationCode::IAbsolute:
|
|
|
|
UNREACHABLE_MSG("Can't apply absolute to an unsigned integer");
|
2019-04-03 07:33:36 +00:00
|
|
|
return {};
|
|
|
|
default:
|
|
|
|
UNREACHABLE_MSG("Unknown signed operation with code={}", static_cast<u32>(operation_code));
|
|
|
|
return {};
|
2018-12-20 22:09:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-03 07:33:36 +00:00
|
|
|
} // namespace VideoCommon::Shader
|