blob: b5695be269cfb23ff0af55f97277146a20808916 [file] [log] [blame]
Ethan Nicholascc305772017-10-13 16:17:45 -04001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SKSL_METALCODEGENERATOR
9#define SKSL_METALCODEGENERATOR
10
Brian Osman00185012021-02-04 16:07:11 -050011#include <set>
Ethan Nicholascc305772017-10-13 16:17:45 -040012#include <stack>
13#include <tuple>
14#include <unordered_map>
John Stiles1bdafbf2020-05-28 12:17:20 -040015#include <unordered_set>
Ethan Nicholascc305772017-10-13 16:17:45 -040016
Ethan Nicholas24c17722021-03-09 13:10:59 -050017#include "include/private/SkSLProgramElement.h"
18#include "include/private/SkSLStatement.h"
Brian Osman00185012021-02-04 16:07:11 -050019#include "src/sksl/SkSLOperators.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050020#include "src/sksl/SkSLStringStream.h"
John Stiles3738ef52021-04-13 10:41:57 -040021#include "src/sksl/codegen/SkSLCodeGenerator.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050022#include "src/sksl/ir/SkSLBinaryExpression.h"
23#include "src/sksl/ir/SkSLBoolLiteral.h"
24#include "src/sksl/ir/SkSLConstructor.h"
John Stiles8cad6372021-04-07 12:31:13 -040025#include "src/sksl/ir/SkSLConstructorCompound.h"
John Stiles5abb9e12021-04-06 13:47:19 -040026#include "src/sksl/ir/SkSLConstructorMatrixResize.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050027#include "src/sksl/ir/SkSLDoStatement.h"
28#include "src/sksl/ir/SkSLExtension.h"
29#include "src/sksl/ir/SkSLFieldAccess.h"
30#include "src/sksl/ir/SkSLFloatLiteral.h"
31#include "src/sksl/ir/SkSLForStatement.h"
32#include "src/sksl/ir/SkSLFunctionCall.h"
33#include "src/sksl/ir/SkSLFunctionDeclaration.h"
34#include "src/sksl/ir/SkSLFunctionDefinition.h"
John Stiles569249b2020-11-03 12:18:22 -050035#include "src/sksl/ir/SkSLFunctionPrototype.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050036#include "src/sksl/ir/SkSLIfStatement.h"
37#include "src/sksl/ir/SkSLIndexExpression.h"
John Stiles98c1f822020-09-09 14:18:53 -040038#include "src/sksl/ir/SkSLInlineMarker.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050039#include "src/sksl/ir/SkSLIntLiteral.h"
40#include "src/sksl/ir/SkSLInterfaceBlock.h"
41#include "src/sksl/ir/SkSLPostfixExpression.h"
42#include "src/sksl/ir/SkSLPrefixExpression.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050043#include "src/sksl/ir/SkSLReturnStatement.h"
44#include "src/sksl/ir/SkSLSetting.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050045#include "src/sksl/ir/SkSLSwitchStatement.h"
46#include "src/sksl/ir/SkSLSwizzle.h"
47#include "src/sksl/ir/SkSLTernaryExpression.h"
48#include "src/sksl/ir/SkSLVarDeclarations.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050049#include "src/sksl/ir/SkSLVariableReference.h"
Ethan Nicholascc305772017-10-13 16:17:45 -040050
51namespace SkSL {
52
Ethan Nicholascc305772017-10-13 16:17:45 -040053/**
54 * Converts a Program into Metal code.
55 */
56class MetalCodeGenerator : public CodeGenerator {
57public:
Timothy Lianga06f2152018-05-24 15:33:31 -040058 static constexpr const char* SAMPLER_SUFFIX = "Smplr";
Timothy Liang7d637782018-06-05 09:58:07 -040059 static constexpr const char* PACKED_PREFIX = "packed_";
Timothy Lianga06f2152018-05-24 15:33:31 -040060
Ethan Nicholascc305772017-10-13 16:17:45 -040061 MetalCodeGenerator(const Context* context, const Program* program, ErrorReporter* errors,
Ethan Nicholas5a9a9b82019-09-20 12:59:22 -040062 OutputStream* out)
Ethan Nicholascc305772017-10-13 16:17:45 -040063 : INHERITED(program, errors, out)
John Stiles23456532020-12-30 18:12:48 -050064 , fReservedWords({"atan2", "rsqrt", "rint", "dfdx", "dfdy", "vertex", "fragment"})
Ethan Nicholascc305772017-10-13 16:17:45 -040065 , fLineEnding("\n")
John Stiles496b7d12021-05-06 10:26:45 -040066 , fContext(*context) {}
Ethan Nicholascc305772017-10-13 16:17:45 -040067
68 bool generateCode() override;
69
70protected:
John Stiles45990502021-02-16 10:55:27 -050071 using Precedence = Operator::Precedence;
Brian Osman00185012021-02-04 16:07:11 -050072
Ethan Nicholascc305772017-10-13 16:17:45 -040073 typedef int Requirements;
Ethan Nicholasc6dce5a2019-07-24 16:51:36 -040074 static constexpr Requirements kNo_Requirements = 0;
75 static constexpr Requirements kInputs_Requirement = 1 << 0;
76 static constexpr Requirements kOutputs_Requirement = 1 << 1;
77 static constexpr Requirements kUniforms_Requirement = 1 << 2;
78 static constexpr Requirements kGlobals_Requirement = 1 << 3;
79 static constexpr Requirements kFragCoord_Requirement = 1 << 4;
Ethan Nicholascc305772017-10-13 16:17:45 -040080
John Stiles45990502021-02-16 10:55:27 -050081 static const char* OperatorName(Operator op);
John Stilesd6449e92020-11-30 09:13:23 -050082
John Stilescdcdb042020-07-06 09:03:51 -040083 class GlobalStructVisitor;
84 void visitGlobalStruct(GlobalStructVisitor* visitor);
85
Ethan Nicholas962dec42021-06-10 13:06:39 -040086 void write(skstd::string_view s);
Ethan Nicholascc305772017-10-13 16:17:45 -040087
Ethan Nicholas962dec42021-06-10 13:06:39 -040088 void writeLine(skstd::string_view s = skstd::string_view());
Ethan Nicholascc305772017-10-13 16:17:45 -040089
John Stilese8b5a732021-03-12 13:25:52 -050090 void finishLine();
91
Michael Ludwigbf58add2021-03-16 10:40:11 -040092 void writeHeader();
93
Ethan Nicholascc305772017-10-13 16:17:45 -040094 void writeUniformStruct();
95
96 void writeInputStruct();
97
98 void writeOutputStruct();
99
Timothy Liang7d637782018-06-05 09:58:07 -0400100 void writeInterfaceBlocks();
101
John Stilesdc75a972020-11-25 16:24:55 -0500102 void writeStructDefinitions();
103
Timothy Liangdc89f192018-06-13 09:20:31 -0400104 void writeFields(const std::vector<Type::Field>& fields, int parentOffset,
105 const InterfaceBlock* parentIntf = nullptr);
106
Timothy Liang7d637782018-06-05 09:58:07 -0400107 int size(const Type* type, bool isPacked) const;
108
109 int alignment(const Type* type, bool isPacked) const;
110
Timothy Liangee84fe12018-05-18 14:38:19 -0400111 void writeGlobalStruct();
John Stilesd7199b22020-12-30 16:22:58 -0500112
John Stilescdcdb042020-07-06 09:03:51 -0400113 void writeGlobalInit();
Timothy Liangee84fe12018-05-18 14:38:19 -0400114
Ethan Nicholascc305772017-10-13 16:17:45 -0400115 void writePrecisionModifier();
116
Ethan Nicholas45fa8102020-01-13 10:58:49 -0500117 String typeName(const Type& type);
118
Brian Osman02bc5222021-01-28 11:00:20 -0500119 void writeStructDefinition(const StructDefinition& s);
John Stilesdc75a972020-11-25 16:24:55 -0500120
John Stilesb4418502021-02-04 10:57:08 -0500121 void writeType(const Type& type);
Ethan Nicholascc305772017-10-13 16:17:45 -0400122
123 void writeExtension(const Extension& ext);
124
125 void writeInterfaceBlock(const InterfaceBlock& intf);
126
127 void writeFunctionStart(const FunctionDeclaration& f);
128
John Stiles06b84ef2020-12-09 12:35:48 -0500129 void writeFunctionRequirementParams(const FunctionDeclaration& f,
130 const char*& separator);
131
132 void writeFunctionRequirementArgs(const FunctionDeclaration& f, const char*& separator);
133
John Stiles569249b2020-11-03 12:18:22 -0500134 bool writeFunctionDeclaration(const FunctionDeclaration& f);
Ethan Nicholascc305772017-10-13 16:17:45 -0400135
136 void writeFunction(const FunctionDefinition& f);
137
John Stiles569249b2020-11-03 12:18:22 -0500138 void writeFunctionPrototype(const FunctionPrototype& f);
139
Ethan Nicholascc305772017-10-13 16:17:45 -0400140 void writeLayout(const Layout& layout);
141
Brian Osman58134e12021-05-13 14:51:07 -0400142 void writeModifiers(const Modifiers& modifiers);
Ethan Nicholascc305772017-10-13 16:17:45 -0400143
Ethan Nicholascc305772017-10-13 16:17:45 -0400144 void writeVarInitializer(const Variable& var, const Expression& value);
145
Ethan Nicholas962dec42021-06-10 13:06:39 -0400146 void writeName(skstd::string_view name);
Timothy Liang651286f2018-06-07 09:55:33 -0400147
Brian Osman58134e12021-05-13 14:51:07 -0400148 void writeVarDeclaration(const VarDeclaration& decl);
Ethan Nicholascc305772017-10-13 16:17:45 -0400149
150 void writeFragCoord();
151
152 void writeVariableReference(const VariableReference& ref);
153
154 void writeExpression(const Expression& expr, Precedence parentPrecedence);
155
Ethan Nicholascc305772017-10-13 16:17:45 -0400156 void writeMinAbsHack(Expression& absExpr, Expression& otherExpr);
157
John Stiles06b84ef2020-12-09 12:35:48 -0500158 String getOutParamHelper(const FunctionCall& c,
159 const ExpressionArray& arguments,
160 const SkTArray<VariableReference*>& outVars);
Ethan Nicholascc305772017-10-13 16:17:45 -0400161
John Stilesd7199b22020-12-30 16:22:58 -0500162 String getInversePolyfill(const ExpressionArray& arguments);
John Stilesb21fac22020-12-04 15:36:49 -0500163
John Stilesf64e4072020-12-10 10:34:27 -0500164 String getBitcastIntrinsic(const Type& outType);
165
John Stiles86424eb2020-12-11 11:17:14 -0500166 String getTempVariable(const Type& varType);
167
John Stilesb21fac22020-12-04 15:36:49 -0500168 void writeFunctionCall(const FunctionCall& c);
Chris Daltondba7aab2018-11-15 10:57:49 -0500169
John Stiles8cad6372021-04-07 12:31:13 -0400170 bool matrixConstructHelperIsNeeded(const ConstructorCompound& c);
John Stiles5abb9e12021-04-06 13:47:19 -0400171 String getMatrixConstructHelper(const AnyConstructor& c);
John Stilesfcf8cb22020-08-06 14:29:22 -0400172 void assembleMatrixFromMatrix(const Type& sourceMatrix, int rows, int columns);
John Stiles5abb9e12021-04-06 13:47:19 -0400173 void assembleMatrixFromExpressions(const AnyConstructor& ctor, int rows, int columns);
Ethan Nicholas842d31b2019-01-22 10:59:11 -0500174
Brian Osman93aed9a2020-12-28 15:18:46 -0500175 void writeMatrixCompMult();
John Stiles01cdf012021-02-10 09:53:41 -0500176
Ethan Nicholas0dc80872019-02-08 15:46:24 -0500177 void writeMatrixTimesEqualHelper(const Type& left, const Type& right, const Type& result);
178
John Stilesc985e142021-05-13 14:01:48 -0400179 void writeMatrixDivisionHelpers(const Type& type);
180
John Stiles39346472021-04-29 14:39:35 -0400181 void writeMatrixEqualityHelpers(const Type& left, const Type& right);
John Stiles01cdf012021-02-10 09:53:41 -0500182
John Stiles39346472021-04-29 14:39:35 -0400183 void writeArrayEqualityHelpers(const Type& type);
184
185 void writeStructEqualityHelpers(const Type& type);
186
187 void writeEqualityHelpers(const Type& leftType, const Type& rightType);
John Stiles01cdf012021-02-10 09:53:41 -0500188
John Stilesd7199b22020-12-30 16:22:58 -0500189 void writeArgumentList(const ExpressionArray& arguments);
190
John Stiles791c27d2020-12-30 14:56:57 -0500191 void writeSimpleIntrinsic(const FunctionCall& c);
192
John Stiles496b7d12021-05-06 10:26:45 -0400193 bool writeIntrinsicCall(const FunctionCall& c, IntrinsicKind kind);
Timothy Liang6403b0e2018-05-17 10:40:04 -0400194
Ethan Nicholas842d31b2019-01-22 10:59:11 -0500195 bool canCoerce(const Type& t1, const Type& t2);
196
John Stiles8cad6372021-04-07 12:31:13 -0400197 void writeConstructorCompound(const ConstructorCompound& c, Precedence parentPrecedence);
John Stiles2bec8ab2021-04-06 18:40:04 -0400198
John Stiles8cad6372021-04-07 12:31:13 -0400199 void writeConstructorCompoundMatrix(const ConstructorCompound& c, Precedence parentPrecedence);
John Stiles2bec8ab2021-04-06 18:40:04 -0400200
John Stiles5abb9e12021-04-06 13:47:19 -0400201 void writeConstructorMatrixResize(const ConstructorMatrixResize& c,
202 Precedence parentPrecedence);
203
John Stilesb14a8192021-04-05 11:40:46 -0400204 void writeAnyConstructor(const AnyConstructor& c,
205 const char* leftBracket,
206 const char* rightBracket,
207 Precedence parentPrecedence);
John Stiles7384b372021-04-01 13:48:15 -0400208
John Stilesb14a8192021-04-05 11:40:46 -0400209 void writeCastConstructor(const AnyConstructor& c,
210 const char* leftBracket,
211 const char* rightBracket,
212 Precedence parentPrecedence);
John Stilese1182782021-03-30 22:09:37 -0400213
Ethan Nicholascc305772017-10-13 16:17:45 -0400214 void writeFieldAccess(const FieldAccess& f);
215
216 void writeSwizzle(const Swizzle& swizzle);
217
John Stiles6b131292021-05-12 17:12:21 -0400218 // Splats a scalar expression across a matrix of arbitrary size.
219 void writeNumberAsMatrix(const Expression& expr, const Type& matrixType);
220
Ethan Nicholascc305772017-10-13 16:17:45 -0400221 void writeBinaryExpression(const BinaryExpression& b, Precedence parentPrecedence);
222
223 void writeTernaryExpression(const TernaryExpression& t, Precedence parentPrecedence);
224
225 void writeIndexExpression(const IndexExpression& expr);
226
227 void writePrefixExpression(const PrefixExpression& p, Precedence parentPrecedence);
228
229 void writePostfixExpression(const PostfixExpression& p, Precedence parentPrecedence);
230
231 void writeBoolLiteral(const BoolLiteral& b);
232
233 void writeIntLiteral(const IntLiteral& i);
234
235 void writeFloatLiteral(const FloatLiteral& f);
236
237 void writeSetting(const Setting& s);
238
239 void writeStatement(const Statement& s);
240
John Stiles8f2a0cf2020-10-13 12:48:21 -0400241 void writeStatements(const StatementArray& statements);
Ethan Nicholascc305772017-10-13 16:17:45 -0400242
243 void writeBlock(const Block& b);
244
245 void writeIfStatement(const IfStatement& stmt);
246
247 void writeForStatement(const ForStatement& f);
248
Ethan Nicholascc305772017-10-13 16:17:45 -0400249 void writeDoStatement(const DoStatement& d);
250
251 void writeSwitchStatement(const SwitchStatement& s);
252
John Stiles986c7fb2020-12-01 14:44:56 -0500253 void writeReturnStatementFromMain();
254
Ethan Nicholascc305772017-10-13 16:17:45 -0400255 void writeReturnStatement(const ReturnStatement& r);
256
257 void writeProgramElement(const ProgramElement& e);
258
259 Requirements requirements(const FunctionDeclaration& f);
260
Ethan Nicholasff350cb2020-05-14 14:05:13 -0400261 Requirements requirements(const Expression* e);
Ethan Nicholascc305772017-10-13 16:17:45 -0400262
Ethan Nicholasff350cb2020-05-14 14:05:13 -0400263 Requirements requirements(const Statement* s);
Ethan Nicholascc305772017-10-13 16:17:45 -0400264
John Stilesda5cdf62021-01-28 11:47:29 -0500265 int getUniformBinding(const Modifiers& m);
266
267 int getUniformSet(const Modifiers& m);
268
Ethan Nicholas962dec42021-06-10 13:06:39 -0400269 std::unordered_set<skstd::string_view> fReservedWords;
Timothy Lianga06f2152018-05-24 15:33:31 -0400270 std::unordered_map<const Type::Field*, const InterfaceBlock*> fInterfaceBlockMap;
271 std::unordered_map<const InterfaceBlock*, String> fInterfaceBlockNameMap;
272 int fAnonInterfaceCount = 0;
Timothy Liang7d637782018-06-05 09:58:07 -0400273 int fPaddingCount = 0;
Ethan Nicholascc305772017-10-13 16:17:45 -0400274 const char* fLineEnding;
275 const Context& fContext;
Ethan Nicholascc305772017-10-13 16:17:45 -0400276 String fFunctionHeader;
Chris Daltondba7aab2018-11-15 10:57:49 -0500277 StringStream fExtraFunctions;
Ethan Nicholascc305772017-10-13 16:17:45 -0400278 int fVarCount = 0;
279 int fIndentation = 0;
280 bool fAtLineStart = false;
Chris Daltondba7aab2018-11-15 10:57:49 -0500281 std::set<String> fWrittenIntrinsics;
Ethan Nicholascc305772017-10-13 16:17:45 -0400282 // true if we have run into usages of dFdx / dFdy
283 bool fFoundDerivatives = false;
Ethan Nicholascc305772017-10-13 16:17:45 -0400284 std::unordered_map<const FunctionDeclaration*, Requirements> fRequirements;
285 bool fSetupFragPositionGlobal = false;
286 bool fSetupFragPositionLocal = false;
John Stiles1bdafbf2020-05-28 12:17:20 -0400287 std::unordered_set<String> fHelpers;
Ethan Nicholascc305772017-10-13 16:17:45 -0400288 int fUniformBuffer = -1;
Brian Salomond8d85b92021-07-07 09:41:17 -0400289 String fRTFlipName;
John Stiles986c7fb2020-12-01 14:44:56 -0500290 const FunctionDeclaration* fCurrentFunction = nullptr;
John Stiles06b84ef2020-12-09 12:35:48 -0500291 int fSwizzleHelperCount = 0;
292 bool fIgnoreVariableReferenceModifiers = false;
Ethan Nicholascc305772017-10-13 16:17:45 -0400293
John Stiles7571f9e2020-09-02 22:42:33 -0400294 using INHERITED = CodeGenerator;
Ethan Nicholascc305772017-10-13 16:17:45 -0400295};
296
John Stilesa6841be2020-08-06 14:11:56 -0400297} // namespace SkSL
Ethan Nicholascc305772017-10-13 16:17:45 -0400298
299#endif