Edit

kc3-lang/angle/src/compiler/translator/TranslatorGLSL.h

Branch :

  • Show log

    Commit

  • Author : Olli Etuaho
    Date : 2017-10-23 12:20:45
    Hash : 89a69a03
    Message : Generate performance warnings in HLSL translation Generate performance warnings for some code that undergoes heavy emulation when translated to HLSL: 1. Dynamic indexing of vectors and matrices. 2. Non-empty fall-through cases in switch/case. The warnings are generated only when code is translated to HLSL. Generating them in the parsing stage would add too much maintenance burden. Improves switch statement fall-through handling in cases where an empty fall-through case follows a non-empty one so that extra performance warnings are not generated. BUG=angleproject:1116 Change-Id: I7c85d78fe7c4f8e6042bda72ceaaf6e37dadfe6c Reviewed-on: https://chromium-review.googlesource.com/732986 Commit-Queue: Olli Etuaho <oetuaho@nvidia.com> Reviewed-by: Corentin Wallez <cwallez@chromium.org>

  • src/compiler/translator/TranslatorGLSL.h
  • //
    // Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style license that can be
    // found in the LICENSE file.
    //
    
    #ifndef COMPILER_TRANSLATOR_TRANSLATORGLSL_H_
    #define COMPILER_TRANSLATOR_TRANSLATORGLSL_H_
    
    #include "compiler/translator/Compiler.h"
    
    namespace sh
    {
    
    class TranslatorGLSL : public TCompiler
    {
      public:
        TranslatorGLSL(sh::GLenum type, ShShaderSpec spec, ShShaderOutput output);
    
      protected:
        void initBuiltInFunctionEmulator(BuiltInFunctionEmulator *emu,
                                         ShCompileOptions compileOptions) override;
    
        void translate(TIntermBlock *root,
                       ShCompileOptions compileOptions,
                       PerformanceDiagnostics *perfDiagnostics) override;
        bool shouldFlattenPragmaStdglInvariantAll() override;
        bool shouldCollectVariables(ShCompileOptions compileOptions) override;
    
      private:
        void writeVersion(TIntermNode *root);
        void writeExtensionBehavior(TIntermNode *root, ShCompileOptions compileOptions);
        void conditionallyOutputInvariantDeclaration(const char *builtinVaryingName);
    };
    
    }  // namespace sh
    
    #endif  // COMPILER_TRANSLATOR_TRANSLATORGLSL_H_