]> git.tdb.fi Git - libs/gl.git/blobdiff - source/glsl/syntax.cpp
Fix a name conflict in certain inlining scenarios
[libs/gl.git] / source / glsl / syntax.cpp
index 8b00e82e46eae73f397c599f6a9e3ea0008b4e3a..45765f27d88dbf0599e9de494a5ceea90dc64dd4 100644 (file)
@@ -78,8 +78,7 @@ NodeContainer<C>::NodeContainer(const NodeContainer &c):
 Block::Block(const Block &other):
        Node(other),
        body(other.body),
-       use_braces(other.use_braces),
-       parent(0)
+       use_braces(other.use_braces)
 { }
 
 void Block::visit(NodeVisitor &visitor)
@@ -294,6 +293,7 @@ void VariableDeclaration::visit(NodeVisitor &visitor)
 
 InterfaceBlock::InterfaceBlock(const InterfaceBlock &other):
        Statement(other),
+       layout(other.layout),
        interface(other.interface),
        block_name(other.block_name),
        members(other.members),
@@ -401,10 +401,40 @@ string get_unused_variable_name(const Block &block, const string &base)
        }
 }
 
-int get_layout_value(const Layout &layout, const string &name, int def_value)
+const TypeDeclaration *get_ultimate_base_type(const TypeDeclaration *type)
+{
+       if(!type)
+               return 0;
+       while(const BasicTypeDeclaration *basic = dynamic_cast<const BasicTypeDeclaration *>(type))
+       {
+               if(!basic->base_type)
+                       break;
+               type = basic->base_type;
+       }
+       return type;
+}
+
+bool has_layout_qualifier(const Layout *layout, const string &name)
+{
+       if(!layout)
+               return false;
+       auto i = find_member(layout->qualifiers, name, &Layout::Qualifier::name);
+       return i!=layout->qualifiers.end();
+}
+
+int get_layout_value(const Layout *layout, const string &name, int def_value)
 {
-       auto i = find_member(layout.qualifiers, name, &Layout::Qualifier::name);
-       return (i!=layout.qualifiers.end() ? i->value : def_value);
+       if(!layout)
+               return def_value;
+       auto i = find_member(layout->qualifiers, name, &Layout::Qualifier::name);
+       return (i!=layout->qualifiers.end() ? i->value : def_value);
+}
+
+void add_layout_qualifier(RefPtr<Layout> &layout, const Layout::Qualifier &q)
+{
+       if(!layout)
+               layout = new Layout;
+       layout->qualifiers.push_back(q);
 }
 
 void add_to_chain(Assignment::Target &target, Assignment::Target::ChainType type, unsigned index)
@@ -414,6 +444,32 @@ void add_to_chain(Assignment::Target &target, Assignment::Target::ChainType type
        ++target.chain_len;
 }
 
+bool targets_overlap(const Assignment::Target &target1, const Assignment::Target &target2)
+{
+       bool overlap = (target1.declaration==target2.declaration);
+       for(unsigned i=0; (overlap && i<target1.chain_len && i<target2.chain_len); ++i)
+       {
+               Assignment::Target::ChainType type1 = static_cast<Assignment::Target::ChainType>(target1.chain[i]&0xC0);
+               Assignment::Target::ChainType type2 = static_cast<Assignment::Target::ChainType>(target2.chain[i]&0xC0);
+               unsigned index1 = target1.chain[i]&0x3F;
+               unsigned index2 = target2.chain[i]&0x3F;
+               if(type1==Assignment::Target::SWIZZLE || type2==Assignment::Target::SWIZZLE)
+               {
+                       if(type1==Assignment::Target::SWIZZLE && type2==Assignment::Target::SWIZZLE)
+                               overlap = index1&index2;
+                       else if(type1==Assignment::Target::ARRAY && index1<4)
+                               overlap = index2&(1<<index1);
+                       else if(type2==Assignment::Target::ARRAY && index2<4)
+                               overlap = index1&(1<<index2);
+                       // Treat other combinations as overlapping (shouldn't happen)
+               }
+               else
+                       overlap = (type1==type2 && (index1==index2 || index1==0x3F || index2==0x3F));
+       }
+
+       return overlap;
+}
+
 } // namespace SL
 } // namespace GL
 } // namespace Msp