yuzu/src/video_core/shader/ast.h

315 lines
7 KiB
C++
Raw Normal View History

2019-06-27 05:39:40 +01:00
// Copyright 2019 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <list>
#include <memory>
#include <optional>
#include <string>
#include <unordered_map>
#include <vector>
#include "video_core/shader/expr.h"
#include "video_core/shader/node.h"
namespace VideoCommon::Shader {
class ASTBase;
class ASTProgram;
2019-06-27 23:57:47 +01:00
class ASTIfThen;
class ASTIfElse;
2019-06-27 05:39:40 +01:00
class ASTBlockEncoded;
class ASTVarSet;
class ASTGoto;
class ASTLabel;
class ASTDoWhile;
class ASTReturn;
2019-06-27 23:57:47 +01:00
class ASTBreak;
2019-06-27 05:39:40 +01:00
2019-06-27 23:57:47 +01:00
using ASTData = std::variant<ASTProgram, ASTIfThen, ASTIfElse, ASTBlockEncoded, ASTVarSet, ASTGoto,
ASTLabel, ASTDoWhile, ASTReturn, ASTBreak>;
2019-06-27 05:39:40 +01:00
using ASTNode = std::shared_ptr<ASTBase>;
2019-06-27 23:57:47 +01:00
enum class ASTZipperType : u32 {
Program,
IfThen,
IfElse,
Loop,
};
class ASTZipper final {
public:
ASTZipper();
ASTZipper(ASTNode first);
ASTNode GetFirst() {
return first;
}
ASTNode GetLast() {
return last;
}
void PushBack(ASTNode new_node);
void PushFront(ASTNode new_node);
void InsertAfter(ASTNode new_node, ASTNode at_node);
void SetParent(ASTNode new_parent);
void DetachTail(ASTNode node);
void DetachSingle(ASTNode node);
void DetachSegment(ASTNode start, ASTNode end);
void Remove(ASTNode node);
ASTNode first{};
ASTNode last{};
};
2019-06-27 05:39:40 +01:00
class ASTProgram {
public:
2019-06-27 23:57:47 +01:00
ASTProgram() : nodes{} {};
ASTZipper nodes;
2019-06-27 05:39:40 +01:00
};
2019-06-27 23:57:47 +01:00
class ASTIfThen {
2019-06-27 05:39:40 +01:00
public:
2019-06-27 23:57:47 +01:00
ASTIfThen(Expr condition, ASTZipper nodes) : condition(condition), nodes{nodes} {}
2019-06-27 05:39:40 +01:00
Expr condition;
2019-06-27 23:57:47 +01:00
ASTZipper nodes;
};
class ASTIfElse {
public:
ASTIfElse(ASTZipper nodes) : nodes{nodes} {}
ASTZipper nodes;
2019-06-27 05:39:40 +01:00
};
class ASTBlockEncoded {
public:
ASTBlockEncoded(u32 start, u32 end) : start{start}, end{end} {}
u32 start;
u32 end;
};
class ASTVarSet {
public:
ASTVarSet(u32 index, Expr condition) : index{index}, condition{condition} {}
u32 index;
Expr condition;
};
class ASTLabel {
public:
ASTLabel(u32 index) : index{index} {}
u32 index;
};
class ASTGoto {
public:
ASTGoto(Expr condition, u32 label) : condition{condition}, label{label} {}
Expr condition;
u32 label;
};
class ASTDoWhile {
public:
2019-06-27 23:57:47 +01:00
ASTDoWhile(Expr condition, ASTZipper nodes) : condition(condition), nodes{nodes} {}
2019-06-27 05:39:40 +01:00
Expr condition;
2019-06-27 23:57:47 +01:00
ASTZipper nodes;
2019-06-27 05:39:40 +01:00
};
class ASTReturn {
public:
ASTReturn(Expr condition, bool kills) : condition{condition}, kills{kills} {}
Expr condition;
bool kills;
};
2019-06-27 23:57:47 +01:00
class ASTBreak {
public:
ASTBreak(Expr condition) : condition{condition} {}
Expr condition;
};
2019-06-27 05:39:40 +01:00
class ASTBase {
public:
explicit ASTBase(ASTNode parent, ASTData data) : parent{parent}, data{data} {}
template <class U, class... Args>
static ASTNode Make(ASTNode parent, Args&&... args) {
return std::make_shared<ASTBase>(parent, ASTData(U(std::forward<Args>(args)...)));
}
void SetParent(ASTNode new_parent) {
parent = new_parent;
}
ASTNode& GetParent() {
return parent;
}
const ASTNode& GetParent() const {
return parent;
}
u32 GetLevel() const {
u32 level = 0;
2019-06-27 23:57:47 +01:00
auto next_parent = parent;
while (next_parent) {
next_parent = next_parent->GetParent();
2019-06-27 05:39:40 +01:00
level++;
}
return level;
}
ASTData* GetInnerData() {
return &data;
}
2019-06-27 23:57:47 +01:00
ASTNode GetNext() {
return next;
}
ASTNode GetPrevious() {
return previous;
}
ASTZipper& GetManager() {
return *manager;
}
u32 GetGotoLabel() const {
auto inner = std::get_if<ASTGoto>(&data);
if (inner) {
return inner->label;
}
return -1;
}
Expr GetGotoCondition() const {
auto inner = std::get_if<ASTGoto>(&data);
if (inner) {
return inner->condition;
}
return nullptr;
}
void SetGotoCondition(Expr new_condition) {
auto inner = std::get_if<ASTGoto>(&data);
if (inner) {
inner->condition = new_condition;
}
}
bool IsIfThen() const {
return std::holds_alternative<ASTIfThen>(data);
}
bool IsIfElse() const {
return std::holds_alternative<ASTIfElse>(data);
}
bool IsLoop() const {
return std::holds_alternative<ASTDoWhile>(data);
}
ASTZipper* GetSubNodes() {
if (std::holds_alternative<ASTProgram>(data)) {
return &std::get_if<ASTProgram>(&data)->nodes;
}
if (std::holds_alternative<ASTIfThen>(data)) {
return &std::get_if<ASTIfThen>(&data)->nodes;
}
if (std::holds_alternative<ASTIfElse>(data)) {
return &std::get_if<ASTIfElse>(&data)->nodes;
}
if (std::holds_alternative<ASTDoWhile>(data)) {
return &std::get_if<ASTDoWhile>(&data)->nodes;
}
return nullptr;
}
2019-06-27 05:39:40 +01:00
private:
2019-06-27 23:57:47 +01:00
friend class ASTZipper;
2019-06-27 05:39:40 +01:00
ASTData data;
ASTNode parent;
2019-06-27 23:57:47 +01:00
ASTNode next{};
ASTNode previous{};
ASTZipper* manager{};
2019-06-27 05:39:40 +01:00
};
class ASTManager final {
public:
explicit ASTManager() {
2019-06-27 23:57:47 +01:00
main_node = ASTBase::Make<ASTProgram>(ASTNode{});
2019-06-27 05:39:40 +01:00
program = std::get_if<ASTProgram>(main_node->GetInnerData());
}
void DeclareLabel(u32 address) {
const auto pair = labels_map.emplace(address, labels_count);
if (pair.second) {
labels_count++;
labels.resize(labels_count);
}
}
void InsertLabel(u32 address) {
u32 index = labels_map[address];
ASTNode label = ASTBase::Make<ASTLabel>(main_node, index);
labels[index] = label;
2019-06-27 23:57:47 +01:00
program->nodes.PushBack(label);
2019-06-27 05:39:40 +01:00
}
void InsertGoto(Expr condition, u32 address) {
u32 index = labels_map[address];
ASTNode goto_node = ASTBase::Make<ASTGoto>(main_node, condition, index);
gotos.push_back(goto_node);
2019-06-27 23:57:47 +01:00
program->nodes.PushBack(goto_node);
2019-06-27 05:39:40 +01:00
}
void InsertBlock(u32 start_address, u32 end_address) {
ASTNode block = ASTBase::Make<ASTBlockEncoded>(main_node, start_address, end_address);
2019-06-27 23:57:47 +01:00
program->nodes.PushBack(block);
2019-06-27 05:39:40 +01:00
}
void InsertReturn(Expr condition, bool kills) {
ASTNode node = ASTBase::Make<ASTReturn>(main_node, condition, kills);
2019-06-27 23:57:47 +01:00
program->nodes.PushBack(node);
2019-06-27 05:39:40 +01:00
}
std::string Print();
2019-06-27 23:57:47 +01:00
void Decompile();
2019-06-27 05:39:40 +01:00
private:
2019-06-27 23:57:47 +01:00
bool IndirectlyRelated(ASTNode first, ASTNode second);
bool DirectlyRelated(ASTNode first, ASTNode second);
void EncloseDoWhile(ASTNode goto_node, ASTNode label);
void EncloseIfThen(ASTNode goto_node, ASTNode label);
void MoveOutward(ASTNode goto_node) ;
u32 NewVariable() {
u32 new_var = variables;
variables++;
return new_var;
}
2019-06-27 05:39:40 +01:00
std::unordered_map<u32, u32> labels_map{};
u32 labels_count{};
std::vector<ASTNode> labels{};
std::list<ASTNode> gotos{};
u32 variables{};
ASTProgram* program;
ASTNode main_node;
};
} // namespace VideoCommon::Shader