/* * Copyright 2024 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SKSL_SPECIALIZATION #define SKSL_SPECIALIZATION #include "include/private/base/SkTArray.h" #include "src/core/SkChecksum.h" #include "src/core/SkTHash.h" #include "src/utils/SkBitSet.h" #include <cstddef> #include <functional> namespace SkSL { class Expression; class FunctionCall; class FunctionDeclaration; class Variable; struct Program; namespace Analysis { /** * Design docs for SkSL function specialization: go/sksl-function-specialization * https://docs.google.com/document/d/1dJdkk2-KmP-62EERzKygzsLLnxihCbDcFi3UHc1WzAM/edit?usp=sharing */ // The current index of the specialization function being walked through, used to // track what the proper specialization function call should be if walking through a // specialized function call stack. SpecializationIndex; static constexpr SpecializationIndex kUnspecialized = …; // Global uniforms used by a specialization, // maps <function parameter, expression referencing global uniform> SpecializedParameters; // The set of specializated implementations needed for a given function. Specializations; // The full set of all specializations required by the program. SpecializationMap; // This can be used as a key into a map of specialized function declarations. Most backends which // implement function specialization will have a need for this. struct SpecializedFunctionKey { … }; // This is used as a key into the SpecializedCallMap. struct SpecializedCallKey { … }; // The mapping of function calls and their inherited specialization to their corresponding // specialization index in `Specializations` SpecializedCallMap; struct SpecializationInfo { … }; // A function that returns true if the parameter variable fits the criteria // to create a specialization. ParameterMatchesFn; // Finds functions that contain parameters that should be specialized on and writes the // specialization info to the provided `SpecializationInfo`. void FindFunctionsToSpecialize(const Program& program, SpecializationInfo* info, const ParameterMatchesFn& specializationFn); // Given a function call and the active specialization index, looks up the specialization index for // the call target. In other words: in the specialization map, we first look up the call target's // declaration, which yields a Specialization array. We would find the correct mappings in the array // at the SpecializationIndex returned by this function. SpecializationIndex FindSpecializationIndexForCall(const FunctionCall& call, const SpecializationInfo& info, SpecializationIndex activeSpecializationIndex); // Given a function, returns a bit-mask corresponding to each parameter. If a bit is set, the // corresponding parameter is specialized and should be excluded from the argument/parameter list. SkBitSet FindSpecializedParametersForFunction(const FunctionDeclaration& func, const SpecializationInfo& info); // Given a function and its specialization index, invokes a callback once per specialized parameter. // The callback will be passed the parameter's index, the parameter variable, and the specialized // value at the given specialization index. ParameterMappingCallback; void GetParameterMappingsForFunction(const FunctionDeclaration& func, const SpecializationInfo& info, SpecializationIndex specializationIndex, const ParameterMappingCallback& callback); } // namespace Analysis } // namespace SkSL #endif