X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fcompiler.cpp;h=1eeb36252ba899a8f8851798f2a393a1223cc05d;hb=d1da983b2ddfd221ef4348d2c40736264670c2b5;hp=ca6c58057022b8b3a9f69373433c0f6c54a2e35d;hpb=b30777959d8e2ab2caf489e32f40390f60a75fcb;p=libs%2Fgl.git diff --git a/source/glsl/compiler.cpp b/source/glsl/compiler.cpp index ca6c5805..1eeb3625 100644 --- a/source/glsl/compiler.cpp +++ b/source/glsl/compiler.cpp @@ -1,6 +1,7 @@ #include #include #include +#include "builtin.h" #include "compatibility.h" #include "compiler.h" #include "debug.h" @@ -21,12 +22,14 @@ namespace SL { Compiler::Compiler(): features(Features::from_context()), - module(0) + module(0), + specialized(false) { } Compiler::Compiler(const Features &f): features(f), - module(0) + module(0), + specialized(false) { } Compiler::~Compiler() @@ -63,15 +66,23 @@ void Compiler::load_source(IO::Base &io, const string &src_name) load_source(io, 0, src_name); } +void Compiler::specialize(const map &sv) +{ + specialized = true; + spec_values = sv; +} + void Compiler::compile(Mode mode) { for(list::iterator i=module->stages.begin(); i!=module->stages.end(); ++i) generate(*i, mode); - for(list::iterator i=module->stages.begin(); i!=module->stages.end(); ) + unsigned n = 0; + for(list::iterator i=module->stages.begin(); (i!=module->stages.end() && n<10000); ++n) { - if(optimize(*i)) + OptimizeResult result = optimize(*i); + if(result==REDO_PREVIOUS) i = module->stages.begin(); - else + else if(result!=REDO_STAGE) ++i; } for(list::iterator i=module->stages.begin(); i!=module->stages.end(); ++i) @@ -177,6 +188,13 @@ void Compiler::append_stage(Stage &stage) target = &*i; } + if(target->content.body.empty()) + { + Stage *builtins = get_builtins(stage.type); + if(builtins && builtins!=&stage) + append_stage(*builtins); + } + if(stage.required_features.glsl_version>target->required_features.glsl_version) target->required_features.glsl_version = stage.required_features.glsl_version; for(NodeList::iterator i=stage.content.body.begin(); i!=stage.content.body.end(); ++i) @@ -205,30 +223,39 @@ void Compiler::generate(Stage &stage, Mode mode) stage.required_features.glsl_version = module->shared.required_features.glsl_version; inject_block(stage.content, module->shared.content); - DeclarationReorderer().apply(stage); - BlockResolver().apply(stage); + // Initial resolving pass + BlockHierarchyResolver().apply(stage); FunctionResolver().apply(stage); VariableResolver().apply(stage); + + /* All variables local to a stage have been resolved. Resolve non-local + variables through interfaces. */ InterfaceGenerator().apply(stage); VariableResolver().apply(stage); - DeclarationReorderer().apply(stage); + FunctionResolver().apply(stage); + ConstantSpecializer().apply(stage, (mode==PROGRAM && specialized ? &spec_values : 0)); if(mode==PROGRAM) LegacyConverter().apply(stage, features); } -bool Compiler::optimize(Stage &stage) +Compiler::OptimizeResult Compiler::optimize(Stage &stage) { ConstantConditionEliminator().apply(stage); - FunctionInliner().apply(stage); - BlockResolver().apply(stage); - VariableResolver().apply(stage); + bool any_inlined = FunctionInliner().apply(stage); + if(any_inlined) + { + VariableResolver().apply(stage); + FunctionResolver().apply(stage); + } - bool result = UnusedVariableRemover().apply(stage); - result |= UnusedFunctionRemover().apply(stage); + /* Removing variables or functions may cause things from the previous stage + to become unused. */ + bool any_removed = UnusedVariableRemover().apply(stage); + any_removed |= UnusedFunctionRemover().apply(stage); - return result; + return any_removed ? REDO_PREVIOUS : any_inlined ? REDO_STAGE : NEXT_STAGE; } void Compiler::finalize(Stage &stage, Mode mode)