blob: 45c868b76fc092eb160e00cdbb6af4a06b4ca96e [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 Nicholascc305772017-10-13 16:17:45 -040086 void write(const char* s);
87
88 void writeLine();
89
90 void writeLine(const char* s);
91
92 void write(const String& s);
93
94 void writeLine(const String& s);
95
John Stilese8b5a732021-03-12 13:25:52 -050096 void finishLine();
97
Michael Ludwigbf58add2021-03-16 10:40:11 -040098 void writeHeader();
99
Ethan Nicholascc305772017-10-13 16:17:45 -0400100 void writeUniformStruct();
101
102 void writeInputStruct();
103
104 void writeOutputStruct();
105
Timothy Liang7d637782018-06-05 09:58:07 -0400106 void writeInterfaceBlocks();
107
John Stilesdc75a972020-11-25 16:24:55 -0500108 void writeStructDefinitions();
109
Timothy Liangdc89f192018-06-13 09:20:31 -0400110 void writeFields(const std::vector<Type::Field>& fields, int parentOffset,
111 const InterfaceBlock* parentIntf = nullptr);
112
Timothy Liang7d637782018-06-05 09:58:07 -0400113 int size(const Type* type, bool isPacked) const;
114
115 int alignment(const Type* type, bool isPacked) const;
116
Timothy Liangee84fe12018-05-18 14:38:19 -0400117 void writeGlobalStruct();
John Stilesd7199b22020-12-30 16:22:58 -0500118
John Stilescdcdb042020-07-06 09:03:51 -0400119 void writeGlobalInit();
Timothy Liangee84fe12018-05-18 14:38:19 -0400120
Ethan Nicholascc305772017-10-13 16:17:45 -0400121 void writePrecisionModifier();
122
Ethan Nicholas45fa8102020-01-13 10:58:49 -0500123 String typeName(const Type& type);
124
Brian Osman02bc5222021-01-28 11:00:20 -0500125 void writeStructDefinition(const StructDefinition& s);
John Stilesdc75a972020-11-25 16:24:55 -0500126
John Stilesb4418502021-02-04 10:57:08 -0500127 void writeType(const Type& type);
Ethan Nicholascc305772017-10-13 16:17:45 -0400128
129 void writeExtension(const Extension& ext);
130
131 void writeInterfaceBlock(const InterfaceBlock& intf);
132
133 void writeFunctionStart(const FunctionDeclaration& f);
134
John Stiles06b84ef2020-12-09 12:35:48 -0500135 void writeFunctionRequirementParams(const FunctionDeclaration& f,
136 const char*& separator);
137
138 void writeFunctionRequirementArgs(const FunctionDeclaration& f, const char*& separator);
139
John Stiles569249b2020-11-03 12:18:22 -0500140 bool writeFunctionDeclaration(const FunctionDeclaration& f);
Ethan Nicholascc305772017-10-13 16:17:45 -0400141
142 void writeFunction(const FunctionDefinition& f);
143
John Stiles569249b2020-11-03 12:18:22 -0500144 void writeFunctionPrototype(const FunctionPrototype& f);
145
Ethan Nicholascc305772017-10-13 16:17:45 -0400146 void writeLayout(const Layout& layout);
147
148 void writeModifiers(const Modifiers& modifiers, bool globalContext);
149
Ethan Nicholascc305772017-10-13 16:17:45 -0400150 void writeVarInitializer(const Variable& var, const Expression& value);
151
Timothy Liang651286f2018-06-07 09:55:33 -0400152 void writeName(const String& name);
153
Brian Osmanc0213602020-10-06 14:43:32 -0400154 void writeVarDeclaration(const VarDeclaration& decl, bool global);
Ethan Nicholascc305772017-10-13 16:17:45 -0400155
156 void writeFragCoord();
157
158 void writeVariableReference(const VariableReference& ref);
159
160 void writeExpression(const Expression& expr, Precedence parentPrecedence);
161
Ethan Nicholascc305772017-10-13 16:17:45 -0400162 void writeMinAbsHack(Expression& absExpr, Expression& otherExpr);
163
John Stiles06b84ef2020-12-09 12:35:48 -0500164 String getOutParamHelper(const FunctionCall& c,
165 const ExpressionArray& arguments,
166 const SkTArray<VariableReference*>& outVars);
Ethan Nicholascc305772017-10-13 16:17:45 -0400167
John Stilesd7199b22020-12-30 16:22:58 -0500168 String getInversePolyfill(const ExpressionArray& arguments);
John Stilesb21fac22020-12-04 15:36:49 -0500169
John Stilesf64e4072020-12-10 10:34:27 -0500170 String getBitcastIntrinsic(const Type& outType);
171
John Stiles86424eb2020-12-11 11:17:14 -0500172 String getTempVariable(const Type& varType);
173
John Stilesb21fac22020-12-04 15:36:49 -0500174 void writeFunctionCall(const FunctionCall& c);
Chris Daltondba7aab2018-11-15 10:57:49 -0500175
John Stiles8cad6372021-04-07 12:31:13 -0400176 bool matrixConstructHelperIsNeeded(const ConstructorCompound& c);
John Stiles5abb9e12021-04-06 13:47:19 -0400177 String getMatrixConstructHelper(const AnyConstructor& c);
John Stilesfcf8cb22020-08-06 14:29:22 -0400178 void assembleMatrixFromMatrix(const Type& sourceMatrix, int rows, int columns);
John Stiles5abb9e12021-04-06 13:47:19 -0400179 void assembleMatrixFromExpressions(const AnyConstructor& ctor, int rows, int columns);
Ethan Nicholas842d31b2019-01-22 10:59:11 -0500180
Brian Osman93aed9a2020-12-28 15:18:46 -0500181 void writeMatrixCompMult();
John Stiles01cdf012021-02-10 09:53:41 -0500182
Ethan Nicholas0dc80872019-02-08 15:46:24 -0500183 void writeMatrixTimesEqualHelper(const Type& left, const Type& right, const Type& result);
184
John Stiles39346472021-04-29 14:39:35 -0400185 void writeMatrixEqualityHelpers(const Type& left, const Type& right);
John Stiles01cdf012021-02-10 09:53:41 -0500186
John Stiles39346472021-04-29 14:39:35 -0400187 void writeArrayEqualityHelpers(const Type& type);
188
189 void writeStructEqualityHelpers(const Type& type);
190
191 void writeEqualityHelpers(const Type& leftType, const Type& rightType);
John Stiles01cdf012021-02-10 09:53:41 -0500192
John Stilesd7199b22020-12-30 16:22:58 -0500193 void writeArgumentList(const ExpressionArray& arguments);
194
John Stiles791c27d2020-12-30 14:56:57 -0500195 void writeSimpleIntrinsic(const FunctionCall& c);
196
John Stiles496b7d12021-05-06 10:26:45 -0400197 bool writeIntrinsicCall(const FunctionCall& c, IntrinsicKind kind);
Timothy Liang6403b0e2018-05-17 10:40:04 -0400198
Ethan Nicholas842d31b2019-01-22 10:59:11 -0500199 bool canCoerce(const Type& t1, const Type& t2);
200
John Stiles8cad6372021-04-07 12:31:13 -0400201 void writeConstructorCompound(const ConstructorCompound& c, Precedence parentPrecedence);
John Stiles2bec8ab2021-04-06 18:40:04 -0400202
John Stiles8cad6372021-04-07 12:31:13 -0400203 void writeConstructorCompoundMatrix(const ConstructorCompound& c, Precedence parentPrecedence);
John Stiles2bec8ab2021-04-06 18:40:04 -0400204
John Stiles5abb9e12021-04-06 13:47:19 -0400205 void writeConstructorMatrixResize(const ConstructorMatrixResize& c,
206 Precedence parentPrecedence);
207
John Stilesb14a8192021-04-05 11:40:46 -0400208 void writeAnyConstructor(const AnyConstructor& c,
209 const char* leftBracket,
210 const char* rightBracket,
211 Precedence parentPrecedence);
John Stiles7384b372021-04-01 13:48:15 -0400212
John Stilesb14a8192021-04-05 11:40:46 -0400213 void writeCastConstructor(const AnyConstructor& c,
214 const char* leftBracket,
215 const char* rightBracket,
216 Precedence parentPrecedence);
John Stilese1182782021-03-30 22:09:37 -0400217
Ethan Nicholascc305772017-10-13 16:17:45 -0400218 void writeFieldAccess(const FieldAccess& f);
219
220 void writeSwizzle(const Swizzle& swizzle);
221
Ethan Nicholascc305772017-10-13 16:17:45 -0400222 void writeBinaryExpression(const BinaryExpression& b, Precedence parentPrecedence);
223
224 void writeTernaryExpression(const TernaryExpression& t, Precedence parentPrecedence);
225
226 void writeIndexExpression(const IndexExpression& expr);
227
228 void writePrefixExpression(const PrefixExpression& p, Precedence parentPrecedence);
229
230 void writePostfixExpression(const PostfixExpression& p, Precedence parentPrecedence);
231
232 void writeBoolLiteral(const BoolLiteral& b);
233
234 void writeIntLiteral(const IntLiteral& i);
235
236 void writeFloatLiteral(const FloatLiteral& f);
237
238 void writeSetting(const Setting& s);
239
240 void writeStatement(const Statement& s);
241
John Stiles8f2a0cf2020-10-13 12:48:21 -0400242 void writeStatements(const StatementArray& statements);
Ethan Nicholascc305772017-10-13 16:17:45 -0400243
244 void writeBlock(const Block& b);
245
246 void writeIfStatement(const IfStatement& stmt);
247
248 void writeForStatement(const ForStatement& f);
249
Ethan Nicholascc305772017-10-13 16:17:45 -0400250 void writeDoStatement(const DoStatement& d);
251
252 void writeSwitchStatement(const SwitchStatement& s);
253
John Stiles986c7fb2020-12-01 14:44:56 -0500254 void writeReturnStatementFromMain();
255
Ethan Nicholascc305772017-10-13 16:17:45 -0400256 void writeReturnStatement(const ReturnStatement& r);
257
258 void writeProgramElement(const ProgramElement& e);
259
260 Requirements requirements(const FunctionDeclaration& f);
261
Ethan Nicholasff350cb2020-05-14 14:05:13 -0400262 Requirements requirements(const Expression* e);
Ethan Nicholascc305772017-10-13 16:17:45 -0400263
Ethan Nicholasff350cb2020-05-14 14:05:13 -0400264 Requirements requirements(const Statement* s);
Ethan Nicholascc305772017-10-13 16:17:45 -0400265
John Stilesda5cdf62021-01-28 11:47:29 -0500266 int getUniformBinding(const Modifiers& m);
267
268 int getUniformSet(const Modifiers& m);
269
Timothy Liang651286f2018-06-07 09:55:33 -0400270 std::unordered_set<String> fReservedWords;
Timothy Lianga06f2152018-05-24 15:33:31 -0400271 std::unordered_map<const Type::Field*, const InterfaceBlock*> fInterfaceBlockMap;
272 std::unordered_map<const InterfaceBlock*, String> fInterfaceBlockNameMap;
273 int fAnonInterfaceCount = 0;
Timothy Liang7d637782018-06-05 09:58:07 -0400274 int fPaddingCount = 0;
Ethan Nicholascc305772017-10-13 16:17:45 -0400275 const char* fLineEnding;
276 const Context& fContext;
Ethan Nicholascc305772017-10-13 16:17:45 -0400277 String fFunctionHeader;
Chris Daltondba7aab2018-11-15 10:57:49 -0500278 StringStream fExtraFunctions;
Ethan Nicholascc305772017-10-13 16:17:45 -0400279 int fVarCount = 0;
280 int fIndentation = 0;
281 bool fAtLineStart = false;
Chris Daltondba7aab2018-11-15 10:57:49 -0500282 std::set<String> fWrittenIntrinsics;
Ethan Nicholascc305772017-10-13 16:17:45 -0400283 // true if we have run into usages of dFdx / dFdy
284 bool fFoundDerivatives = false;
Ethan Nicholascc305772017-10-13 16:17:45 -0400285 std::unordered_map<const FunctionDeclaration*, Requirements> fRequirements;
286 bool fSetupFragPositionGlobal = false;
287 bool fSetupFragPositionLocal = false;
John Stiles1bdafbf2020-05-28 12:17:20 -0400288 std::unordered_set<String> fHelpers;
Ethan Nicholascc305772017-10-13 16:17:45 -0400289 int fUniformBuffer = -1;
Ethan Nicholasf931e402019-07-26 15:40:33 -0400290 String fRTHeightName;
John Stiles986c7fb2020-12-01 14:44:56 -0500291 const FunctionDeclaration* fCurrentFunction = nullptr;
John Stiles06b84ef2020-12-09 12:35:48 -0500292 int fSwizzleHelperCount = 0;
293 bool fIgnoreVariableReferenceModifiers = false;
Ethan Nicholascc305772017-10-13 16:17:45 -0400294
John Stiles7571f9e2020-09-02 22:42:33 -0400295 using INHERITED = CodeGenerator;
Ethan Nicholascc305772017-10-13 16:17:45 -0400296};
297
John Stilesa6841be2020-08-06 14:11:56 -0400298} // namespace SkSL
Ethan Nicholascc305772017-10-13 16:17:45 -0400299
300#endif