]> git.tdb.fi Git - libs/gl.git/commitdiff
Clarify SL::Compiler::optimize return values by using an enum
authorMikko Rasa <tdb@tdb.fi>
Mon, 1 Mar 2021 14:19:09 +0000 (16:19 +0200)
committerMikko Rasa <tdb@tdb.fi>
Mon, 1 Mar 2021 14:19:09 +0000 (16:19 +0200)
source/glsl/compiler.cpp
source/glsl/compiler.h

index c68b67bd0cd629f81db2838c60840b43c1abe720..cedd25e759bf2e48bf87b7afb27c10488e712fda 100644 (file)
@@ -76,9 +76,11 @@ void Compiler::compile(Mode mode)
 {
        for(list<Stage>::iterator i=module->stages.begin(); i!=module->stages.end(); ++i)
                generate(*i, mode);
-       for(list<Stage>::iterator i=module->stages.begin(); i!=module->stages.end(); )
+       unsigned n = 0;
+       for(list<Stage>::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
                        ++i;
@@ -240,7 +242,7 @@ void Compiler::generate(Stage &stage, Mode mode)
                LegacyConverter().apply(stage, features);
 }
 
-bool Compiler::optimize(Stage &stage)
+Compiler::OptimizeResult Compiler::optimize(Stage &stage)
 {
        ConstantConditionEliminator().apply(stage);
 
@@ -250,10 +252,10 @@ bool Compiler::optimize(Stage &stage)
 
        /* Removing variables or functions may cause things from the previous stage
        to become unused. */
-       bool result = UnusedVariableRemover().apply(stage);
-       result |= UnusedFunctionRemover().apply(stage);
+       bool any_removed = UnusedVariableRemover().apply(stage);
+       any_removed |= UnusedFunctionRemover().apply(stage);
 
-       return result;
+       return any_removed ? REDO_PREVIOUS : NEXT_STAGE;
 }
 
 void Compiler::finalize(Stage &stage, Mode mode)
index 1f3cbee4698c466a7b88b562d56373f7f9b0fb6e..64cbac4f7cefd801d1c8f38667d488995a0cd6da 100644 (file)
@@ -21,6 +21,12 @@ public:
        };
 
 private:
+       enum OptimizeResult
+       {
+               NEXT_STAGE,
+               REDO_PREVIOUS
+       };
+
        Features features;
        Module *module;
        std::vector<std::string> imported_names;
@@ -102,9 +108,9 @@ private:
        variables. */
        void generate(Stage &, Mode);
 
-       /** Applies optimizations to a stage.  The return value indicates if the
-       preceding stage should be processed again. */
-       bool optimize(Stage &);
+       /** Applies optimizations to a stage.  The return value indicates which
+       stage should be optimized next. */
+       OptimizeResult optimize(Stage &);
 
        /** Performs final adjustments on a stage after compilation. */
        void finalize(Stage &, Mode);