yuzu/src/shader_recompiler/frontend/ir/ir_emitter.cpp

963 lines
29 KiB
C++
Raw Normal View History

2021-01-09 06:30:07 +00:00
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "common/bit_cast.h"
#include "shader_recompiler/frontend/ir/ir_emitter.h"
#include "shader_recompiler/frontend/ir/value.h"
namespace Shader::IR {
[[noreturn]] static void ThrowInvalidType(Type type) {
throw InvalidArgument("Invalid type {}", type);
}
U1 IREmitter::Imm1(bool value) const {
return U1{Value{value}};
}
U8 IREmitter::Imm8(u8 value) const {
return U8{Value{value}};
}
U16 IREmitter::Imm16(u16 value) const {
return U16{Value{value}};
}
U32 IREmitter::Imm32(u32 value) const {
return U32{Value{value}};
}
U32 IREmitter::Imm32(s32 value) const {
return U32{Value{static_cast<u32>(value)}};
}
2021-02-05 22:19:36 +00:00
F32 IREmitter::Imm32(f32 value) const {
return F32{Value{value}};
2021-01-09 06:30:07 +00:00
}
U64 IREmitter::Imm64(u64 value) const {
return U64{Value{value}};
}
2021-02-05 22:19:36 +00:00
F64 IREmitter::Imm64(f64 value) const {
return F64{Value{value}};
2021-01-09 06:30:07 +00:00
}
void IREmitter::Branch(Block* label) {
label->AddImmediatePredecessor(block);
2021-02-14 04:24:32 +00:00
block->SetBranch(label);
2021-01-09 06:30:07 +00:00
Inst(Opcode::Branch, label);
}
void IREmitter::BranchConditional(const U1& condition, Block* true_label, Block* false_label) {
2021-02-14 04:24:32 +00:00
block->SetBranches(IR::Condition{true}, true_label, false_label);
true_label->AddImmediatePredecessor(block);
false_label->AddImmediatePredecessor(block);
Inst(Opcode::BranchConditional, condition, true_label, false_label);
2021-01-09 06:30:07 +00:00
}
void IREmitter::LoopMerge(Block* merge_block, Block* continue_target) {
Inst(Opcode::LoopMerge, merge_block, continue_target);
2021-01-09 06:30:07 +00:00
}
void IREmitter::SelectionMerge(Block* merge_block) {
Inst(Opcode::SelectionMerge, merge_block);
2021-01-09 06:30:07 +00:00
}
void IREmitter::Return() {
Inst(Opcode::Return);
2021-01-09 06:30:07 +00:00
}
U32 IREmitter::GetReg(IR::Reg reg) {
return Inst<U32>(Opcode::GetRegister, reg);
}
void IREmitter::SetReg(IR::Reg reg, const U32& value) {
Inst(Opcode::SetRegister, reg, value);
}
U1 IREmitter::GetPred(IR::Pred pred, bool is_negated) {
const U1 value{Inst<U1>(Opcode::GetPred, pred)};
if (is_negated) {
return Inst<U1>(Opcode::LogicalNot, value);
} else {
return value;
}
}
U1 IREmitter::GetGotoVariable(u32 id) {
return Inst<U1>(Opcode::GetGotoVariable, id);
}
void IREmitter::SetGotoVariable(u32 id, const U1& value) {
Inst(Opcode::SetGotoVariable, id, value);
}
2021-01-09 06:30:07 +00:00
void IREmitter::SetPred(IR::Pred pred, const U1& value) {
Inst(Opcode::SetPred, pred, value);
}
U32 IREmitter::GetCbuf(const U32& binding, const U32& byte_offset) {
return Inst<U32>(Opcode::GetCbuf, binding, byte_offset);
}
U1 IREmitter::GetZFlag() {
return Inst<U1>(Opcode::GetZFlag);
}
U1 IREmitter::GetSFlag() {
return Inst<U1>(Opcode::GetSFlag);
}
U1 IREmitter::GetCFlag() {
return Inst<U1>(Opcode::GetCFlag);
}
U1 IREmitter::GetOFlag() {
return Inst<U1>(Opcode::GetOFlag);
}
void IREmitter::SetZFlag(const U1& value) {
Inst(Opcode::SetZFlag, value);
}
void IREmitter::SetSFlag(const U1& value) {
Inst(Opcode::SetSFlag, value);
}
void IREmitter::SetCFlag(const U1& value) {
Inst(Opcode::SetCFlag, value);
}
void IREmitter::SetOFlag(const U1& value) {
Inst(Opcode::SetOFlag, value);
}
2021-02-24 08:21:30 +00:00
static U1 GetFlowTest(IREmitter& ir, FlowTest flow_test) {
switch (flow_test) {
case FlowTest::T:
return ir.Imm1(true);
case FlowTest::F:
return ir.Imm1(false);
case FlowTest::EQ:
// TODO: Test this
return ir.GetZFlag();
case FlowTest::NE:
// TODO: Test this
return ir.LogicalNot(ir.GetZFlag());
default:
throw NotImplementedException("Flow test {}", flow_test);
}
2021-02-24 08:21:30 +00:00
}
U1 IREmitter::Condition(IR::Condition cond) {
const FlowTest flow_test{cond.FlowTest()};
const auto [pred, is_negated]{cond.Pred()};
2021-02-24 08:21:30 +00:00
return LogicalAnd(GetPred(pred, is_negated), GetFlowTest(*this, flow_test));
}
2021-02-05 22:19:36 +00:00
F32 IREmitter::GetAttribute(IR::Attribute attribute) {
return Inst<F32>(Opcode::GetAttribute, attribute);
2021-01-09 06:30:07 +00:00
}
2021-02-05 22:19:36 +00:00
void IREmitter::SetAttribute(IR::Attribute attribute, const F32& value) {
2021-01-09 06:30:07 +00:00
Inst(Opcode::SetAttribute, attribute, value);
}
2021-02-03 19:43:04 +00:00
U32 IREmitter::WorkgroupIdX() {
2021-02-08 05:54:35 +00:00
return U32{CompositeExtract(Inst(Opcode::WorkgroupId), 0)};
2021-02-03 19:43:04 +00:00
}
U32 IREmitter::WorkgroupIdY() {
2021-02-08 05:54:35 +00:00
return U32{CompositeExtract(Inst(Opcode::WorkgroupId), 1)};
2021-02-03 19:43:04 +00:00
}
U32 IREmitter::WorkgroupIdZ() {
2021-02-08 05:54:35 +00:00
return U32{CompositeExtract(Inst(Opcode::WorkgroupId), 2)};
2021-02-03 19:43:04 +00:00
}
U32 IREmitter::LocalInvocationIdX() {
2021-02-08 05:54:35 +00:00
return U32{CompositeExtract(Inst(Opcode::LocalInvocationId), 0)};
2021-02-03 19:43:04 +00:00
}
U32 IREmitter::LocalInvocationIdY() {
2021-02-08 05:54:35 +00:00
return U32{CompositeExtract(Inst(Opcode::LocalInvocationId), 1)};
2021-02-03 19:43:04 +00:00
}
U32 IREmitter::LocalInvocationIdZ() {
2021-02-08 05:54:35 +00:00
return U32{CompositeExtract(Inst(Opcode::LocalInvocationId), 2)};
2021-02-03 19:43:04 +00:00
}
U32 IREmitter::LoadGlobalU8(const U64& address) {
return Inst<U32>(Opcode::LoadGlobalU8, address);
}
U32 IREmitter::LoadGlobalS8(const U64& address) {
return Inst<U32>(Opcode::LoadGlobalS8, address);
}
U32 IREmitter::LoadGlobalU16(const U64& address) {
return Inst<U32>(Opcode::LoadGlobalU16, address);
}
U32 IREmitter::LoadGlobalS16(const U64& address) {
return Inst<U32>(Opcode::LoadGlobalS16, address);
}
U32 IREmitter::LoadGlobal32(const U64& address) {
return Inst<U32>(Opcode::LoadGlobal32, address);
}
Value IREmitter::LoadGlobal64(const U64& address) {
return Inst<Value>(Opcode::LoadGlobal64, address);
}
Value IREmitter::LoadGlobal128(const U64& address) {
return Inst<Value>(Opcode::LoadGlobal128, address);
}
2021-01-09 06:30:07 +00:00
void IREmitter::WriteGlobalU8(const U64& address, const U32& value) {
Inst(Opcode::WriteGlobalU8, address, value);
}
void IREmitter::WriteGlobalS8(const U64& address, const U32& value) {
Inst(Opcode::WriteGlobalS8, address, value);
}
void IREmitter::WriteGlobalU16(const U64& address, const U32& value) {
Inst(Opcode::WriteGlobalU16, address, value);
}
void IREmitter::WriteGlobalS16(const U64& address, const U32& value) {
Inst(Opcode::WriteGlobalS16, address, value);
}
void IREmitter::WriteGlobal32(const U64& address, const U32& value) {
Inst(Opcode::WriteGlobal32, address, value);
}
void IREmitter::WriteGlobal64(const U64& address, const IR::Value& vector) {
Inst(Opcode::WriteGlobal64, address, vector);
}
void IREmitter::WriteGlobal128(const U64& address, const IR::Value& vector) {
Inst(Opcode::WriteGlobal128, address, vector);
}
U1 IREmitter::GetZeroFromOp(const Value& op) {
return Inst<U1>(Opcode::GetZeroFromOp, op);
}
U1 IREmitter::GetSignFromOp(const Value& op) {
return Inst<U1>(Opcode::GetSignFromOp, op);
}
U1 IREmitter::GetCarryFromOp(const Value& op) {
return Inst<U1>(Opcode::GetCarryFromOp, op);
}
U1 IREmitter::GetOverflowFromOp(const Value& op) {
return Inst<U1>(Opcode::GetOverflowFromOp, op);
}
2021-02-05 22:19:36 +00:00
F16F32F64 IREmitter::FPAdd(const F16F32F64& a, const F16F32F64& b, FpControl control) {
2021-01-09 06:30:07 +00:00
if (a.Type() != a.Type()) {
throw InvalidArgument("Mismatching types {} and {}", a.Type(), b.Type());
}
switch (a.Type()) {
2021-02-05 22:19:36 +00:00
case Type::F16:
return Inst<F16>(Opcode::FPAdd16, Flags{control}, a, b);
case Type::F32:
return Inst<F32>(Opcode::FPAdd32, Flags{control}, a, b);
case Type::F64:
return Inst<F64>(Opcode::FPAdd64, Flags{control}, a, b);
2021-01-09 06:30:07 +00:00
default:
ThrowInvalidType(a.Type());
}
}
2021-02-05 22:19:36 +00:00
Value IREmitter::CompositeConstruct(const Value& e1, const Value& e2) {
2021-01-09 06:30:07 +00:00
if (e1.Type() != e2.Type()) {
2021-02-03 19:43:04 +00:00
throw InvalidArgument("Mismatching types {} and {}", e1.Type(), e2.Type());
2021-01-09 06:30:07 +00:00
}
2021-02-05 22:19:36 +00:00
switch (e1.Type()) {
case Type::U32:
return Inst(Opcode::CompositeConstructU32x2, e1, e2);
case Type::F16:
return Inst(Opcode::CompositeConstructF16x2, e1, e2);
case Type::F32:
return Inst(Opcode::CompositeConstructF32x2, e1, e2);
case Type::F64:
return Inst(Opcode::CompositeConstructF64x2, e1, e2);
default:
ThrowInvalidType(e1.Type());
}
2021-01-09 06:30:07 +00:00
}
2021-02-05 22:19:36 +00:00
Value IREmitter::CompositeConstruct(const Value& e1, const Value& e2, const Value& e3) {
2021-01-09 06:30:07 +00:00
if (e1.Type() != e2.Type() || e1.Type() != e3.Type()) {
2021-02-03 19:43:04 +00:00
throw InvalidArgument("Mismatching types {}, {}, and {}", e1.Type(), e2.Type(), e3.Type());
2021-01-09 06:30:07 +00:00
}
2021-02-05 22:19:36 +00:00
switch (e1.Type()) {
case Type::U32:
return Inst(Opcode::CompositeConstructU32x3, e1, e2, e3);
case Type::F16:
return Inst(Opcode::CompositeConstructF16x3, e1, e2, e3);
case Type::F32:
return Inst(Opcode::CompositeConstructF32x3, e1, e2, e3);
case Type::F64:
return Inst(Opcode::CompositeConstructF64x3, e1, e2, e3);
default:
ThrowInvalidType(e1.Type());
}
2021-01-09 06:30:07 +00:00
}
2021-02-05 22:19:36 +00:00
Value IREmitter::CompositeConstruct(const Value& e1, const Value& e2, const Value& e3,
const Value& e4) {
2021-01-09 06:30:07 +00:00
if (e1.Type() != e2.Type() || e1.Type() != e3.Type() || e1.Type() != e4.Type()) {
2021-02-03 19:43:04 +00:00
throw InvalidArgument("Mismatching types {}, {}, {}, and {}", e1.Type(), e2.Type(),
e3.Type(), e4.Type());
2021-01-09 06:30:07 +00:00
}
2021-02-05 22:19:36 +00:00
switch (e1.Type()) {
case Type::U32:
return Inst(Opcode::CompositeConstructU32x4, e1, e2, e3, e4);
case Type::F16:
return Inst(Opcode::CompositeConstructF16x4, e1, e2, e3, e4);
case Type::F32:
return Inst(Opcode::CompositeConstructF32x4, e1, e2, e3, e4);
case Type::F64:
return Inst(Opcode::CompositeConstructF64x4, e1, e2, e3, e4);
default:
ThrowInvalidType(e1.Type());
}
2021-01-09 06:30:07 +00:00
}
2021-02-05 22:19:36 +00:00
Value IREmitter::CompositeExtract(const Value& vector, size_t element) {
const auto read = [&](Opcode opcode, size_t limit) -> Value {
if (element >= limit) {
throw InvalidArgument("Out of bounds element {}", element);
}
return Inst(opcode, vector, Value{static_cast<u32>(element)});
};
switch (vector.Type()) {
case Type::U32x2:
return read(Opcode::CompositeExtractU32x2, 2);
case Type::U32x3:
return read(Opcode::CompositeExtractU32x3, 3);
case Type::U32x4:
return read(Opcode::CompositeExtractU32x4, 4);
case Type::F16x2:
return read(Opcode::CompositeExtractF16x2, 2);
case Type::F16x3:
return read(Opcode::CompositeExtractF16x3, 3);
case Type::F16x4:
return read(Opcode::CompositeExtractF16x4, 4);
case Type::F32x2:
return read(Opcode::CompositeExtractF32x2, 2);
case Type::F32x3:
return read(Opcode::CompositeExtractF32x3, 3);
case Type::F32x4:
return read(Opcode::CompositeExtractF32x4, 4);
case Type::F64x2:
return read(Opcode::CompositeExtractF64x2, 2);
case Type::F64x3:
return read(Opcode::CompositeExtractF64x3, 3);
case Type::F64x4:
return read(Opcode::CompositeExtractF64x4, 4);
default:
ThrowInvalidType(vector.Type());
2021-01-09 06:30:07 +00:00
}
}
Value IREmitter::Select(const U1& condition, const Value& true_value, const Value& false_value) {
2021-02-03 19:43:04 +00:00
if (true_value.Type() != false_value.Type()) {
throw InvalidArgument("Mismatching types {} and {}", true_value.Type(), false_value.Type());
}
switch (true_value.Type()) {
case Type::U8:
return Inst(Opcode::SelectU8, condition, true_value, false_value);
2021-02-03 19:43:04 +00:00
case Type::U16:
return Inst(Opcode::SelectU16, condition, true_value, false_value);
2021-02-03 19:43:04 +00:00
case Type::U32:
return Inst(Opcode::SelectU32, condition, true_value, false_value);
2021-02-03 19:43:04 +00:00
case Type::U64:
return Inst(Opcode::SelectU64, condition, true_value, false_value);
case Type::F32:
return Inst(Opcode::SelectF32, condition, true_value, false_value);
2021-02-03 19:43:04 +00:00
default:
throw InvalidArgument("Invalid type {}", true_value.Type());
}
}
2021-02-05 22:19:36 +00:00
template <>
IR::U32 IREmitter::BitCast<IR::U32, IR::F32>(const IR::F32& value) {
return Inst<IR::U32>(Opcode::BitCastU32F32, value);
}
template <>
IR::F32 IREmitter::BitCast<IR::F32, IR::U32>(const IR::U32& value) {
return Inst<IR::F32>(Opcode::BitCastF32U32, value);
}
template <>
IR::U16 IREmitter::BitCast<IR::U16, IR::F16>(const IR::F16& value) {
return Inst<IR::U16>(Opcode::BitCastU16F16, value);
}
template <>
IR::F16 IREmitter::BitCast<IR::F16, IR::U16>(const IR::U16& value) {
return Inst<IR::F16>(Opcode::BitCastF16U16, value);
}
template <>
IR::U64 IREmitter::BitCast<IR::U64, IR::F64>(const IR::F64& value) {
return Inst<IR::U64>(Opcode::BitCastU64F64, value);
}
template <>
IR::F64 IREmitter::BitCast<IR::F64, IR::U64>(const IR::U64& value) {
return Inst<IR::F64>(Opcode::BitCastF64U64, value);
}
2021-01-09 06:30:07 +00:00
U64 IREmitter::PackUint2x32(const Value& vector) {
return Inst<U64>(Opcode::PackUint2x32, vector);
}
Value IREmitter::UnpackUint2x32(const U64& value) {
return Inst<Value>(Opcode::UnpackUint2x32, value);
}
U32 IREmitter::PackFloat2x16(const Value& vector) {
return Inst<U32>(Opcode::PackFloat2x16, vector);
}
Value IREmitter::UnpackFloat2x16(const U32& value) {
return Inst<Value>(Opcode::UnpackFloat2x16, value);
}
2021-02-05 22:19:36 +00:00
F64 IREmitter::PackDouble2x32(const Value& vector) {
return Inst<F64>(Opcode::PackDouble2x32, vector);
2021-01-09 06:30:07 +00:00
}
2021-02-05 22:19:36 +00:00
Value IREmitter::UnpackDouble2x32(const F64& value) {
2021-01-09 06:30:07 +00:00
return Inst<Value>(Opcode::UnpackDouble2x32, value);
}
2021-02-05 22:19:36 +00:00
F16F32F64 IREmitter::FPMul(const F16F32F64& a, const F16F32F64& b, FpControl control) {
2021-01-09 06:30:07 +00:00
if (a.Type() != b.Type()) {
throw InvalidArgument("Mismatching types {} and {}", a.Type(), b.Type());
}
switch (a.Type()) {
2021-02-05 22:19:36 +00:00
case Type::F16:
return Inst<F16>(Opcode::FPMul16, Flags{control}, a, b);
case Type::F32:
return Inst<F32>(Opcode::FPMul32, Flags{control}, a, b);
case Type::F64:
return Inst<F64>(Opcode::FPMul64, Flags{control}, a, b);
2021-02-03 19:43:04 +00:00
default:
ThrowInvalidType(a.Type());
}
}
2021-02-05 22:19:36 +00:00
F16F32F64 IREmitter::FPFma(const F16F32F64& a, const F16F32F64& b, const F16F32F64& c,
2021-02-03 19:43:04 +00:00
FpControl control) {
if (a.Type() != b.Type() || a.Type() != c.Type()) {
throw InvalidArgument("Mismatching types {}, {}, and {}", a.Type(), b.Type(), c.Type());
}
switch (a.Type()) {
2021-02-05 22:19:36 +00:00
case Type::F16:
return Inst<F16>(Opcode::FPFma16, Flags{control}, a, b, c);
case Type::F32:
return Inst<F32>(Opcode::FPFma32, Flags{control}, a, b, c);
case Type::F64:
return Inst<F64>(Opcode::FPFma64, Flags{control}, a, b, c);
2021-01-09 06:30:07 +00:00
default:
ThrowInvalidType(a.Type());
}
}
2021-02-05 22:19:36 +00:00
F16F32F64 IREmitter::FPAbs(const F16F32F64& value) {
2021-01-09 06:30:07 +00:00
switch (value.Type()) {
case Type::F16:
2021-02-05 22:19:36 +00:00
return Inst<F16>(Opcode::FPAbs16, value);
case Type::F32:
2021-02-05 22:19:36 +00:00
return Inst<F32>(Opcode::FPAbs32, value);
case Type::F64:
2021-02-05 22:19:36 +00:00
return Inst<F64>(Opcode::FPAbs64, value);
2021-01-09 06:30:07 +00:00
default:
ThrowInvalidType(value.Type());
}
}
2021-02-05 22:19:36 +00:00
F16F32F64 IREmitter::FPNeg(const F16F32F64& value) {
2021-01-09 06:30:07 +00:00
switch (value.Type()) {
case Type::F16:
2021-02-05 22:19:36 +00:00
return Inst<F16>(Opcode::FPNeg16, value);
case Type::F32:
2021-02-05 22:19:36 +00:00
return Inst<F32>(Opcode::FPNeg32, value);
case Type::F64:
2021-02-05 22:19:36 +00:00
return Inst<F64>(Opcode::FPNeg64, value);
2021-01-09 06:30:07 +00:00
default:
ThrowInvalidType(value.Type());
}
}
2021-02-05 22:19:36 +00:00
F16F32F64 IREmitter::FPAbsNeg(const F16F32F64& value, bool abs, bool neg) {
F16F32F64 result{value};
2021-01-09 06:30:07 +00:00
if (abs) {
result = FPAbs(result);
2021-01-09 06:30:07 +00:00
}
if (neg) {
result = FPNeg(result);
2021-01-09 06:30:07 +00:00
}
return result;
}
F32 IREmitter::FPCos(const F32& value) {
return Inst<F32>(Opcode::FPCos, value);
}
F32 IREmitter::FPSin(const F32& value) {
return Inst<F32>(Opcode::FPSin, value);
2021-01-09 06:30:07 +00:00
}
F32 IREmitter::FPExp2(const F32& value) {
return Inst<F32>(Opcode::FPExp2, value);
2021-01-09 06:30:07 +00:00
}
2021-02-05 22:19:36 +00:00
F32 IREmitter::FPLog2(const F32& value) {
return Inst<F32>(Opcode::FPLog2, value);
2021-01-09 06:30:07 +00:00
}
2021-02-05 22:19:36 +00:00
F32F64 IREmitter::FPRecip(const F32F64& value) {
2021-01-09 06:30:07 +00:00
switch (value.Type()) {
case Type::F32:
2021-02-05 22:19:36 +00:00
return Inst<F32>(Opcode::FPRecip32, value);
case Type::F64:
2021-02-05 22:19:36 +00:00
return Inst<F64>(Opcode::FPRecip64, value);
2021-01-09 06:30:07 +00:00
default:
ThrowInvalidType(value.Type());
}
}
2021-02-05 22:19:36 +00:00
F32F64 IREmitter::FPRecipSqrt(const F32F64& value) {
2021-01-09 06:30:07 +00:00
switch (value.Type()) {
case Type::F32:
2021-02-05 22:19:36 +00:00
return Inst<F32>(Opcode::FPRecipSqrt32, value);
case Type::F64:
2021-02-05 22:19:36 +00:00
return Inst<F64>(Opcode::FPRecipSqrt64, value);
2021-01-09 06:30:07 +00:00
default:
ThrowInvalidType(value.Type());
}
}
2021-02-05 22:19:36 +00:00
F32 IREmitter::FPSqrt(const F32& value) {
return Inst<F32>(Opcode::FPSqrt, value);
2021-01-09 06:30:07 +00:00
}
2021-02-05 22:19:36 +00:00
F16F32F64 IREmitter::FPSaturate(const F16F32F64& value) {
2021-01-09 06:30:07 +00:00
switch (value.Type()) {
2021-02-19 21:10:18 +00:00
case Type::F16:
2021-02-05 22:19:36 +00:00
return Inst<F16>(Opcode::FPSaturate16, value);
2021-02-19 21:10:18 +00:00
case Type::F32:
2021-02-05 22:19:36 +00:00
return Inst<F32>(Opcode::FPSaturate32, value);
2021-02-19 21:10:18 +00:00
case Type::F64:
2021-02-05 22:19:36 +00:00
return Inst<F64>(Opcode::FPSaturate64, value);
2021-01-09 06:30:07 +00:00
default:
ThrowInvalidType(value.Type());
}
}
2021-02-20 06:30:13 +00:00
F16F32F64 IREmitter::FPRoundEven(const F16F32F64& value, FpControl control) {
2021-01-09 06:30:07 +00:00
switch (value.Type()) {
2021-02-19 21:10:18 +00:00
case Type::F16:
2021-02-20 06:30:13 +00:00
return Inst<F16>(Opcode::FPRoundEven16, Flags{control}, value);
2021-02-19 21:10:18 +00:00
case Type::F32:
2021-02-20 06:30:13 +00:00
return Inst<F32>(Opcode::FPRoundEven32, Flags{control}, value);
2021-02-19 21:10:18 +00:00
case Type::F64:
2021-02-20 06:30:13 +00:00
return Inst<F64>(Opcode::FPRoundEven64, Flags{control}, value);
2021-01-09 06:30:07 +00:00
default:
ThrowInvalidType(value.Type());
}
}
2021-02-20 06:30:13 +00:00
F16F32F64 IREmitter::FPFloor(const F16F32F64& value, FpControl control) {
2021-01-09 06:30:07 +00:00
switch (value.Type()) {
2021-02-19 21:10:18 +00:00
case Type::F16:
2021-02-20 06:30:13 +00:00
return Inst<F16>(Opcode::FPFloor16, Flags{control}, value);
2021-02-19 21:10:18 +00:00
case Type::F32:
2021-02-20 06:30:13 +00:00
return Inst<F32>(Opcode::FPFloor32, Flags{control}, value);
2021-02-19 21:10:18 +00:00
case Type::F64:
2021-02-20 06:30:13 +00:00
return Inst<F64>(Opcode::FPFloor64, Flags{control}, value);
2021-01-09 06:30:07 +00:00
default:
ThrowInvalidType(value.Type());
}
}
2021-02-20 06:30:13 +00:00
F16F32F64 IREmitter::FPCeil(const F16F32F64& value, FpControl control) {
2021-01-09 06:30:07 +00:00
switch (value.Type()) {
2021-02-19 21:10:18 +00:00
case Type::F16:
2021-02-20 06:30:13 +00:00
return Inst<F16>(Opcode::FPCeil16, Flags{control}, value);
2021-02-19 21:10:18 +00:00
case Type::F32:
2021-02-20 06:30:13 +00:00
return Inst<F32>(Opcode::FPCeil32, Flags{control}, value);
2021-02-19 21:10:18 +00:00
case Type::F64:
2021-02-20 06:30:13 +00:00
return Inst<F64>(Opcode::FPCeil64, Flags{control}, value);
2021-01-09 06:30:07 +00:00
default:
ThrowInvalidType(value.Type());
}
}
2021-02-20 06:30:13 +00:00
F16F32F64 IREmitter::FPTrunc(const F16F32F64& value, FpControl control) {
2021-01-09 06:30:07 +00:00
switch (value.Type()) {
2021-02-19 21:10:18 +00:00
case Type::F16:
2021-02-20 06:30:13 +00:00
return Inst<F16>(Opcode::FPTrunc16, Flags{control}, value);
2021-02-19 21:10:18 +00:00
case Type::F32:
2021-02-20 06:30:13 +00:00
return Inst<F32>(Opcode::FPTrunc32, Flags{control}, value);
2021-02-19 21:10:18 +00:00
case Type::F64:
2021-02-20 06:30:13 +00:00
return Inst<F64>(Opcode::FPTrunc64, Flags{control}, value);
2021-01-09 06:30:07 +00:00
default:
ThrowInvalidType(value.Type());
}
}
U1 IREmitter::FPEqual(const F16F32F64& lhs, const F16F32F64& rhs, bool ordered) {
if (lhs.Type() != rhs.Type()) {
throw InvalidArgument("Mismatching types {} and {}", lhs.Type(), rhs.Type());
}
switch (lhs.Type()) {
case Type::F16:
return Inst<U1>(ordered ? Opcode::FPOrdEqual16 : Opcode::FPUnordEqual16, lhs, rhs);
case Type::F32:
return Inst<U1>(ordered ? Opcode::FPOrdEqual32 : Opcode::FPUnordEqual32, lhs, rhs);
case Type::F64:
return Inst<U1>(ordered ? Opcode::FPOrdEqual64 : Opcode::FPUnordEqual64, lhs, rhs);
default:
ThrowInvalidType(lhs.Type());
}
}
U1 IREmitter::FPNotEqual(const F16F32F64& lhs, const F16F32F64& rhs, bool ordered) {
if (lhs.Type() != rhs.Type()) {
throw InvalidArgument("Mismatching types {} and {}", lhs.Type(), rhs.Type());
}
switch (lhs.Type()) {
case Type::F16:
return Inst<U1>(ordered ? Opcode::FPOrdNotEqual16 : Opcode::FPUnordNotEqual16, lhs, rhs);
case Type::F32:
return Inst<U1>(ordered ? Opcode::FPOrdNotEqual32 : Opcode::FPUnordNotEqual32, lhs, rhs);
case Type::F64:
return Inst<U1>(ordered ? Opcode::FPOrdNotEqual64 : Opcode::FPUnordNotEqual64, lhs, rhs);
default:
ThrowInvalidType(lhs.Type());
}
}
U1 IREmitter::FPLessThan(const F16F32F64& lhs, const F16F32F64& rhs, bool ordered) {
if (lhs.Type() != rhs.Type()) {
throw InvalidArgument("Mismatching types {} and {}", lhs.Type(), rhs.Type());
}
switch (lhs.Type()) {
case Type::F16:
return Inst<U1>(ordered ? Opcode::FPOrdLessThan16 : Opcode::FPUnordLessThan16, lhs, rhs);
case Type::F32:
return Inst<U1>(ordered ? Opcode::FPOrdLessThan32 : Opcode::FPUnordLessThan32, lhs, rhs);
case Type::F64:
return Inst<U1>(ordered ? Opcode::FPOrdLessThan64 : Opcode::FPUnordLessThan64, lhs, rhs);
default:
ThrowInvalidType(lhs.Type());
}
}
U1 IREmitter::FPGreaterThan(const F16F32F64& lhs, const F16F32F64& rhs, bool ordered) {
if (lhs.Type() != rhs.Type()) {
throw InvalidArgument("Mismatching types {} and {}", lhs.Type(), rhs.Type());
}
switch (lhs.Type()) {
case Type::F16:
return Inst<U1>(ordered ? Opcode::FPOrdGreaterThan16 : Opcode::FPUnordGreaterThan16, lhs,
rhs);
case Type::F32:
return Inst<U1>(ordered ? Opcode::FPOrdGreaterThan32 : Opcode::FPUnordGreaterThan32, lhs,
rhs);
case Type::F64:
return Inst<U1>(ordered ? Opcode::FPOrdGreaterThan64 : Opcode::FPUnordGreaterThan64, lhs,
rhs);
default:
ThrowInvalidType(lhs.Type());
}
}
U1 IREmitter::FPLessThanEqual(const F16F32F64& lhs, const F16F32F64& rhs, bool ordered) {
if (lhs.Type() != rhs.Type()) {
throw InvalidArgument("Mismatching types {} and {}", lhs.Type(), rhs.Type());
}
switch (lhs.Type()) {
case Type::F16:
return Inst<U1>(ordered ? Opcode::FPOrdLessThanEqual16 : Opcode::FPUnordLessThanEqual16,
lhs, rhs);
case Type::F32:
return Inst<U1>(ordered ? Opcode::FPOrdLessThanEqual32 : Opcode::FPUnordLessThanEqual32,
lhs, rhs);
case Type::F64:
return Inst<U1>(ordered ? Opcode::FPOrdLessThanEqual64 : Opcode::FPUnordLessThanEqual64,
lhs, rhs);
default:
ThrowInvalidType(lhs.Type());
}
}
U1 IREmitter::FPGreaterThanEqual(const F16F32F64& lhs, const F16F32F64& rhs, bool ordered) {
if (lhs.Type() != rhs.Type()) {
throw InvalidArgument("Mismatching types {} and {}", lhs.Type(), rhs.Type());
}
switch (lhs.Type()) {
case Type::F16:
return Inst<U1>(ordered ? Opcode::FPOrdGreaterThanEqual16
: Opcode::FPUnordGreaterThanEqual16,
lhs, rhs);
case Type::F32:
return Inst<U1>(ordered ? Opcode::FPOrdGreaterThanEqual32
: Opcode::FPUnordGreaterThanEqual32,
lhs, rhs);
case Type::F64:
return Inst<U1>(ordered ? Opcode::FPOrdGreaterThanEqual64
: Opcode::FPUnordGreaterThanEqual64,
lhs, rhs);
default:
ThrowInvalidType(lhs.Type());
2021-01-09 06:30:07 +00:00
}
}
2021-02-03 19:43:04 +00:00
U32U64 IREmitter::IAdd(const U32U64& a, const U32U64& b) {
if (a.Type() != b.Type()) {
throw InvalidArgument("Mismatching types {} and {}", a.Type(), b.Type());
}
switch (a.Type()) {
case Type::U32:
return Inst<U32>(Opcode::IAdd32, a, b);
case Type::U64:
return Inst<U64>(Opcode::IAdd64, a, b);
default:
ThrowInvalidType(a.Type());
}
}
U32U64 IREmitter::ISub(const U32U64& a, const U32U64& b) {
if (a.Type() != b.Type()) {
throw InvalidArgument("Mismatching types {} and {}", a.Type(), b.Type());
}
switch (a.Type()) {
case Type::U32:
return Inst<U32>(Opcode::ISub32, a, b);
case Type::U64:
return Inst<U64>(Opcode::ISub64, a, b);
default:
ThrowInvalidType(a.Type());
}
}
2021-02-03 19:43:04 +00:00
U32 IREmitter::IMul(const U32& a, const U32& b) {
return Inst<U32>(Opcode::IMul32, a, b);
}
U32 IREmitter::INeg(const U32& value) {
return Inst<U32>(Opcode::INeg32, value);
}
U32 IREmitter::IAbs(const U32& value) {
return Inst<U32>(Opcode::IAbs32, value);
}
U32 IREmitter::ShiftLeftLogical(const U32& base, const U32& shift) {
return Inst<U32>(Opcode::ShiftLeftLogical32, base, shift);
}
U32 IREmitter::ShiftRightLogical(const U32& base, const U32& shift) {
return Inst<U32>(Opcode::ShiftRightLogical32, base, shift);
}
U32 IREmitter::ShiftRightArithmetic(const U32& base, const U32& shift) {
return Inst<U32>(Opcode::ShiftRightArithmetic32, base, shift);
}
U32 IREmitter::BitwiseAnd(const U32& a, const U32& b) {
return Inst<U32>(Opcode::BitwiseAnd32, a, b);
}
U32 IREmitter::BitwiseOr(const U32& a, const U32& b) {
return Inst<U32>(Opcode::BitwiseOr32, a, b);
}
U32 IREmitter::BitwiseXor(const U32& a, const U32& b) {
return Inst<U32>(Opcode::BitwiseXor32, a, b);
}
U32 IREmitter::BitFieldInsert(const U32& base, const U32& insert, const U32& offset,
const U32& count) {
return Inst<U32>(Opcode::BitFieldInsert, base, insert, offset, count);
}
U32 IREmitter::BitFieldExtract(const U32& base, const U32& offset, const U32& count,
bool is_signed) {
return Inst<U32>(is_signed ? Opcode::BitFieldSExtract : Opcode::BitFieldUExtract, base, offset,
count);
}
U1 IREmitter::ILessThan(const U32& lhs, const U32& rhs, bool is_signed) {
return Inst<U1>(is_signed ? Opcode::SLessThan : Opcode::ULessThan, lhs, rhs);
}
U1 IREmitter::IEqual(const U32& lhs, const U32& rhs) {
return Inst<U1>(Opcode::IEqual, lhs, rhs);
}
U1 IREmitter::ILessThanEqual(const U32& lhs, const U32& rhs, bool is_signed) {
return Inst<U1>(is_signed ? Opcode::SLessThanEqual : Opcode::ULessThanEqual, lhs, rhs);
}
U1 IREmitter::IGreaterThan(const U32& lhs, const U32& rhs, bool is_signed) {
return Inst<U1>(is_signed ? Opcode::SGreaterThan : Opcode::UGreaterThan, lhs, rhs);
}
U1 IREmitter::INotEqual(const U32& lhs, const U32& rhs) {
return Inst<U1>(Opcode::INotEqual, lhs, rhs);
}
U1 IREmitter::IGreaterThanEqual(const U32& lhs, const U32& rhs, bool is_signed) {
return Inst<U1>(is_signed ? Opcode::SGreaterThanEqual : Opcode::UGreaterThanEqual, lhs, rhs);
}
2021-01-09 06:30:07 +00:00
U1 IREmitter::LogicalOr(const U1& a, const U1& b) {
return Inst<U1>(Opcode::LogicalOr, a, b);
}
U1 IREmitter::LogicalAnd(const U1& a, const U1& b) {
return Inst<U1>(Opcode::LogicalAnd, a, b);
}
2021-02-03 19:43:04 +00:00
U1 IREmitter::LogicalXor(const U1& a, const U1& b) {
return Inst<U1>(Opcode::LogicalXor, a, b);
}
2021-01-09 06:30:07 +00:00
U1 IREmitter::LogicalNot(const U1& value) {
return Inst<U1>(Opcode::LogicalNot, value);
}
2021-02-05 22:19:36 +00:00
U32U64 IREmitter::ConvertFToS(size_t bitsize, const F16F32F64& value) {
2021-01-09 06:30:07 +00:00
switch (bitsize) {
case 16:
switch (value.Type()) {
2021-02-19 21:10:18 +00:00
case Type::F16:
2021-01-09 06:30:07 +00:00
return Inst<U32>(Opcode::ConvertS16F16, value);
2021-02-19 21:10:18 +00:00
case Type::F32:
2021-01-09 06:30:07 +00:00
return Inst<U32>(Opcode::ConvertS16F32, value);
2021-02-19 21:10:18 +00:00
case Type::F64:
2021-01-09 06:30:07 +00:00
return Inst<U32>(Opcode::ConvertS16F64, value);
default:
ThrowInvalidType(value.Type());
}
case 32:
switch (value.Type()) {
2021-02-19 21:10:18 +00:00
case Type::F16:
2021-01-09 06:30:07 +00:00
return Inst<U32>(Opcode::ConvertS32F16, value);
2021-02-19 21:10:18 +00:00
case Type::F32:
2021-01-09 06:30:07 +00:00
return Inst<U32>(Opcode::ConvertS32F32, value);
2021-02-19 21:10:18 +00:00
case Type::F64:
2021-01-09 06:30:07 +00:00
return Inst<U32>(Opcode::ConvertS32F64, value);
default:
ThrowInvalidType(value.Type());
}
case 64:
switch (value.Type()) {
2021-02-19 21:10:18 +00:00
case Type::F16:
2021-01-09 06:30:07 +00:00
return Inst<U64>(Opcode::ConvertS64F16, value);
2021-02-19 21:10:18 +00:00
case Type::F32:
2021-01-09 06:30:07 +00:00
return Inst<U64>(Opcode::ConvertS64F32, value);
2021-02-19 21:10:18 +00:00
case Type::F64:
2021-01-09 06:30:07 +00:00
return Inst<U64>(Opcode::ConvertS64F64, value);
default:
ThrowInvalidType(value.Type());
}
default:
throw InvalidArgument("Invalid destination bitsize {}", bitsize);
}
}
2021-02-05 22:19:36 +00:00
U32U64 IREmitter::ConvertFToU(size_t bitsize, const F16F32F64& value) {
2021-01-09 06:30:07 +00:00
switch (bitsize) {
case 16:
switch (value.Type()) {
2021-02-19 21:10:18 +00:00
case Type::F16:
2021-01-09 06:30:07 +00:00
return Inst<U32>(Opcode::ConvertU16F16, value);
2021-02-19 21:10:18 +00:00
case Type::F32:
2021-01-09 06:30:07 +00:00
return Inst<U32>(Opcode::ConvertU16F32, value);
2021-02-19 21:10:18 +00:00
case Type::F64:
2021-01-09 06:30:07 +00:00
return Inst<U32>(Opcode::ConvertU16F64, value);
default:
ThrowInvalidType(value.Type());
}
case 32:
switch (value.Type()) {
2021-02-19 21:10:18 +00:00
case Type::F16:
2021-01-09 06:30:07 +00:00
return Inst<U32>(Opcode::ConvertU32F16, value);
2021-02-19 21:10:18 +00:00
case Type::F32:
2021-01-09 06:30:07 +00:00
return Inst<U32>(Opcode::ConvertU32F32, value);
2021-02-19 21:10:18 +00:00
case Type::F64:
2021-01-09 06:30:07 +00:00
return Inst<U32>(Opcode::ConvertU32F64, value);
default:
ThrowInvalidType(value.Type());
}
case 64:
switch (value.Type()) {
2021-02-19 21:10:18 +00:00
case Type::F16:
2021-01-09 06:30:07 +00:00
return Inst<U64>(Opcode::ConvertU64F16, value);
2021-02-19 21:10:18 +00:00
case Type::F32:
2021-01-09 06:30:07 +00:00
return Inst<U64>(Opcode::ConvertU64F32, value);
2021-02-19 21:10:18 +00:00
case Type::F64:
2021-01-09 06:30:07 +00:00
return Inst<U64>(Opcode::ConvertU64F64, value);
default:
ThrowInvalidType(value.Type());
}
default:
throw InvalidArgument("Invalid destination bitsize {}", bitsize);
}
}
2021-02-05 22:19:36 +00:00
U32U64 IREmitter::ConvertFToI(size_t bitsize, bool is_signed, const F16F32F64& value) {
2021-01-09 06:30:07 +00:00
if (is_signed) {
return ConvertFToS(bitsize, value);
} else {
return ConvertFToU(bitsize, value);
}
}
U32U64 IREmitter::ConvertU(size_t result_bitsize, const U32U64& value) {
switch (result_bitsize) {
2021-01-09 06:30:07 +00:00
case 32:
switch (value.Type()) {
case Type::U32:
// Nothing to do
return value;
case Type::U64:
return Inst<U32>(Opcode::ConvertU32U64, value);
default:
break;
}
break;
case 64:
switch (value.Type()) {
case Type::U32:
2021-02-19 21:10:18 +00:00
return Inst<U64>(Opcode::ConvertU64U32, value);
case Type::U64:
2021-01-09 06:30:07 +00:00
// Nothing to do
return value;
default:
break;
}
}
throw NotImplementedException("Conversion from {} to {} bits", value.Type(), result_bitsize);
2021-01-09 06:30:07 +00:00
}
} // namespace Shader::IR