2019-01-22 15:59:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2019 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SKSL_DEFINES
|
|
|
|
#define SKSL_DEFINES
|
2019-06-19 15:40:33 +00:00
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkTypes.h"
|
2021-03-04 19:30:25 +00:00
|
|
|
#include "include/private/SkTArray.h"
|
2019-01-22 15:59:11 +00:00
|
|
|
|
2020-12-29 14:47:20 +00:00
|
|
|
using SKSL_INT = int64_t;
|
2019-06-19 15:40:33 +00:00
|
|
|
using SKSL_FLOAT = float;
|
|
|
|
|
2021-02-02 23:35:09 +00:00
|
|
|
namespace SkSL {
|
2021-02-18 21:06:17 +00:00
|
|
|
|
2021-03-04 19:30:25 +00:00
|
|
|
class Expression;
|
|
|
|
class Statement;
|
|
|
|
|
|
|
|
using ComponentArray = SkSTArray<4, int8_t>; // for Swizzles
|
2022-01-21 22:12:09 +00:00
|
|
|
|
|
|
|
class ExpressionArray : public SkSTArray<2, std::unique_ptr<Expression>> {
|
|
|
|
public:
|
|
|
|
using SkSTArray::SkSTArray;
|
|
|
|
|
|
|
|
/** Returns a new ExpressionArray containing a clone of every element. */
|
|
|
|
ExpressionArray clone() const;
|
|
|
|
};
|
|
|
|
|
2021-03-04 19:30:25 +00:00
|
|
|
using StatementArray = SkSTArray<2, std::unique_ptr<Statement>>;
|
|
|
|
|
2021-02-02 23:35:09 +00:00
|
|
|
// Functions larger than this (measured in IR nodes) will not be inlined. This growth factor
|
|
|
|
// accounts for the number of calls being inlined--i.e., a function called five times (that is, with
|
|
|
|
// five inlining opportunities) would be considered 5x larger than if it were called once. This
|
|
|
|
// default threshold value is arbitrary, but tends to work well in practice.
|
|
|
|
static constexpr int kDefaultInlineThreshold = 50;
|
2021-02-18 21:06:17 +00:00
|
|
|
|
2021-11-04 17:32:00 +00:00
|
|
|
// A hard upper limit on the number of variable slots allowed in a function/global scope.
|
|
|
|
// This is an arbitrary limit, but is needed to prevent code generation from taking unbounded
|
|
|
|
// amounts of time or space.
|
|
|
|
static constexpr int kVariableSlotLimit = 100000;
|
|
|
|
|
2021-02-18 21:06:17 +00:00
|
|
|
// The SwizzleComponent namespace is used both by the SkSL::Swizzle expression, and the DSL swizzle.
|
|
|
|
// This namespace is injected into SkSL::dsl so that `using namespace SkSL::dsl` enables DSL code
|
|
|
|
// like `Swizzle(var, X, Y, ONE)` to compile without any extra qualifications.
|
|
|
|
namespace SwizzleComponent {
|
|
|
|
|
|
|
|
enum Type : int8_t {
|
2021-09-02 20:38:43 +00:00
|
|
|
X = 0, Y = 1, Z = 2, W = 3,
|
|
|
|
R = 4, G = 5, B = 6, A = 7,
|
|
|
|
S = 8, T = 9, P = 10, Q = 11,
|
|
|
|
UL = 12, UT = 13, UR = 14, UB = 15,
|
2021-02-18 21:06:17 +00:00
|
|
|
ZERO,
|
|
|
|
ONE
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace SwizzleComponent
|
|
|
|
} // namespace SkSL
|
2021-02-02 23:35:09 +00:00
|
|
|
|
2019-01-22 15:59:11 +00:00
|
|
|
#endif
|