X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fgenerate.h;h=fc58b2db16134108cf4e7fa653d6c1a6258b9ce3;hb=241cf36a6d7735706804bb3c517529bbe078f1ee;hp=63f1b0770ba435b287157eef975514b7e41cab9d;hpb=de87bb70ae10de39a39b2415407a234ab28099cf;p=libs%2Fgl.git diff --git a/source/glsl/generate.h b/source/glsl/generate.h index 63f1b077..fc58b2db 100644 --- a/source/glsl/generate.h +++ b/source/glsl/generate.h @@ -11,118 +11,18 @@ namespace Msp { namespace GL { namespace SL { -/** Combines multiple declarations of the same identifier into one. */ -class DeclarationCombiner: private TraversingVisitor +/** Assigns IDs to specialization constants with an automatic ID. */ +class ConstantIdAssigner: private TraversingVisitor { private: - std::map > functions; - std::map variables; - std::set nodes_to_remove; - -public: - void apply(Stage &); - -private: - virtual void visit(Block &); - virtual void visit(VariableDeclaration &); - virtual void visit(FunctionDeclaration &) { } -}; - -/** Manipulates specialization constants. If values are specified, turns -specialization constants into normal constants. Without values assigns -automatic constant_ids to specialization constants. */ -class ConstantSpecializer: private TraversingVisitor -{ -private: - const std::map *values; - -public: - ConstantSpecializer(); - - void apply(Stage &, const std::map *); - -private: - virtual void visit(VariableDeclaration &); -}; - -/** Forms links between nested blocks in the syntax tree. */ -class BlockHierarchyResolver: private TraversingVisitor -{ -public: - void apply(Stage &s) { s.content.visit(*this); } - -private: - virtual void enter(Block &); -}; - -/** Resolves types of variables and base types of other types. */ -class TypeResolver: private TraversingVisitor -{ -private: - Stage *stage; - std::map alias_map; - std::map array_types; - NodeList::iterator type_insert_point; + std::set used_ids; + std::vector auto_constants; public: - TypeResolver(); - - void apply(Stage &); - -private: - TypeDeclaration *resolve_type(const std::string &); - virtual void visit(Block &); - virtual void visit(BasicTypeDeclaration &); - virtual void visit(ImageTypeDeclaration &); - virtual void visit(StructDeclaration &); - virtual void visit(VariableDeclaration &); - virtual void visit(FunctionDeclaration &); -}; - -/** Resolves variable references. Variable references which match the name -of an interface block are turned into interface block references. */ -class VariableResolver: private TraversingVisitor -{ -private: - Stage *stage; - std::map *r_members; - RefPtr r_iface_ref; - std::string block_interface; - bool record_target; - bool r_self_referencing; - VariableDeclaration *r_assignment_target; - -public: - VariableResolver(); - - void apply(Stage &); + void apply(Module &, const Features &); private: - virtual void enter(Block &); - virtual void visit(VariableReference &); - virtual void visit(InterfaceBlockReference &); - virtual void visit(MemberAccess &); - virtual void visit(UnaryExpression &); - virtual void visit(BinaryExpression &); - virtual void visit(Assignment &); - virtual void visit(FunctionCall &); virtual void visit(VariableDeclaration &); - virtual void visit(InterfaceBlock &); -}; - -/** Resolves function declarations and calls. */ -class FunctionResolver: private TraversingVisitor -{ -private: - Stage *stage; - std::map > declarations; - -public: - void apply(Stage &); - -private: - virtual void visit(FunctionCall &); - virtual void visit(FunctionDeclaration &); }; /** Materializes implicitly declared interfaces. @@ -136,20 +36,18 @@ Unresolved variables are looked up in the previous stage's out variables. */ class InterfaceGenerator: private TraversingVisitor { private: - Stage *stage; + Stage *stage = 0; std::string in_prefix; std::string out_prefix; - bool function_scope; - InterfaceBlock *iface_block; - bool copy_block; - Block *iface_target_block; + bool function_scope = false; + bool copy_block = false; + std::vector declared_inputs; + Block *iface_target_block = 0; NodeList::iterator iface_insert_point; NodeList::iterator assignment_insert_point; std::set nodes_to_remove; public: - InterfaceGenerator(); - void apply(Stage &); private: