]> git.tdb.fi Git - libs/gl.git/commitdiff
Refactor interface management
authorMikko Rasa <tdb@tdb.fi>
Wed, 24 Feb 2021 13:51:30 +0000 (15:51 +0200)
committerMikko Rasa <tdb@tdb.fi>
Thu, 25 Feb 2021 09:58:27 +0000 (11:58 +0200)
Rather than having separate maps in Stage, pull the variables from the
content block's map.

source/glsl/debug.cpp
source/glsl/generate.cpp
source/glsl/syntax.cpp
source/glsl/syntax.h
source/glsl/visitor.cpp
source/glsl/visitor.h

index 32eb0ec307a05db3904e2313f74008e0127a32c3..b3eabd75de3c2aacab570ef6531b4ba4ce556fa5 100644 (file)
@@ -12,10 +12,6 @@ const std::string &DumpTree::apply(Stage &stage)
 {
        formatted = format("Stage %s\n", Stage::get_stage_name(stage.type));
        tree.push_back(BRANCH);
-       for(map<string, VariableDeclaration *>::const_iterator i=stage.in_variables.begin(); i!=stage.in_variables.end(); ++i)
-               append(format("Input: %%%d %s %s", get_label(*i->second), i->second->type, i->first));
-       for(map<string, VariableDeclaration *>::const_iterator i=stage.out_variables.begin(); i!=stage.out_variables.end(); ++i)
-               append(format("Output: %%%d %s %s", get_label(*i->second), i->second->type, i->first));
        last_branch();
        stage.content.visit(*this);
        return formatted;
@@ -88,6 +84,9 @@ void DumpTree::visit(Block &block)
        for(std::map<string, VariableDeclaration *>::const_iterator i=block.variables.begin(); i!=block.variables.end(); ++i)
                append(format("Variable %%%d %s %s", get_label(*i->second), i->second->type, i->first));
 
+       for(std::set<InterfaceBlock *>::const_iterator i=block.interfaces.begin(); i!=block.interfaces.end(); ++i)
+               append(format("Interface %%%d %s %s", get_label(*i->second), i->second->interface, i->second->name));
+
        bool labeled_body = (!block.types.empty() || !block.variables.empty());
        if(labeled_body)
        {
index 62c879c88a2d56c1ca99c9ef3daa2de20e69c50a..48de1efc5992a4796411e5cadaf6618903c363e3 100644 (file)
@@ -80,7 +80,7 @@ void BlockResolver::enter(Block &block)
 
 void BlockResolver::visit(InterfaceBlock &iface)
 {
-       iface.members.anonymous = true;
+       current_block->interfaces.insert(&iface);
        TraversingVisitor::visit(iface);
 }
 
@@ -114,11 +114,23 @@ void VariableResolver::visit(VariableReference &var)
        type = 0;
        for(Block *block=current_block; block; block=next_block(*block))
        {
-               map<string, VariableDeclaration *>::iterator j = block->variables.find(var.name);
-               if(j!=block->variables.end())
+               map<string, VariableDeclaration *>::iterator i = block->variables.find(var.name);
+               if(i!=block->variables.end())
+                       var.declaration = i->second;
+               else
+               {
+                       const set<InterfaceBlock *> &ifaces = block->interfaces;
+                       for(set<InterfaceBlock *>::const_iterator j=ifaces.begin(); (!var.declaration && j!=ifaces.end()); ++j)
+                       {
+                               i = (*j)->members.variables.find(var.name);
+                               if(i!=(*j)->members.variables.end())
+                                       var.declaration = i->second;
+                       }
+               }
+
+               if(var.declaration)
                {
-                       var.declaration = j->second;
-                       type = j->second->type_declaration;
+                       type = var.declaration->type_declaration;
                        break;
                }
        }
@@ -208,8 +220,6 @@ void VariableResolver::visit(VariableDeclaration &var)
 
        TraversingVisitor::visit(var);
        current_block->variables[var.name] = &var;
-       if(current_block->anonymous && current_block->parent)
-               current_block->parent->variables[var.name] = &var;
 }
 
 void VariableResolver::visit(InterfaceBlock &iface)
@@ -292,8 +302,7 @@ string InterfaceGenerator::change_prefix(const string &name, const string &prefi
 
 bool InterfaceGenerator::generate_interface(VariableDeclaration &var, const string &iface, const string &name)
 {
-       const map<string, VariableDeclaration *> &stage_vars = (iface=="in" ? stage->in_variables : stage->out_variables);
-       if(stage_vars.count(name))
+       if(stage->content.variables.count(name))
                return false;
 
        VariableDeclaration* iface_var = new VariableDeclaration;
@@ -309,12 +318,12 @@ bool InterfaceGenerator::generate_interface(VariableDeclaration &var, const stri
        if(iface_var->array)
                iface_var->array_size = var.array_size;
        if(iface=="in")
-               iface_var->linked_declaration = &var;
-       stage->content.body.insert(iface_insert_point, iface_var);
        {
-               SetForScope<Block *> set_block(current_block, &stage->content);
-               iface_var->visit(*this);
+               iface_var->linked_declaration = &var;
+               var.linked_declaration = iface_var;
        }
+       stage->content.body.insert(iface_insert_point, iface_var);
+       stage->content.variables[name] = iface_var;
 
        return true;
 }
@@ -342,14 +351,14 @@ void InterfaceGenerator::visit(VariableReference &var)
                return;
        /* Don't pull a variable from previous stage if we just generated an out
        interface in this stage */
-       if(stage->out_variables.count(var.name))
+       if(stage->content.variables.count(var.name))
                return;
 
-       const map<string, VariableDeclaration *> &prev_out = stage->previous->out_variables;
-       map<string, VariableDeclaration *>::const_iterator i = prev_out.find(var.name);
-       if(i==prev_out.end())
-               i = prev_out.find(in_prefix+var.name);
-       if(i!=prev_out.end())
+       const map<string, VariableDeclaration *> &prev_vars = stage->previous->content.variables;
+       map<string, VariableDeclaration *>::const_iterator i = prev_vars.find(var.name);
+       if(i==prev_vars.end() || i->second->interface!="out")
+               i = prev_vars.find(in_prefix+var.name);
+       if(i!=prev_vars.end() && i->second->interface=="out")
        {
                generate_interface(*i->second, "in", i->second->name);
                var.name = i->second->name;
@@ -360,9 +369,7 @@ void InterfaceGenerator::visit(VariableDeclaration &var)
 {
        if(var.interface=="out")
        {
-               if(current_block==&stage->content)
-                       stage->out_variables[var.name] = &var;
-               else if(generate_interface(var, "out", change_prefix(var.name, string())))
+               if(current_block!=&stage->content && generate_interface(var, "out", change_prefix(var.name, string())))
                {
                        nodes_to_remove.insert(&var);
                        if(var.init_expression)
@@ -376,14 +383,11 @@ void InterfaceGenerator::visit(VariableDeclaration &var)
        }
        else if(var.interface=="in")
        {
-               stage->in_variables[var.name] = &var;
-               if(var.linked_declaration)
-                       var.linked_declaration->linked_declaration = &var;
-               else if(stage->previous)
+               if(!var.linked_declaration && stage->previous)
                {
-                       const map<string, VariableDeclaration *> &prev_out = stage->previous->out_variables;
-                       map<string, VariableDeclaration *>::const_iterator i = prev_out.find(var.name);
-                       if(i!=prev_out.end())
+                       const map<string, VariableDeclaration *> &prev_vars = stage->previous->content.variables;
+                       map<string, VariableDeclaration *>::const_iterator i = prev_vars.find(var.name);
+                       if(i!=prev_vars.end() && i->second->interface=="out")
                        {
                                var.linked_declaration = i->second;
                                i->second->linked_declaration = &var;
@@ -404,13 +408,14 @@ void InterfaceGenerator::visit(Passthrough &pass)
 {
        vector<VariableDeclaration *> pass_vars;
 
-       for(map<string, VariableDeclaration *>::const_iterator i=stage->in_variables.begin(); i!=stage->in_variables.end(); ++i)
-               pass_vars.push_back(i->second);
+       for(map<string, VariableDeclaration *>::const_iterator i=stage->content.variables.begin(); i!=stage->content.variables.end(); ++i)
+               if(i->second->interface=="in")
+                       pass_vars.push_back(i->second);
 
        if(stage->previous)
        {
-               const map<string, VariableDeclaration *> &prev_out = stage->previous->out_variables;
-               for(map<string, VariableDeclaration *>::const_iterator i=prev_out.begin(); i!=prev_out.end(); ++i)
+               const map<string, VariableDeclaration *> &prev_vars = stage->previous->content.variables;
+               for(map<string, VariableDeclaration *>::const_iterator i=prev_vars.begin(); i!=prev_vars.end(); ++i)
                {
                        bool linked = false;
                        for(vector<VariableDeclaration *>::const_iterator j=pass_vars.begin(); (!linked && j!=pass_vars.end()); ++j)
index 0b9ecb54ca9d0aef569b9ebc4fe7477ec8202415..b20f63caf2030887a5a4ea6203346f401253e36b 100644 (file)
@@ -74,7 +74,6 @@ Statement::Statement():
 
 Block::Block():
        use_braces(false),
-       anonymous(false),
        parent(0)
 { }
 
@@ -82,7 +81,6 @@ Block::Block(const Block &other):
        Node(other),
        body(other.body),
        use_braces(other.use_braces),
-       anonymous(other.anonymous),
        parent(0)
 { }
 
index 70b1bb39f3547d2f3fb838fe8359d5aa979b5e1c..4ff05fa1a09f9275760dcbfe617610dc6d21a2e3 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <list>
 #include <map>
+#include <set>
 #include <string>
 #include <vector>
 #include <msp/core/refptr.h>
@@ -90,6 +91,7 @@ class NodeArray: public NodeContainer<std::vector<RefPtr<T> > >
 
 struct StructDeclaration;
 struct VariableDeclaration;
+struct InterfaceBlock;
 struct FunctionDeclaration;
 
 struct Statement: Node
@@ -106,9 +108,9 @@ struct Block: Node
 {
        NodeList<Statement> body;
        bool use_braces;
-       bool anonymous;
        std::map<std::string, StructDeclaration *> types;
        std::map<std::string, VariableDeclaration *> variables;
+       std::set<InterfaceBlock *> interfaces;
        Block *parent;
 
        Block();
@@ -383,8 +385,6 @@ struct Stage
        Type type;
        Stage *previous;
        Block content;
-       std::map<std::string, VariableDeclaration *> in_variables;
-       std::map<std::string, VariableDeclaration *> out_variables;
        std::map<std::string, unsigned> locations;
        Features required_features;
 
index 0577b5ab213f5e67296f87e0285323cc0e361433..c27de11892607ec627e1a6bf7022e2aa267e0023 100644 (file)
@@ -165,10 +165,6 @@ void NodeRemover::visit(VariableDeclaration &var)
        if(recursive_remove || to_remove->count(&var))
        {
                remove_variable(current_block->variables, var);
-               if(current_block->anonymous && current_block->parent)
-                       remove_variable(current_block->parent->variables, var);
-               remove_variable(stage->in_variables, var);
-               remove_variable(stage->out_variables, var);
                stage->locations.erase(var.name);
                if(var.linked_declaration)
                        var.linked_declaration->linked_declaration = 0;
@@ -179,6 +175,8 @@ void NodeRemover::visit(VariableDeclaration &var)
 
 void NodeRemover::visit(InterfaceBlock &iface)
 {
+       if(to_remove->count(&iface))
+               current_block->interfaces.erase(&iface);
        SetFlag set_recursive(recursive_remove, recursive_remove || to_remove->count(&iface));
        TraversingVisitor::visit(iface);
 }
index 685bb4eef7a8ee09745f0e026e57687b78491d36..2a4ef549b827b4f9b42fb1c7db411770dc92ff21 100644 (file)
@@ -86,7 +86,6 @@ class NodeRemover: private TraversingVisitor
 private:
        Stage *stage;
        const std::set<Node *> *to_remove;
-       bool anonymous;
        bool recursive_remove;
 
 public: