2021-01-09 01:30:07 -05:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2021-02-05 21:11:23 -05:00
|
|
|
#include "shader_recompiler/frontend/ir/opcodes.h"
|
2021-01-09 01:30:07 -05:00
|
|
|
#include "shader_recompiler/frontend/ir/value.h"
|
|
|
|
|
|
|
|
namespace Shader::IR {
|
|
|
|
|
|
|
|
Value::Value(IR::Inst* value) noexcept : type{Type::Opaque}, inst{value} {}
|
|
|
|
|
|
|
|
Value::Value(IR::Block* value) noexcept : type{Type::Label}, label{value} {}
|
|
|
|
|
|
|
|
Value::Value(IR::Reg value) noexcept : type{Type::Reg}, reg{value} {}
|
|
|
|
|
|
|
|
Value::Value(IR::Pred value) noexcept : type{Type::Pred}, pred{value} {}
|
|
|
|
|
|
|
|
Value::Value(IR::Attribute value) noexcept : type{Type::Attribute}, attribute{value} {}
|
|
|
|
|
2021-04-15 21:46:11 -04:00
|
|
|
Value::Value(IR::Patch value) noexcept : type{Type::Patch}, patch{value} {}
|
|
|
|
|
2021-01-09 01:30:07 -05:00
|
|
|
Value::Value(bool value) noexcept : type{Type::U1}, imm_u1{value} {}
|
|
|
|
|
|
|
|
Value::Value(u8 value) noexcept : type{Type::U8}, imm_u8{value} {}
|
|
|
|
|
|
|
|
Value::Value(u16 value) noexcept : type{Type::U16}, imm_u16{value} {}
|
|
|
|
|
|
|
|
Value::Value(u32 value) noexcept : type{Type::U32}, imm_u32{value} {}
|
|
|
|
|
2021-02-05 17:19:36 -05:00
|
|
|
Value::Value(f32 value) noexcept : type{Type::F32}, imm_f32{value} {}
|
|
|
|
|
2021-01-09 01:30:07 -05:00
|
|
|
Value::Value(u64 value) noexcept : type{Type::U64}, imm_u64{value} {}
|
|
|
|
|
2021-02-05 17:19:36 -05:00
|
|
|
Value::Value(f64 value) noexcept : type{Type::F64}, imm_f64{value} {}
|
|
|
|
|
2021-01-09 01:30:07 -05:00
|
|
|
bool Value::IsLabel() const noexcept {
|
|
|
|
return type == Type::Label;
|
|
|
|
}
|
|
|
|
|
|
|
|
IR::Type Value::Type() const noexcept {
|
2021-03-30 02:19:50 -04:00
|
|
|
if (IsPhi()) {
|
|
|
|
// The type of a phi node is stored in its flags
|
|
|
|
return inst->Flags<IR::Type>();
|
|
|
|
}
|
|
|
|
if (IsIdentity()) {
|
2021-01-09 01:30:07 -05:00
|
|
|
return inst->Arg(0).Type();
|
|
|
|
}
|
|
|
|
if (type == Type::Opaque) {
|
|
|
|
return inst->Type();
|
|
|
|
}
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
2021-02-02 19:07:00 -05:00
|
|
|
bool Value::operator==(const Value& other) const {
|
|
|
|
if (type != other.type) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
switch (type) {
|
|
|
|
case Type::Void:
|
|
|
|
return true;
|
|
|
|
case Type::Opaque:
|
|
|
|
return inst == other.inst;
|
|
|
|
case Type::Label:
|
|
|
|
return label == other.label;
|
|
|
|
case Type::Reg:
|
|
|
|
return reg == other.reg;
|
|
|
|
case Type::Pred:
|
|
|
|
return pred == other.pred;
|
|
|
|
case Type::Attribute:
|
|
|
|
return attribute == other.attribute;
|
2021-04-15 21:46:11 -04:00
|
|
|
case Type::Patch:
|
|
|
|
return patch == other.patch;
|
2021-02-02 19:07:00 -05:00
|
|
|
case Type::U1:
|
|
|
|
return imm_u1 == other.imm_u1;
|
|
|
|
case Type::U8:
|
|
|
|
return imm_u8 == other.imm_u8;
|
|
|
|
case Type::U16:
|
2021-02-05 17:19:36 -05:00
|
|
|
case Type::F16:
|
2021-02-02 19:07:00 -05:00
|
|
|
return imm_u16 == other.imm_u16;
|
|
|
|
case Type::U32:
|
2021-02-05 17:19:36 -05:00
|
|
|
case Type::F32:
|
2021-02-02 19:07:00 -05:00
|
|
|
return imm_u32 == other.imm_u32;
|
|
|
|
case Type::U64:
|
2021-02-05 17:19:36 -05:00
|
|
|
case Type::F64:
|
2021-02-02 19:07:00 -05:00
|
|
|
return imm_u64 == other.imm_u64;
|
2021-02-05 17:19:36 -05:00
|
|
|
case Type::U32x2:
|
|
|
|
case Type::U32x3:
|
|
|
|
case Type::U32x4:
|
|
|
|
case Type::F16x2:
|
|
|
|
case Type::F16x3:
|
|
|
|
case Type::F16x4:
|
|
|
|
case Type::F32x2:
|
|
|
|
case Type::F32x3:
|
|
|
|
case Type::F32x4:
|
|
|
|
case Type::F64x2:
|
|
|
|
case Type::F64x3:
|
|
|
|
case Type::F64x4:
|
|
|
|
break;
|
2021-02-02 19:07:00 -05:00
|
|
|
}
|
|
|
|
throw LogicError("Invalid type {}", type);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Value::operator!=(const Value& other) const {
|
|
|
|
return !operator==(other);
|
|
|
|
}
|
|
|
|
|
2021-01-09 01:30:07 -05:00
|
|
|
} // namespace Shader::IR
|