X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fglsl%2Fgenerate.h;h=fc58b2db16134108cf4e7fa653d6c1a6258b9ce3;hp=72035b2c4869504199edda4df59e46958b41fed1;hb=38712d8ecc57d043a2419ffbaeeb57f7a6586f14;hpb=bf852bf402cf1cc6604816ae958c7dcf2655addc diff --git a/source/glsl/generate.h b/source/glsl/generate.h index 72035b2c..fc58b2db 100644 --- a/source/glsl/generate.h +++ b/source/glsl/generate.h @@ -11,132 +11,59 @@ namespace Msp { namespace GL { namespace SL { -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(FunctionDeclaration &); - virtual void visit(VariableDeclaration &); -}; + std::set used_ids; + std::vector auto_constants; -class BlockResolver: private TraversingVisitor -{ public: - void apply(Stage &s) { s.content.visit(*this); } + void apply(Module &, const Features &); private: - virtual void enter(Block &); - virtual void visit(InterfaceBlock &); -}; - -class VariableResolver: private TraversingVisitor -{ -private: - Block *builtins; - StructDeclaration *type; - std::string block_interface; - bool record_target; - VariableDeclaration *assignment_target; - bool self_referencing; - -public: - VariableResolver(); - - void apply(Stage &); - -private: - Block *next_block(Block &); - - virtual void enter(Block &); - virtual void visit(VariableReference &); - virtual void visit(MemberAccess &); - virtual void visit(BinaryExpression &); - virtual void visit(Assignment &); - virtual void visit(StructDeclaration &); virtual void visit(VariableDeclaration &); - virtual void visit(InterfaceBlock &); }; -class FunctionResolver: private TraversingVisitor -{ -private: - std::map > functions; +/** Materializes implicitly declared interfaces. -public: - void apply(Stage &s) { s.content.visit(*this); } +Out variable declarations inside functions are moved to the global scope. -private: - virtual void visit(FunctionCall &); - virtual void visit(FunctionDeclaration &); -}; +Passthrough statements are processed, generating out variables to match in +variables and copying values. +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; + 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: static std::string get_out_prefix(Stage::Type); std::string change_prefix(const std::string &, const std::string &) const; virtual void visit(Block &); - bool generate_interface(VariableDeclaration &, const std::string &, const std::string &); + VariableDeclaration *generate_interface(VariableDeclaration &, const std::string &, const std::string &); + InterfaceBlock *generate_interface(InterfaceBlock &); ExpressionStatement &insert_assignment(const std::string &, Expression *); virtual void visit(VariableReference &); virtual void visit(VariableDeclaration &); + virtual void visit(InterfaceBlock &); virtual void visit(FunctionDeclaration &); virtual void visit(Passthrough &); }; -class DeclarationReorderer: private TraversingVisitor -{ -private: - enum DeclarationKind - { - NO_DECLARATION, - LAYOUT, - STRUCT, - VARIABLE, - FUNCTION - }; - - DeclarationKind kind; - std::set ordered_funcs; - std::set needed_funcs; - -public: - DeclarationReorderer(); - - void apply(Stage &s) { s.content.visit(*this); } - -private: - virtual void visit(Block &); - virtual void visit(FunctionCall &); - virtual void visit(InterfaceLayout &) { kind = LAYOUT; } - virtual void visit(StructDeclaration &) { kind = STRUCT; } - virtual void visit(VariableDeclaration &); - virtual void visit(InterfaceBlock &) { kind = VARIABLE; } - virtual void visit(FunctionDeclaration &); -}; - } // namespace SL } // namespace GL } // namespace Msp