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.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <array>
|
2021-02-03 19:43:04 +00:00
|
|
|
#include <cstring>
|
2021-02-03 00:07:00 +00:00
|
|
|
#include <span>
|
2021-02-03 19:43:04 +00:00
|
|
|
#include <type_traits>
|
2021-02-03 00:07:00 +00:00
|
|
|
#include <vector>
|
2021-01-09 06:30:07 +00:00
|
|
|
|
|
|
|
#include <boost/intrusive/list.hpp>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "shader_recompiler/frontend/ir/opcode.h"
|
|
|
|
#include "shader_recompiler/frontend/ir/type.h"
|
|
|
|
#include "shader_recompiler/frontend/ir/value.h"
|
|
|
|
|
|
|
|
namespace Shader::IR {
|
|
|
|
|
2021-02-03 00:07:00 +00:00
|
|
|
class Block;
|
|
|
|
|
2021-01-09 06:30:07 +00:00
|
|
|
constexpr size_t MAX_ARG_COUNT = 4;
|
|
|
|
|
|
|
|
class Inst : public boost::intrusive::list_base_hook<> {
|
|
|
|
public:
|
2021-02-03 19:43:04 +00:00
|
|
|
explicit Inst(Opcode op_, u64 flags_) noexcept : op{op_}, flags{flags_} {}
|
2021-01-09 06:30:07 +00:00
|
|
|
|
|
|
|
/// Get the number of uses this instruction has.
|
|
|
|
[[nodiscard]] int UseCount() const noexcept {
|
|
|
|
return use_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Determines whether this instruction has uses or not.
|
|
|
|
[[nodiscard]] bool HasUses() const noexcept {
|
|
|
|
return use_count > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the opcode this microinstruction represents.
|
|
|
|
[[nodiscard]] IR::Opcode Opcode() const noexcept {
|
|
|
|
return op;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Determines whether or not this instruction may have side effects.
|
|
|
|
[[nodiscard]] bool MayHaveSideEffects() const noexcept;
|
|
|
|
|
|
|
|
/// Determines whether or not this instruction is a pseudo-instruction.
|
|
|
|
/// Pseudo-instructions depend on their parent instructions for their semantics.
|
|
|
|
[[nodiscard]] bool IsPseudoInstruction() const noexcept;
|
|
|
|
|
2021-02-05 08:58:02 +00:00
|
|
|
/// Determines if all arguments of this instruction are immediates.
|
|
|
|
[[nodiscard]] bool AreAllArgsImmediates() const noexcept;
|
|
|
|
|
2021-01-09 06:30:07 +00:00
|
|
|
/// Determines if there is a pseudo-operation associated with this instruction.
|
|
|
|
[[nodiscard]] bool HasAssociatedPseudoOperation() const noexcept;
|
|
|
|
/// Gets a pseudo-operation associated with this instruction
|
|
|
|
[[nodiscard]] Inst* GetAssociatedPseudoOperation(IR::Opcode opcode);
|
|
|
|
|
|
|
|
/// Get the number of arguments this instruction has.
|
|
|
|
[[nodiscard]] size_t NumArgs() const;
|
|
|
|
|
|
|
|
/// Get the type this instruction returns.
|
|
|
|
[[nodiscard]] IR::Type Type() const;
|
|
|
|
|
|
|
|
/// Get the value of a given argument index.
|
|
|
|
[[nodiscard]] Value Arg(size_t index) const;
|
|
|
|
/// Set the value of a given argument index.
|
|
|
|
void SetArg(size_t index, Value value);
|
|
|
|
|
2021-02-03 00:07:00 +00:00
|
|
|
/// Get an immutable span to the phi operands.
|
|
|
|
[[nodiscard]] std::span<const std::pair<Block*, Value>> PhiOperands() const noexcept;
|
|
|
|
/// Add phi operand to a phi instruction.
|
|
|
|
void AddPhiOperand(Block* predecessor, const Value& value);
|
|
|
|
|
2021-01-09 06:30:07 +00:00
|
|
|
void Invalidate();
|
|
|
|
void ClearArgs();
|
|
|
|
|
|
|
|
void ReplaceUsesWith(Value replacement);
|
|
|
|
|
2021-02-03 19:43:04 +00:00
|
|
|
template <typename FlagsType>
|
|
|
|
requires(sizeof(FlagsType) <= sizeof(u64) && std::is_trivially_copyable_v<FlagsType>)
|
|
|
|
[[nodiscard]] FlagsType Flags() const noexcept {
|
|
|
|
FlagsType ret;
|
|
|
|
std::memcpy(&ret, &flags, sizeof(ret));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-01-09 06:30:07 +00:00
|
|
|
private:
|
|
|
|
void Use(const Value& value);
|
|
|
|
void UndoUse(const Value& value);
|
|
|
|
|
|
|
|
IR::Opcode op{};
|
|
|
|
int use_count{};
|
|
|
|
std::array<Value, MAX_ARG_COUNT> args{};
|
|
|
|
Inst* zero_inst{};
|
|
|
|
Inst* sign_inst{};
|
|
|
|
Inst* carry_inst{};
|
|
|
|
Inst* overflow_inst{};
|
2021-02-03 00:07:00 +00:00
|
|
|
std::vector<std::pair<Block*, Value>> phi_operands;
|
2021-01-09 06:30:07 +00:00
|
|
|
u64 flags{};
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Shader::IR
|