blob: 496e55c08d284274c32acac8d7a3900249442c71 [file] [log] [blame]
ethannicholasf789b382016-08-03 12:43:36 -07001/*
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 */
Greg Daniel64773e62016-11-22 09:44:03 -05007
ethannicholasf789b382016-08-03 12:43:36 -07008#include "SkSLGLSLCodeGenerator.h"
9
Ethan Nicholas941e7e22016-12-12 15:33:30 -050010#include "SkSLCompiler.h"
ethannicholasf789b382016-08-03 12:43:36 -070011#include "ir/SkSLExpressionStatement.h"
12#include "ir/SkSLExtension.h"
13#include "ir/SkSLIndexExpression.h"
ethannicholas5961bc92016-10-12 06:39:56 -070014#include "ir/SkSLModifiersDeclaration.h"
Ethan Nicholascb670962017-04-20 19:31:52 -040015#include "ir/SkSLNop.h"
ethannicholasf789b382016-08-03 12:43:36 -070016#include "ir/SkSLVariableReference.h"
17
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -040018#ifndef SKSL_STANDALONE
19#include "SkOnce.h"
20#endif
21
ethannicholasf789b382016-08-03 12:43:36 -070022namespace SkSL {
23
24void GLSLCodeGenerator::write(const char* s) {
25 if (s[0] == 0) {
26 return;
27 }
28 if (fAtLineStart) {
29 for (int i = 0; i < fIndentation; i++) {
Ethan Nicholas9e1138d2016-11-21 10:39:35 -050030 fOut->writeText(" ");
ethannicholasf789b382016-08-03 12:43:36 -070031 }
32 }
Ethan Nicholas9e1138d2016-11-21 10:39:35 -050033 fOut->writeText(s);
ethannicholasf789b382016-08-03 12:43:36 -070034 fAtLineStart = false;
35}
36
37void GLSLCodeGenerator::writeLine(const char* s) {
38 this->write(s);
Ethan Nicholas762466e2017-06-29 10:03:38 -040039 fOut->writeText(fLineEnding);
ethannicholasf789b382016-08-03 12:43:36 -070040 fAtLineStart = true;
41}
42
Ethan Nicholas0df1b042017-03-31 13:56:23 -040043void GLSLCodeGenerator::write(const String& s) {
ethannicholasf789b382016-08-03 12:43:36 -070044 this->write(s.c_str());
45}
46
Ethan Nicholas5b5f0962017-09-11 13:50:14 -070047void GLSLCodeGenerator::write(StringFragment s) {
48 if (!s.fLength) {
49 return;
50 }
51 if (fAtLineStart) {
52 for (int i = 0; i < fIndentation; i++) {
53 fOut->writeText(" ");
54 }
55 }
56 fOut->write(s.fChars, s.fLength);
57 fAtLineStart = false;
58}
59
Ethan Nicholas0df1b042017-03-31 13:56:23 -040060void GLSLCodeGenerator::writeLine(const String& s) {
ethannicholasf789b382016-08-03 12:43:36 -070061 this->writeLine(s.c_str());
62}
63
64void GLSLCodeGenerator::writeLine() {
65 this->writeLine("");
66}
67
Ethan Nicholas88f6d372018-07-27 10:03:46 -040068void GLSLCodeGenerator::writeExtension(const String& name) {
69 this->writeExtension(name, true);
70}
71
72void GLSLCodeGenerator::writeExtension(const String& name, bool require) {
73 fExtensions.writeText("#extension ");
74 fExtensions.write(name.c_str(), name.length());
75 fExtensions.writeText(require ? " : require\n" : " : enable\n");
ethannicholasf789b382016-08-03 12:43:36 -070076}
77
Ethan Nicholasf7b88202017-09-18 14:10:39 -040078bool GLSLCodeGenerator::usesPrecisionModifiers() const {
79 return fProgram.fSettings.fCaps->usesPrecisionModifiers();
80}
81
82String GLSLCodeGenerator::getTypeName(const Type& type) {
83 switch (type.kind()) {
84 case Type::kVector_Kind: {
85 Type component = type.componentType();
86 String result;
87 if (component == *fContext.fFloat_Type || component == *fContext.fHalf_Type) {
88 result = "vec";
89 }
90 else if (component == *fContext.fDouble_Type) {
91 result = "dvec";
92 }
Ruiqi Maob609e6d2018-07-17 10:19:38 -040093 else if (component == *fContext.fInt_Type ||
94 component == *fContext.fShort_Type ||
95 component == *fContext.fByte_Type) {
Ethan Nicholasf7b88202017-09-18 14:10:39 -040096 result = "ivec";
97 }
Ruiqi Maob609e6d2018-07-17 10:19:38 -040098 else if (component == *fContext.fUInt_Type ||
99 component == *fContext.fUShort_Type ||
100 component == *fContext.fUByte_Type) {
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400101 result = "uvec";
102 }
103 else if (component == *fContext.fBool_Type) {
104 result = "bvec";
105 }
106 else {
107 ABORT("unsupported vector type");
108 }
109 result += to_string(type.columns());
110 return result;
111 }
112 case Type::kMatrix_Kind: {
113 String result;
114 Type component = type.componentType();
115 if (component == *fContext.fFloat_Type || component == *fContext.fHalf_Type) {
116 result = "mat";
117 }
118 else if (component == *fContext.fDouble_Type) {
119 result = "dmat";
120 }
121 else {
122 ABORT("unsupported matrix type");
123 }
124 result += to_string(type.columns());
125 if (type.columns() != type.rows()) {
126 result += "x";
127 result += to_string(type.rows());
128 }
129 return result;
130 }
131 case Type::kArray_Kind: {
132 String result = this->getTypeName(type.componentType()) + "[";
133 if (type.columns() != -1) {
134 result += to_string(type.columns());
135 }
136 result += "]";
137 return result;
138 }
139 case Type::kScalar_Kind: {
140 if (type == *fContext.fHalf_Type) {
141 return "float";
142 }
143 else if (type == *fContext.fShort_Type) {
144 return "int";
145 }
146 else if (type == *fContext.fUShort_Type) {
147 return "uint";
148 }
Ruiqi Maob609e6d2018-07-17 10:19:38 -0400149 else if (type == *fContext.fByte_Type) {
150 return "int";
151 }
152 else if (type == *fContext.fUByte_Type) {
153 return "uint";
154 }
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400155 else {
156 return type.name();
157 }
158 break;
159 }
160 default:
161 return type.name();
162 }
163}
164
ethannicholasf789b382016-08-03 12:43:36 -0700165void GLSLCodeGenerator::writeType(const Type& type) {
166 if (type.kind() == Type::kStruct_Kind) {
167 for (const Type* search : fWrittenStructs) {
168 if (*search == type) {
169 // already written
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700170 this->write(type.fName);
ethannicholasf789b382016-08-03 12:43:36 -0700171 return;
172 }
173 }
174 fWrittenStructs.push_back(&type);
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700175 this->write("struct ");
176 this->write(type.fName);
177 this->writeLine(" {");
ethannicholasf789b382016-08-03 12:43:36 -0700178 fIndentation++;
179 for (const auto& f : type.fields()) {
ethannicholas5961bc92016-10-12 06:39:56 -0700180 this->writeModifiers(f.fModifiers, false);
Ethan Nicholasdcba08e2017-08-02 10:52:54 -0400181 this->writeTypePrecision(*f.fType);
ethannicholasf789b382016-08-03 12:43:36 -0700182 // sizes (which must be static in structs) are part of the type name here
ethannicholas0730be72016-09-01 07:59:02 -0700183 this->writeType(*f.fType);
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700184 this->write(" ");
185 this->write(f.fName);
186 this->writeLine(";");
ethannicholasf789b382016-08-03 12:43:36 -0700187 }
188 fIndentation--;
Ethan Nicholas19671772016-11-28 16:30:17 -0500189 this->write("}");
ethannicholasf789b382016-08-03 12:43:36 -0700190 } else {
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400191 this->write(this->getTypeName(type));
ethannicholasf789b382016-08-03 12:43:36 -0700192 }
193}
194
195void GLSLCodeGenerator::writeExpression(const Expression& expr, Precedence parentPrecedence) {
196 switch (expr.fKind) {
197 case Expression::kBinary_Kind:
198 this->writeBinaryExpression((BinaryExpression&) expr, parentPrecedence);
199 break;
200 case Expression::kBoolLiteral_Kind:
201 this->writeBoolLiteral((BoolLiteral&) expr);
202 break;
203 case Expression::kConstructor_Kind:
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400204 this->writeConstructor((Constructor&) expr, parentPrecedence);
ethannicholasf789b382016-08-03 12:43:36 -0700205 break;
206 case Expression::kIntLiteral_Kind:
207 this->writeIntLiteral((IntLiteral&) expr);
208 break;
209 case Expression::kFieldAccess_Kind:
210 this->writeFieldAccess(((FieldAccess&) expr));
211 break;
212 case Expression::kFloatLiteral_Kind:
213 this->writeFloatLiteral(((FloatLiteral&) expr));
214 break;
215 case Expression::kFunctionCall_Kind:
216 this->writeFunctionCall((FunctionCall&) expr);
217 break;
218 case Expression::kPrefix_Kind:
219 this->writePrefixExpression((PrefixExpression&) expr, parentPrecedence);
220 break;
221 case Expression::kPostfix_Kind:
222 this->writePostfixExpression((PostfixExpression&) expr, parentPrecedence);
223 break;
Ethan Nicholas762466e2017-06-29 10:03:38 -0400224 case Expression::kSetting_Kind:
225 this->writeSetting((Setting&) expr);
226 break;
ethannicholasf789b382016-08-03 12:43:36 -0700227 case Expression::kSwizzle_Kind:
228 this->writeSwizzle((Swizzle&) expr);
229 break;
230 case Expression::kVariableReference_Kind:
231 this->writeVariableReference((VariableReference&) expr);
232 break;
233 case Expression::kTernary_Kind:
234 this->writeTernaryExpression((TernaryExpression&) expr, parentPrecedence);
235 break;
236 case Expression::kIndex_Kind:
237 this->writeIndexExpression((IndexExpression&) expr);
238 break;
239 default:
240 ABORT("unsupported expression: %s", expr.description().c_str());
241 }
242}
243
ethannicholas5961bc92016-10-12 06:39:56 -0700244static bool is_abs(Expression& expr) {
245 if (expr.fKind != Expression::kFunctionCall_Kind) {
246 return false;
247 }
248 return ((FunctionCall&) expr).fFunction.fName == "abs";
249}
250
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500251// turns min(abs(x), y) into ((tmpVar1 = abs(x)) < (tmpVar2 = y) ? tmpVar1 : tmpVar2) to avoid a
ethannicholas5961bc92016-10-12 06:39:56 -0700252// Tegra3 compiler bug.
253void GLSLCodeGenerator::writeMinAbsHack(Expression& absExpr, Expression& otherExpr) {
Ethan Nicholasd9d33c32018-06-12 11:05:59 -0400254 SkASSERT(!fProgram.fSettings.fCaps->canUseMinAndAbsTogether());
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400255 String tmpVar1 = "minAbsHackVar" + to_string(fVarCount++);
256 String tmpVar2 = "minAbsHackVar" + to_string(fVarCount++);
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400257 this->fFunctionHeader += String(" ") + this->getTypePrecision(absExpr.fType) +
258 this->getTypeName(absExpr.fType) + " " + tmpVar1 + ";\n";
259 this->fFunctionHeader += String(" ") + this->getTypePrecision(otherExpr.fType) +
260 this->getTypeName(otherExpr.fType) + " " + tmpVar2 + ";\n";
ethannicholas5961bc92016-10-12 06:39:56 -0700261 this->write("((" + tmpVar1 + " = ");
262 this->writeExpression(absExpr, kTopLevel_Precedence);
263 this->write(") < (" + tmpVar2 + " = ");
264 this->writeExpression(otherExpr, kAssignment_Precedence);
265 this->write(") ? " + tmpVar1 + " : " + tmpVar2 + ")");
266}
267
Ethan Nicholas6e6525c2018-01-03 17:03:56 -0500268void GLSLCodeGenerator::writeInverseSqrtHack(const Expression& x) {
269 this->write("(1.0 / sqrt(");
270 this->writeExpression(x, kTopLevel_Precedence);
271 this->write("))");
272}
273
274void GLSLCodeGenerator::writeDeterminantHack(const Expression& mat) {
275 String name;
276 if (mat.fType == *fContext.fFloat2x2_Type || mat.fType == *fContext.fHalf2x2_Type) {
277 name = "_determinant2";
278 if (fWrittenIntrinsics.find(name) == fWrittenIntrinsics.end()) {
279 fWrittenIntrinsics.insert(name);
280 fExtraFunctions.writeText((
281 "float " + name + "(mat2 m) {"
282 " return m[0][0] * m[1][1] - m[0][1] * m[1][0];"
283 "}"
284 ).c_str());
285 }
286 }
287 else if (mat.fType == *fContext.fFloat3x3_Type || mat.fType == *fContext.fHalf3x3_Type) {
288 name = "_determinant3";
289 if (fWrittenIntrinsics.find(name) == fWrittenIntrinsics.end()) {
290 fWrittenIntrinsics.insert(name);
291 fExtraFunctions.writeText((
292 "float " + name + "(mat3 m) {"
293 " float a00 = m[0][0], a01 = m[0][1], a02 = m[0][2];"
294 " float a10 = m[1][0], a11 = m[1][1], a12 = m[1][2];"
295 " float a20 = m[2][0], a21 = m[2][1], a22 = m[2][2];"
296 " float b01 = a22 * a11 - a12 * a21;"
297 " float b11 = -a22 * a10 + a12 * a20;"
298 " float b21 = a21 * a10 - a11 * a20;"
299 " return a00 * b01 + a01 * b11 + a02 * b21;"
300 "}"
301 ).c_str());
302 }
303 }
304 else if (mat.fType == *fContext.fFloat4x4_Type || mat.fType == *fContext.fHalf4x4_Type) {
305 name = "_determinant3";
306 if (fWrittenIntrinsics.find(name) == fWrittenIntrinsics.end()) {
307 fWrittenIntrinsics.insert(name);
308 fExtraFunctions.writeText((
309 "mat4 " + name + "(mat4 m) {"
310 " float a00 = m[0][0], a01 = m[0][1], a02 = m[0][2], a03 = m[0][3];"
311 " float a10 = m[1][0], a11 = m[1][1], a12 = m[1][2], a13 = m[1][3];"
312 " float a20 = m[2][0], a21 = m[2][1], a22 = m[2][2], a23 = m[2][3];"
313 " float a30 = m[3][0], a31 = m[3][1], a32 = m[3][2], a33 = m[3][3];"
314 " float b00 = a00 * a11 - a01 * a10;"
315 " float b01 = a00 * a12 - a02 * a10;"
316 " float b02 = a00 * a13 - a03 * a10;"
317 " float b03 = a01 * a12 - a02 * a11;"
318 " float b04 = a01 * a13 - a03 * a11;"
319 " float b05 = a02 * a13 - a03 * a12;"
320 " float b06 = a20 * a31 - a21 * a30;"
321 " float b07 = a20 * a32 - a22 * a30;"
322 " float b08 = a20 * a33 - a23 * a30;"
323 " float b09 = a21 * a32 - a22 * a31;"
324 " float b10 = a21 * a33 - a23 * a31;"
325 " float b11 = a22 * a33 - a23 * a32;"
326 " return b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06;"
327 "}"
328 ).c_str());
329 }
330 }
331 else {
Ethan Nicholasd9d33c32018-06-12 11:05:59 -0400332 SkASSERT(false);
Ethan Nicholas6e6525c2018-01-03 17:03:56 -0500333 }
334 this->write(name + "(");
335 this->writeExpression(mat, kTopLevel_Precedence);
336 this->write(")");
337}
338
339void GLSLCodeGenerator::writeInverseHack(const Expression& mat) {
340 String name;
341 if (mat.fType == *fContext.fFloat2x2_Type || mat.fType == *fContext.fHalf2x2_Type) {
342 name = "_inverse2";
343 if (fWrittenIntrinsics.find(name) == fWrittenIntrinsics.end()) {
344 fWrittenIntrinsics.insert(name);
345 fExtraFunctions.writeText((
346 "mat2 " + name + "(mat2 m) {"
347 " return mat2(m[1][1], -m[0][1], -m[1][0], m[0][0]) / "
348 "(m[0][0] * m[1][1] - m[0][1] * m[1][0]);"
349 "}"
350 ).c_str());
351 }
352 }
353 else if (mat.fType == *fContext.fFloat3x3_Type || mat.fType == *fContext.fHalf3x3_Type) {
354 name = "_inverse3";
355 if (fWrittenIntrinsics.find(name) == fWrittenIntrinsics.end()) {
356 fWrittenIntrinsics.insert(name);
357 fExtraFunctions.writeText((
358 "mat3 " + name + "(mat3 m) {"
359 " float a00 = m[0][0], a01 = m[0][1], a02 = m[0][2];"
360 " float a10 = m[1][0], a11 = m[1][1], a12 = m[1][2];"
361 " float a20 = m[2][0], a21 = m[2][1], a22 = m[2][2];"
362 " float b01 = a22 * a11 - a12 * a21;"
363 " float b11 = -a22 * a10 + a12 * a20;"
364 " float b21 = a21 * a10 - a11 * a20;"
365 " float det = a00 * b01 + a01 * b11 + a02 * b21;"
366 " return mat3(b01, (-a22 * a01 + a02 * a21), (a12 * a01 - a02 * a11),"
367 " b11, (a22 * a00 - a02 * a20), (-a12 * a00 + a02 * a10),"
368 " b21, (-a21 * a00 + a01 * a20), (a11 * a00 - a01 * a10)) / det;"
369 "}"
370 ).c_str());
371 }
372 }
373 else if (mat.fType == *fContext.fFloat4x4_Type || mat.fType == *fContext.fHalf4x4_Type) {
374 name = "_inverse4";
375 if (fWrittenIntrinsics.find(name) == fWrittenIntrinsics.end()) {
376 fWrittenIntrinsics.insert(name);
377 fExtraFunctions.writeText((
378 "mat4 " + name + "(mat4 m) {"
379 " float a00 = m[0][0], a01 = m[0][1], a02 = m[0][2], a03 = m[0][3];"
380 " float a10 = m[1][0], a11 = m[1][1], a12 = m[1][2], a13 = m[1][3];"
381 " float a20 = m[2][0], a21 = m[2][1], a22 = m[2][2], a23 = m[2][3];"
382 " float a30 = m[3][0], a31 = m[3][1], a32 = m[3][2], a33 = m[3][3];"
383 " float b00 = a00 * a11 - a01 * a10;"
384 " float b01 = a00 * a12 - a02 * a10;"
385 " float b02 = a00 * a13 - a03 * a10;"
386 " float b03 = a01 * a12 - a02 * a11;"
387 " float b04 = a01 * a13 - a03 * a11;"
388 " float b05 = a02 * a13 - a03 * a12;"
389 " float b06 = a20 * a31 - a21 * a30;"
390 " float b07 = a20 * a32 - a22 * a30;"
391 " float b08 = a20 * a33 - a23 * a30;"
392 " float b09 = a21 * a32 - a22 * a31;"
393 " float b10 = a21 * a33 - a23 * a31;"
394 " float b11 = a22 * a33 - a23 * a32;"
395 " float det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - "
396 " b04 * b07 + b05 * b06;"
397 " return mat4("
398 " a11 * b11 - a12 * b10 + a13 * b09,"
399 " a02 * b10 - a01 * b11 - a03 * b09,"
400 " a31 * b05 - a32 * b04 + a33 * b03,"
401 " a22 * b04 - a21 * b05 - a23 * b03,"
402 " a12 * b08 - a10 * b11 - a13 * b07,"
403 " a00 * b11 - a02 * b08 + a03 * b07,"
404 " a32 * b02 - a30 * b05 - a33 * b01,"
405 " a20 * b05 - a22 * b02 + a23 * b01,"
406 " a10 * b10 - a11 * b08 + a13 * b06,"
407 " a01 * b08 - a00 * b10 - a03 * b06,"
408 " a30 * b04 - a31 * b02 + a33 * b00,"
409 " a21 * b02 - a20 * b04 - a23 * b00,"
410 " a11 * b07 - a10 * b09 - a12 * b06,"
411 " a00 * b09 - a01 * b07 + a02 * b06,"
412 " a31 * b01 - a30 * b03 - a32 * b00,"
413 " a20 * b03 - a21 * b01 + a22 * b00) / det;"
414 "}"
415 ).c_str());
416 }
417 }
418 else {
Ethan Nicholasd9d33c32018-06-12 11:05:59 -0400419 SkASSERT(false);
Ethan Nicholas6e6525c2018-01-03 17:03:56 -0500420 }
421 this->write(name + "(");
422 this->writeExpression(mat, kTopLevel_Precedence);
423 this->write(")");
424}
425
426void GLSLCodeGenerator::writeTransposeHack(const Expression& mat) {
427 String name = "transpose" + to_string(mat.fType.columns()) + to_string(mat.fType.rows());
428 if (fWrittenIntrinsics.find(name) == fWrittenIntrinsics.end()) {
429 fWrittenIntrinsics.insert(name);
430 String type = this->getTypeName(mat.fType);
431 const Type& base = mat.fType.componentType();
432 String transposed = this->getTypeName(base.toCompound(fContext,
433 mat.fType.rows(),
434 mat.fType.columns()));
435 fExtraFunctions.writeText((transposed + " " + name + "(" + type + " m) {\nreturn " +
436 transposed + "(").c_str());
437 const char* separator = "";
438 for (int row = 0; row < mat.fType.rows(); ++row) {
439 for (int column = 0; column < mat.fType.columns(); ++column) {
440 fExtraFunctions.writeText(separator);
441 fExtraFunctions.writeText(("m[" + to_string(column) + "][" + to_string(row) +
442 "]").c_str());
443 separator = ", ";
444 }
445 }
446 fExtraFunctions.writeText("); }");
447 }
448 this->write(name + "(");
449 this->writeExpression(mat, kTopLevel_Precedence);
450 this->write(")");
451}
452
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400453std::unordered_map<StringFragment, GLSLCodeGenerator::FunctionClass>*
454 GLSLCodeGenerator::fFunctionClasses = nullptr;
455
ethannicholasf789b382016-08-03 12:43:36 -0700456void GLSLCodeGenerator::writeFunctionCall(const FunctionCall& c) {
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400457#ifdef SKSL_STANDALONE
458 if (!fFunctionClasses) {
459#else
460 static SkOnce once;
461 once([] {
462#endif
463 fFunctionClasses = new std::unordered_map<StringFragment, FunctionClass>();
Adrienne Walker92b161f2018-08-22 10:41:52 -0700464 (*fFunctionClasses)["abs"] = FunctionClass::kAbs;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400465 (*fFunctionClasses)["atan"] = FunctionClass::kAtan;
466 (*fFunctionClasses)["determinant"] = FunctionClass::kDeterminant;
467 (*fFunctionClasses)["dFdx"] = FunctionClass::kDerivative;
468 (*fFunctionClasses)["dFdy"] = FunctionClass::kDerivative;
469 (*fFunctionClasses)["fract"] = FunctionClass::kFract;
470 (*fFunctionClasses)["inverse"] = FunctionClass::kInverse;
471 (*fFunctionClasses)["inverseSqrt"] = FunctionClass::kInverseSqrt;
472 (*fFunctionClasses)["min"] = FunctionClass::kMin;
Adrienne Walker2f4c09b2018-08-22 16:04:57 -0700473 (*fFunctionClasses)["pow"] = FunctionClass::kPow;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400474 (*fFunctionClasses)["saturate"] = FunctionClass::kSaturate;
475 (*fFunctionClasses)["texture"] = FunctionClass::kTexture;
476 (*fFunctionClasses)["transpose"] = FunctionClass::kTranspose;
ethannicholas5961bc92016-10-12 06:39:56 -0700477 }
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400478#ifndef SKSL_STANDALONE
479 );
480#endif
481 const auto found = c.fFunction.fBuiltin ? fFunctionClasses->find(c.fFunction.fName) :
482 fFunctionClasses->end();
Brian Osman8a83ca42018-02-12 14:32:17 -0500483 bool isTextureFunctionWithBias = false;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400484 bool nameWritten = false;
485 if (found != fFunctionClasses->end()) {
486 switch (found->second) {
Adrienne Walker92b161f2018-08-22 10:41:52 -0700487 case FunctionClass::kAbs: {
488 if (!fProgram.fSettings.fCaps->emulateAbsIntFunction())
489 break;
490 SkASSERT(c.fArguments.size() == 1);
491 if (c.fArguments[0]->fType != *fContext.fInt_Type)
492 break;
493 // abs(int) on Intel OSX is incorrect, so emulate it:
494 String name = "_absemulation";
495 this->write(name);
496 nameWritten = true;
497 if (fWrittenIntrinsics.find(name) == fWrittenIntrinsics.end()) {
498 fWrittenIntrinsics.insert(name);
499 fExtraFunctions.writeText((
500 "int " + name + "(int x) {\n"
501 " return x * sign(x);\n"
502 "}\n"
503 ).c_str());
504 }
505 break;
506 }
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400507 case FunctionClass::kAtan:
508 if (fProgram.fSettings.fCaps->mustForceNegatedAtanParamToFloat() &&
509 c.fArguments.size() == 2 &&
510 c.fArguments[1]->fKind == Expression::kPrefix_Kind) {
511 const PrefixExpression& p = (PrefixExpression&) *c.fArguments[1];
512 if (p.fOperator == Token::MINUS) {
513 this->write("atan(");
514 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
515 this->write(", -1.0 * ");
516 this->writeExpression(*p.fOperand, kMultiplicative_Precedence);
517 this->write(")");
518 return;
519 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500520 }
521 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400522 case FunctionClass::kDerivative:
523 if (!fFoundDerivatives &&
524 fProgram.fSettings.fCaps->shaderDerivativeExtensionString()) {
525 SkASSERT(fProgram.fSettings.fCaps->shaderDerivativeSupport());
526 this->writeExtension(fProgram.fSettings.fCaps->shaderDerivativeExtensionString());
527 fFoundDerivatives = true;
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500528 }
529 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400530 case FunctionClass::kDeterminant:
531 if (fProgram.fSettings.fCaps->generation() < k150_GrGLSLGeneration) {
532 SkASSERT(c.fArguments.size() == 1);
533 this->writeDeterminantHack(*c.fArguments[0]);
534 return;
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500535 }
536 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400537 case FunctionClass::kFract:
538 if (!fProgram.fSettings.fCaps->canUseFractForNegativeValues()) {
539 SkASSERT(c.fArguments.size() == 1);
540 this->write("(0.5 - sign(");
541 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
542 this->write(") * (0.5 - fract(abs(");
543 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
544 this->write("))))");
545 return;
546 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500547 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400548 case FunctionClass::kInverse:
549 if (fProgram.fSettings.fCaps->generation() < k140_GrGLSLGeneration) {
550 SkASSERT(c.fArguments.size() == 1);
551 this->writeInverseHack(*c.fArguments[0]);
552 return;
553 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500554 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400555 case FunctionClass::kInverseSqrt:
556 if (fProgram.fSettings.fCaps->generation() < k130_GrGLSLGeneration) {
557 SkASSERT(c.fArguments.size() == 1);
558 this->writeInverseSqrtHack(*c.fArguments[0]);
559 return;
560 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500561 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400562 case FunctionClass::kMin:
563 if (!fProgram.fSettings.fCaps->canUseMinAndAbsTogether()) {
564 SkASSERT(c.fArguments.size() == 2);
565 if (is_abs(*c.fArguments[0])) {
566 this->writeMinAbsHack(*c.fArguments[0], *c.fArguments[1]);
567 return;
568 }
569 if (is_abs(*c.fArguments[1])) {
570 // note that this violates the GLSL left-to-right evaluation semantics.
571 // I doubt it will ever end up mattering, but it's worth calling out.
572 this->writeMinAbsHack(*c.fArguments[1], *c.fArguments[0]);
573 return;
574 }
575 }
576 break;
Adrienne Walker2f4c09b2018-08-22 16:04:57 -0700577 case FunctionClass::kPow:
578 if (!fProgram.fSettings.fCaps->removePowWithConstantExponent()) {
579 break;
580 }
581 // pow(x, y) on some NVIDIA drivers causes crashes if y is a
582 // constant. It's hard to tell what constitutes "constant" here
583 // so just replace in all cases.
584
585 // Change pow(x, y) into exp2(y * log2(x))
586 this->write("exp2(");
587 this->writeExpression(*c.fArguments[1], kMultiplicative_Precedence);
588 this->write(" * log2(");
589 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
590 this->write("))");
591 return;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400592 case FunctionClass::kSaturate:
593 SkASSERT(c.fArguments.size() == 1);
594 this->write("clamp(");
595 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
596 this->write(", 0.0, 1.0)");
597 return;
598 case FunctionClass::kTexture: {
599 const char* dim = "";
600 bool proj = false;
601 switch (c.fArguments[0]->fType.dimensions()) {
602 case SpvDim1D:
603 dim = "1D";
604 isTextureFunctionWithBias = true;
605 if (c.fArguments[1]->fType == *fContext.fFloat_Type) {
606 proj = false;
607 } else {
608 SkASSERT(c.fArguments[1]->fType == *fContext.fFloat2_Type);
609 proj = true;
610 }
611 break;
612 case SpvDim2D:
613 dim = "2D";
614 if (c.fArguments[0]->fType != *fContext.fSamplerExternalOES_Type) {
615 isTextureFunctionWithBias = true;
616 }
617 if (c.fArguments[1]->fType == *fContext.fFloat2_Type) {
618 proj = false;
619 } else {
620 SkASSERT(c.fArguments[1]->fType == *fContext.fFloat3_Type);
621 proj = true;
622 }
623 break;
624 case SpvDim3D:
625 dim = "3D";
626 isTextureFunctionWithBias = true;
627 if (c.fArguments[1]->fType == *fContext.fFloat3_Type) {
628 proj = false;
629 } else {
630 SkASSERT(c.fArguments[1]->fType == *fContext.fFloat4_Type);
631 proj = true;
632 }
633 break;
634 case SpvDimCube:
635 dim = "Cube";
636 isTextureFunctionWithBias = true;
637 proj = false;
638 break;
639 case SpvDimRect:
640 dim = "Rect";
641 proj = false;
642 break;
643 case SpvDimBuffer:
644 SkASSERT(false); // doesn't exist
645 dim = "Buffer";
646 proj = false;
647 break;
648 case SpvDimSubpassData:
649 SkASSERT(false); // doesn't exist
650 dim = "SubpassData";
651 proj = false;
652 break;
653 }
654 this->write("texture");
655 if (fProgram.fSettings.fCaps->generation() < k130_GrGLSLGeneration) {
656 this->write(dim);
657 }
658 if (proj) {
659 this->write("Proj");
660 }
661 nameWritten = true;
662 break;
663 }
664 case FunctionClass::kTranspose:
665 if (fProgram.fSettings.fCaps->generation() < k130_GrGLSLGeneration) {
666 SkASSERT(c.fArguments.size() == 1);
667 this->writeTransposeHack(*c.fArguments[0]);
668 return;
669 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500670 break;
671 }
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400672 }
673 if (!nameWritten) {
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500674 this->write(c.fFunction.fName);
675 }
676 this->write("(");
ethannicholasf789b382016-08-03 12:43:36 -0700677 const char* separator = "";
678 for (const auto& arg : c.fArguments) {
679 this->write(separator);
680 separator = ", ";
681 this->writeExpression(*arg, kSequence_Precedence);
682 }
Brian Osman8a83ca42018-02-12 14:32:17 -0500683 if (fProgram.fSettings.fSharpenTextures && isTextureFunctionWithBias) {
684 this->write(", -0.5");
685 }
ethannicholasf789b382016-08-03 12:43:36 -0700686 this->write(")");
687}
688
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400689void GLSLCodeGenerator::writeConstructor(const Constructor& c, Precedence parentPrecedence) {
690 if (c.fArguments.size() == 1 &&
691 this->getTypeName(c.fType) == this->getTypeName(c.fArguments[0]->fType)) {
692 // in cases like half(float), they're different types as far as SkSL is concerned but the
693 // same type as far as GLSL is concerned. We avoid a redundant float(float) by just writing
694 // out the inner expression here.
695 this->writeExpression(*c.fArguments[0], parentPrecedence);
696 return;
697 }
Ethan Nicholas5af9ea32017-07-28 15:19:46 -0400698 this->writeType(c.fType);
699 this->write("(");
ethannicholasf789b382016-08-03 12:43:36 -0700700 const char* separator = "";
701 for (const auto& arg : c.fArguments) {
702 this->write(separator);
703 separator = ", ";
704 this->writeExpression(*arg, kSequence_Precedence);
705 }
706 this->write(")");
707}
708
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500709void GLSLCodeGenerator::writeFragCoord() {
Brian Osmancd3261a2018-01-16 13:52:29 +0000710 if (!fProgram.fSettings.fCaps->canUseFragCoord()) {
Brian Salomondba65f92018-01-22 08:43:38 -0500711 if (!fSetupFragCoordWorkaround) {
712 const char* precision = usesPrecisionModifiers() ? "highp " : "";
713 fFunctionHeader += precision;
714 fFunctionHeader += " float sk_FragCoord_InvW = 1. / sk_FragCoord_Workaround.w;\n";
715 fFunctionHeader += precision;
716 fFunctionHeader += " vec4 sk_FragCoord_Resolved = "
717 "vec4(sk_FragCoord_Workaround.xyz * sk_FragCoord_InvW, sk_FragCoord_InvW);\n";
718 // Ensure that we get exact .5 values for x and y.
719 fFunctionHeader += " sk_FragCoord_Resolved.xy = floor(sk_FragCoord_Resolved.xy) + "
720 "vec2(.5);\n";
721 fSetupFragCoordWorkaround = true;
722 }
723 this->write("sk_FragCoord_Resolved");
Brian Osmancd3261a2018-01-16 13:52:29 +0000724 return;
725 }
726
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500727 // We only declare "gl_FragCoord" when we're in the case where we want to use layout qualifiers
728 // to reverse y. Otherwise it isn't necessary and whether the "in" qualifier appears in the
729 // declaration varies in earlier GLSL specs. So it is simpler to omit it.
730 if (!fProgram.fSettings.fFlipY) {
731 this->write("gl_FragCoord");
732 } else if (const char* extension =
Ethan Nicholascd700e92018-08-24 16:43:57 -0400733 fProgram.fSettings.fCaps->fragCoordConventionsExtensionString()) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500734 if (!fSetupFragPositionGlobal) {
735 if (fProgram.fSettings.fCaps->generation() < k150_GrGLSLGeneration) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -0400736 this->writeExtension(extension);
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500737 }
Ethan Nicholas88f6d372018-07-27 10:03:46 -0400738 fGlobals.writeText("layout(origin_upper_left) in vec4 gl_FragCoord;\n");
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500739 fSetupFragPositionGlobal = true;
Greg Daniele8e4a3e2016-12-12 17:20:42 +0000740 }
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500741 this->write("gl_FragCoord");
Greg Daniele8e4a3e2016-12-12 17:20:42 +0000742 } else {
Ethan Nicholascd700e92018-08-24 16:43:57 -0400743 if (!fSetupFragPositionLocal) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500744 // The Adreno compiler seems to be very touchy about access to "gl_FragCoord".
745 // Accessing glFragCoord.zw can cause a program to fail to link. Additionally,
746 // depending on the surrounding code, accessing .xy with a uniform involved can
Brian Osmancd3261a2018-01-16 13:52:29 +0000747 // do the same thing. Copying gl_FragCoord.xy into a temp float2 beforehand
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500748 // (and only accessing .xy) seems to "fix" things.
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400749 const char* precision = usesPrecisionModifiers() ? "highp " : "";
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500750 fFunctionHeader += precision;
751 fFunctionHeader += " vec2 _sktmpCoord = gl_FragCoord.xy;\n";
752 fFunctionHeader += precision;
Greg Daniele6ab9982018-08-22 13:56:32 +0000753 fFunctionHeader += " vec4 sk_FragCoord = vec4(_sktmpCoord.x, " SKSL_RTHEIGHT_NAME
754 " - _sktmpCoord.y, 1.0, 1.0);\n";
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500755 fSetupFragPositionLocal = true;
756 }
757 this->write("sk_FragCoord");
758 }
759}
760
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500761void GLSLCodeGenerator::writeVariableReference(const VariableReference& ref) {
762 switch (ref.fVariable.fModifiers.fLayout.fBuiltin) {
763 case SK_FRAGCOLOR_BUILTIN:
764 if (fProgram.fSettings.fCaps->mustDeclareFragmentShaderOutput()) {
765 this->write("sk_FragColor");
766 } else {
767 this->write("gl_FragColor");
768 }
769 break;
770 case SK_FRAGCOORD_BUILTIN:
771 this->writeFragCoord();
772 break;
Ethan Nicholascd700e92018-08-24 16:43:57 -0400773 case SK_WIDTH_BUILTIN:
774 this->write("u_skRTWidth");
775 break;
776 case SK_HEIGHT_BUILTIN:
777 this->write("u_skRTHeight");
778 break;
Chris Dalton49d14e92018-07-27 12:38:35 -0600779 case SK_CLOCKWISE_BUILTIN:
Chris Daltonc8ece3d2018-07-30 15:03:45 -0600780 this->write(fProgram.fSettings.fFlipY ? "(!gl_FrontFacing)" : "gl_FrontFacing");
Chris Dalton49d14e92018-07-27 12:38:35 -0600781 break;
Ethan Nicholasa51740c2017-02-07 14:53:32 -0500782 case SK_VERTEXID_BUILTIN:
783 this->write("gl_VertexID");
784 break;
Chris Dalton8580d512017-10-14 22:12:33 -0600785 case SK_INSTANCEID_BUILTIN:
786 this->write("gl_InstanceID");
787 break;
Ethan Nicholas67d64602017-02-09 10:15:25 -0500788 case SK_CLIPDISTANCE_BUILTIN:
789 this->write("gl_ClipDistance");
790 break;
Ethan Nicholas52cad152017-02-16 16:37:32 -0500791 case SK_IN_BUILTIN:
792 this->write("gl_in");
793 break;
794 case SK_INVOCATIONID_BUILTIN:
795 this->write("gl_InvocationID");
796 break;
Ethan Nicholaseab2baa2018-04-13 15:16:27 -0400797 case SK_LASTFRAGCOLOR_BUILTIN:
798 this->write(fProgram.fSettings.fCaps->fbFetchColorName());
799 break;
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500800 default:
801 this->write(ref.fVariable.fName);
ethannicholas5961bc92016-10-12 06:39:56 -0700802 }
ethannicholasf789b382016-08-03 12:43:36 -0700803}
804
805void GLSLCodeGenerator::writeIndexExpression(const IndexExpression& expr) {
806 this->writeExpression(*expr.fBase, kPostfix_Precedence);
807 this->write("[");
808 this->writeExpression(*expr.fIndex, kTopLevel_Precedence);
809 this->write("]");
810}
811
Brian Osmancd3261a2018-01-16 13:52:29 +0000812bool is_sk_position(const FieldAccess& f) {
813 return "sk_Position" == f.fBase->fType.fields()[f.fFieldIndex].fName;
814}
815
ethannicholasf789b382016-08-03 12:43:36 -0700816void GLSLCodeGenerator::writeFieldAccess(const FieldAccess& f) {
817 if (f.fOwnerKind == FieldAccess::kDefault_OwnerKind) {
818 this->writeExpression(*f.fBase, kPostfix_Precedence);
819 this->write(".");
820 }
Ethan Nicholas67d64602017-02-09 10:15:25 -0500821 switch (f.fBase->fType.fields()[f.fFieldIndex].fModifiers.fLayout.fBuiltin) {
822 case SK_CLIPDISTANCE_BUILTIN:
823 this->write("gl_ClipDistance");
824 break;
825 default:
Ethan Nicholasbed683a2017-09-26 14:23:59 -0400826 StringFragment name = f.fBase->fType.fields()[f.fFieldIndex].fName;
827 if (name == "sk_Position") {
828 this->write("gl_Position");
829 } else if (name == "sk_PointSize") {
830 this->write("gl_PointSize");
831 } else {
832 this->write(f.fBase->fType.fields()[f.fFieldIndex].fName);
833 }
Ethan Nicholas67d64602017-02-09 10:15:25 -0500834 }
ethannicholasf789b382016-08-03 12:43:36 -0700835}
836
837void GLSLCodeGenerator::writeSwizzle(const Swizzle& swizzle) {
838 this->writeExpression(*swizzle.fBase, kPostfix_Precedence);
839 this->write(".");
840 for (int c : swizzle.fComponents) {
841 this->write(&("x\0y\0z\0w\0"[c * 2]));
842 }
843}
844
Ethan Nicholas762466e2017-06-29 10:03:38 -0400845GLSLCodeGenerator::Precedence GLSLCodeGenerator::GetBinaryPrecedence(Token::Kind op) {
ethannicholasf789b382016-08-03 12:43:36 -0700846 switch (op) {
847 case Token::STAR: // fall through
848 case Token::SLASH: // fall through
849 case Token::PERCENT: return GLSLCodeGenerator::kMultiplicative_Precedence;
850 case Token::PLUS: // fall through
851 case Token::MINUS: return GLSLCodeGenerator::kAdditive_Precedence;
852 case Token::SHL: // fall through
853 case Token::SHR: return GLSLCodeGenerator::kShift_Precedence;
854 case Token::LT: // fall through
855 case Token::GT: // fall through
856 case Token::LTEQ: // fall through
857 case Token::GTEQ: return GLSLCodeGenerator::kRelational_Precedence;
858 case Token::EQEQ: // fall through
859 case Token::NEQ: return GLSLCodeGenerator::kEquality_Precedence;
860 case Token::BITWISEAND: return GLSLCodeGenerator::kBitwiseAnd_Precedence;
861 case Token::BITWISEXOR: return GLSLCodeGenerator::kBitwiseXor_Precedence;
862 case Token::BITWISEOR: return GLSLCodeGenerator::kBitwiseOr_Precedence;
863 case Token::LOGICALAND: return GLSLCodeGenerator::kLogicalAnd_Precedence;
864 case Token::LOGICALXOR: return GLSLCodeGenerator::kLogicalXor_Precedence;
865 case Token::LOGICALOR: return GLSLCodeGenerator::kLogicalOr_Precedence;
866 case Token::EQ: // fall through
867 case Token::PLUSEQ: // fall through
868 case Token::MINUSEQ: // fall through
869 case Token::STAREQ: // fall through
870 case Token::SLASHEQ: // fall through
871 case Token::PERCENTEQ: // fall through
872 case Token::SHLEQ: // fall through
873 case Token::SHREQ: // fall through
874 case Token::LOGICALANDEQ: // fall through
875 case Token::LOGICALXOREQ: // fall through
876 case Token::LOGICALOREQ: // fall through
877 case Token::BITWISEANDEQ: // fall through
878 case Token::BITWISEXOREQ: // fall through
879 case Token::BITWISEOREQ: return GLSLCodeGenerator::kAssignment_Precedence;
Ethan Nicholas4b330df2017-05-17 10:52:55 -0400880 case Token::COMMA: return GLSLCodeGenerator::kSequence_Precedence;
ethannicholasf789b382016-08-03 12:43:36 -0700881 default: ABORT("unsupported binary operator");
882 }
883}
884
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400885void GLSLCodeGenerator::writeBinaryExpression(const BinaryExpression& b,
ethannicholasf789b382016-08-03 12:43:36 -0700886 Precedence parentPrecedence) {
Adrienne Walkerc02165f2018-08-21 11:08:11 -0700887 if (fProgram.fSettings.fCaps->unfoldShortCircuitAsTernary() &&
888 (b.fOperator == Token::LOGICALAND || b.fOperator == Token::LOGICALOR)) {
889 this->writeShortCircuitWorkaroundExpression(b, parentPrecedence);
890 return;
891 }
892
Ethan Nicholas762466e2017-06-29 10:03:38 -0400893 Precedence precedence = GetBinaryPrecedence(b.fOperator);
ethannicholasf789b382016-08-03 12:43:36 -0700894 if (precedence >= parentPrecedence) {
895 this->write("(");
896 }
Ethan Nicholas0b631962018-07-24 13:41:11 -0400897 bool positionWorkaround = fProgramKind == Program::Kind::kVertex_Kind &&
898 Compiler::IsAssignment(b.fOperator) &&
Brian Osmancd3261a2018-01-16 13:52:29 +0000899 Expression::kFieldAccess_Kind == b.fLeft->fKind &&
900 is_sk_position((FieldAccess&) *b.fLeft) &&
901 !strstr(b.fRight->description().c_str(), "sk_RTAdjust") &&
902 !fProgram.fSettings.fCaps->canUseFragCoord();
903 if (positionWorkaround) {
904 this->write("sk_FragCoord_Workaround = (");
905 }
ethannicholasf789b382016-08-03 12:43:36 -0700906 this->writeExpression(*b.fLeft, precedence);
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700907 this->write(" ");
908 this->write(Compiler::OperatorName(b.fOperator));
909 this->write(" ");
ethannicholasf789b382016-08-03 12:43:36 -0700910 this->writeExpression(*b.fRight, precedence);
Brian Osmancd3261a2018-01-16 13:52:29 +0000911 if (positionWorkaround) {
912 this->write(")");
913 }
ethannicholasf789b382016-08-03 12:43:36 -0700914 if (precedence >= parentPrecedence) {
915 this->write(")");
916 }
917}
918
Adrienne Walkerc02165f2018-08-21 11:08:11 -0700919void GLSLCodeGenerator::writeShortCircuitWorkaroundExpression(const BinaryExpression& b,
920 Precedence parentPrecedence) {
921 if (kTernary_Precedence >= parentPrecedence) {
922 this->write("(");
923 }
924
925 // Transform:
926 // a && b => a ? b : false
927 // a || b => a ? true : b
928 this->writeExpression(*b.fLeft, kTernary_Precedence);
929 this->write(" ? ");
930 if (b.fOperator == Token::LOGICALAND) {
931 this->writeExpression(*b.fRight, kTernary_Precedence);
932 } else {
933 BoolLiteral boolTrue(fContext, -1, true);
934 this->writeBoolLiteral(boolTrue);
935 }
936 this->write(" : ");
937 if (b.fOperator == Token::LOGICALAND) {
938 BoolLiteral boolFalse(fContext, -1, false);
939 this->writeBoolLiteral(boolFalse);
940 } else {
941 this->writeExpression(*b.fRight, kTernary_Precedence);
942 }
943 if (kTernary_Precedence >= parentPrecedence) {
944 this->write(")");
945 }
946}
947
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400948void GLSLCodeGenerator::writeTernaryExpression(const TernaryExpression& t,
ethannicholasf789b382016-08-03 12:43:36 -0700949 Precedence parentPrecedence) {
950 if (kTernary_Precedence >= parentPrecedence) {
951 this->write("(");
952 }
953 this->writeExpression(*t.fTest, kTernary_Precedence);
954 this->write(" ? ");
955 this->writeExpression(*t.fIfTrue, kTernary_Precedence);
956 this->write(" : ");
957 this->writeExpression(*t.fIfFalse, kTernary_Precedence);
958 if (kTernary_Precedence >= parentPrecedence) {
959 this->write(")");
960 }
961}
962
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400963void GLSLCodeGenerator::writePrefixExpression(const PrefixExpression& p,
ethannicholasf789b382016-08-03 12:43:36 -0700964 Precedence parentPrecedence) {
965 if (kPrefix_Precedence >= parentPrecedence) {
966 this->write("(");
967 }
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700968 this->write(Compiler::OperatorName(p.fOperator));
ethannicholasf789b382016-08-03 12:43:36 -0700969 this->writeExpression(*p.fOperand, kPrefix_Precedence);
970 if (kPrefix_Precedence >= parentPrecedence) {
971 this->write(")");
972 }
973}
974
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400975void GLSLCodeGenerator::writePostfixExpression(const PostfixExpression& p,
ethannicholasf789b382016-08-03 12:43:36 -0700976 Precedence parentPrecedence) {
977 if (kPostfix_Precedence >= parentPrecedence) {
978 this->write("(");
979 }
980 this->writeExpression(*p.fOperand, kPostfix_Precedence);
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700981 this->write(Compiler::OperatorName(p.fOperator));
ethannicholasf789b382016-08-03 12:43:36 -0700982 if (kPostfix_Precedence >= parentPrecedence) {
983 this->write(")");
984 }
985}
986
987void GLSLCodeGenerator::writeBoolLiteral(const BoolLiteral& b) {
988 this->write(b.fValue ? "true" : "false");
989}
990
991void GLSLCodeGenerator::writeIntLiteral(const IntLiteral& i) {
ethannicholas5961bc92016-10-12 06:39:56 -0700992 if (i.fType == *fContext.fUInt_Type) {
993 this->write(to_string(i.fValue & 0xffffffff) + "u");
Ethan Nicholas58d56482017-12-19 09:29:22 -0500994 } else if (i.fType == *fContext.fUShort_Type) {
995 this->write(to_string(i.fValue & 0xffff) + "u");
Ruiqi Maob609e6d2018-07-17 10:19:38 -0400996 } else if (i.fType == *fContext.fUByte_Type) {
997 this->write(to_string(i.fValue & 0xff) + "u");
998 } else {
ethannicholas5961bc92016-10-12 06:39:56 -0700999 this->write(to_string((int32_t) i.fValue));
1000 }
ethannicholasf789b382016-08-03 12:43:36 -07001001}
1002
1003void GLSLCodeGenerator::writeFloatLiteral(const FloatLiteral& f) {
1004 this->write(to_string(f.fValue));
1005}
1006
Ethan Nicholas762466e2017-06-29 10:03:38 -04001007void GLSLCodeGenerator::writeSetting(const Setting& s) {
1008 ABORT("internal error; setting was not folded to a constant during compilation\n");
1009}
1010
ethannicholasf789b382016-08-03 12:43:36 -07001011void GLSLCodeGenerator::writeFunction(const FunctionDefinition& f) {
Ethan Nicholas00543112018-07-31 09:44:36 -04001012 if (fProgramKind != Program::kPipelineStage_Kind) {
1013 this->writeTypePrecision(f.fDeclaration.fReturnType);
1014 this->writeType(f.fDeclaration.fReturnType);
1015 this->write(" " + f.fDeclaration.fName + "(");
1016 const char* separator = "";
1017 for (const auto& param : f.fDeclaration.fParameters) {
1018 this->write(separator);
1019 separator = ", ";
1020 this->writeModifiers(param->fModifiers, false);
1021 std::vector<int> sizes;
1022 const Type* type = &param->fType;
1023 while (type->kind() == Type::kArray_Kind) {
1024 sizes.push_back(type->columns());
1025 type = &type->componentType();
1026 }
1027 this->writeTypePrecision(*type);
1028 this->writeType(*type);
1029 this->write(" " + param->fName);
1030 for (int s : sizes) {
1031 if (s <= 0) {
1032 this->write("[]");
1033 } else {
1034 this->write("[" + to_string(s) + "]");
1035 }
ethannicholas5961bc92016-10-12 06:39:56 -07001036 }
1037 }
Ethan Nicholas00543112018-07-31 09:44:36 -04001038 this->writeLine(") {");
1039 fIndentation++;
ethannicholasf789b382016-08-03 12:43:36 -07001040 }
ethannicholas5961bc92016-10-12 06:39:56 -07001041 fFunctionHeader = "";
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001042 OutputStream* oldOut = fOut;
1043 StringStream buffer;
ethannicholas5961bc92016-10-12 06:39:56 -07001044 fOut = &buffer;
Ethan Nicholascb670962017-04-20 19:31:52 -04001045 this->writeStatements(((Block&) *f.fBody).fStatements);
Ethan Nicholas00543112018-07-31 09:44:36 -04001046 if (fProgramKind != Program::kPipelineStage_Kind) {
1047 fIndentation--;
1048 this->writeLine("}");
1049 }
ethannicholas5961bc92016-10-12 06:39:56 -07001050
1051 fOut = oldOut;
1052 this->write(fFunctionHeader);
Ethan Nicholas762466e2017-06-29 10:03:38 -04001053 this->write(buffer.str());
ethannicholasf789b382016-08-03 12:43:36 -07001054}
1055
Greg Daniel64773e62016-11-22 09:44:03 -05001056void GLSLCodeGenerator::writeModifiers(const Modifiers& modifiers,
ethannicholas5961bc92016-10-12 06:39:56 -07001057 bool globalContext) {
Brian Salomonf9f45122016-11-29 11:59:17 -05001058 if (modifiers.fFlags & Modifiers::kFlat_Flag) {
1059 this->write("flat ");
1060 }
ethannicholas5961bc92016-10-12 06:39:56 -07001061 if (modifiers.fFlags & Modifiers::kNoPerspective_Flag) {
1062 this->write("noperspective ");
1063 }
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001064 String layout = modifiers.fLayout.description();
Ethan Nicholas8da9e942017-03-09 16:35:09 -05001065 if (layout.size()) {
1066 this->write(layout + " ");
1067 }
Brian Salomonf9f45122016-11-29 11:59:17 -05001068 if (modifiers.fFlags & Modifiers::kReadOnly_Flag) {
1069 this->write("readonly ");
1070 }
1071 if (modifiers.fFlags & Modifiers::kWriteOnly_Flag) {
1072 this->write("writeonly ");
1073 }
1074 if (modifiers.fFlags & Modifiers::kCoherent_Flag) {
1075 this->write("coherent ");
1076 }
1077 if (modifiers.fFlags & Modifiers::kVolatile_Flag) {
1078 this->write("volatile ");
1079 }
1080 if (modifiers.fFlags & Modifiers::kRestrict_Flag) {
1081 this->write("restrict ");
ethannicholas5961bc92016-10-12 06:39:56 -07001082 }
Greg Daniel64773e62016-11-22 09:44:03 -05001083 if ((modifiers.fFlags & Modifiers::kIn_Flag) &&
ethannicholas5961bc92016-10-12 06:39:56 -07001084 (modifiers.fFlags & Modifiers::kOut_Flag)) {
1085 this->write("inout ");
1086 } else if (modifiers.fFlags & Modifiers::kIn_Flag) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001087 if (globalContext &&
1088 fProgram.fSettings.fCaps->generation() < GrGLSLGeneration::k130_GrGLSLGeneration) {
ethannicholas5961bc92016-10-12 06:39:56 -07001089 this->write(fProgramKind == Program::kVertex_Kind ? "attribute "
1090 : "varying ");
1091 } else {
1092 this->write("in ");
1093 }
1094 } else if (modifiers.fFlags & Modifiers::kOut_Flag) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001095 if (globalContext &&
1096 fProgram.fSettings.fCaps->generation() < GrGLSLGeneration::k130_GrGLSLGeneration) {
ethannicholas5961bc92016-10-12 06:39:56 -07001097 this->write("varying ");
1098 } else {
1099 this->write("out ");
1100 }
1101 }
1102 if (modifiers.fFlags & Modifiers::kUniform_Flag) {
1103 this->write("uniform ");
1104 }
1105 if (modifiers.fFlags & Modifiers::kConst_Flag) {
1106 this->write("const ");
1107 }
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001108 if (usesPrecisionModifiers()) {
ethannicholas5961bc92016-10-12 06:39:56 -07001109 if (modifiers.fFlags & Modifiers::kLowp_Flag) {
1110 this->write("lowp ");
1111 }
1112 if (modifiers.fFlags & Modifiers::kMediump_Flag) {
1113 this->write("mediump ");
1114 }
1115 if (modifiers.fFlags & Modifiers::kHighp_Flag) {
1116 this->write("highp ");
1117 }
1118 }
ethannicholasf789b382016-08-03 12:43:36 -07001119}
1120
1121void GLSLCodeGenerator::writeInterfaceBlock(const InterfaceBlock& intf) {
Ethan Nicholas52cad152017-02-16 16:37:32 -05001122 if (intf.fTypeName == "sk_PerVertex") {
ethannicholasf789b382016-08-03 12:43:36 -07001123 return;
1124 }
ethannicholas5961bc92016-10-12 06:39:56 -07001125 this->writeModifiers(intf.fVariable.fModifiers, true);
Ethan Nicholas50afc172017-02-16 14:49:57 -05001126 this->writeLine(intf.fTypeName + " {");
ethannicholasf789b382016-08-03 12:43:36 -07001127 fIndentation++;
Ethan Nicholas50afc172017-02-16 14:49:57 -05001128 const Type* structType = &intf.fVariable.fType;
1129 while (structType->kind() == Type::kArray_Kind) {
1130 structType = &structType->componentType();
1131 }
1132 for (const auto& f : structType->fields()) {
ethannicholas5961bc92016-10-12 06:39:56 -07001133 this->writeModifiers(f.fModifiers, false);
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001134 this->writeTypePrecision(*f.fType);
ethannicholas0730be72016-09-01 07:59:02 -07001135 this->writeType(*f.fType);
ethannicholasf789b382016-08-03 12:43:36 -07001136 this->writeLine(" " + f.fName + ";");
1137 }
1138 fIndentation--;
Ethan Nicholas50afc172017-02-16 14:49:57 -05001139 this->write("}");
1140 if (intf.fInstanceName.size()) {
1141 this->write(" ");
1142 this->write(intf.fInstanceName);
1143 for (const auto& size : intf.fSizes) {
1144 this->write("[");
1145 if (size) {
1146 this->writeExpression(*size, kTopLevel_Precedence);
1147 }
1148 this->write("]");
1149 }
1150 }
1151 this->writeLine(";");
ethannicholasf789b382016-08-03 12:43:36 -07001152}
1153
Ethan Nicholas762466e2017-06-29 10:03:38 -04001154void GLSLCodeGenerator::writeVarInitializer(const Variable& var, const Expression& value) {
1155 this->writeExpression(value, kTopLevel_Precedence);
1156}
1157
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001158const char* GLSLCodeGenerator::getTypePrecision(const Type& type) {
1159 if (usesPrecisionModifiers()) {
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001160 switch (type.kind()) {
1161 case Type::kScalar_Kind:
Ruiqi Maob609e6d2018-07-17 10:19:38 -04001162 if (type == *fContext.fShort_Type || type == *fContext.fUShort_Type ||
1163 type == *fContext.fByte_Type || type == *fContext.fUByte_Type) {
Chris Daltonc2d0dd62018-03-07 07:46:10 -07001164 if (fProgram.fSettings.fForceHighPrecision ||
1165 fProgram.fSettings.fCaps->incompleteShortIntPrecision()) {
1166 return "highp ";
1167 }
1168 return "mediump ";
1169 }
1170 if (type == *fContext.fHalf_Type) {
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001171 return fProgram.fSettings.fForceHighPrecision ? "highp " : "mediump ";
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001172 }
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001173 if (type == *fContext.fFloat_Type || type == *fContext.fInt_Type ||
1174 type == *fContext.fUInt_Type) {
1175 return "highp ";
1176 }
1177 return "";
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001178 case Type::kVector_Kind: // fall through
1179 case Type::kMatrix_Kind:
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001180 return this->getTypePrecision(type.componentType());
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001181 default:
1182 break;
1183 }
1184 }
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001185 return "";
1186}
1187
1188void GLSLCodeGenerator::writeTypePrecision(const Type& type) {
1189 this->write(this->getTypePrecision(type));
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001190}
1191
ethannicholas5961bc92016-10-12 06:39:56 -07001192void GLSLCodeGenerator::writeVarDeclarations(const VarDeclarations& decl, bool global) {
Ethan Nicholas14efcbf2017-11-07 09:23:38 -05001193 if (!decl.fVars.size()) {
1194 return;
1195 }
Ethan Nicholasb4dc4192017-06-02 10:16:28 -04001196 bool wroteType = false;
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001197 for (const auto& stmt : decl.fVars) {
1198 VarDeclaration& var = (VarDeclaration&) *stmt;
Ethan Nicholasb4dc4192017-06-02 10:16:28 -04001199 if (wroteType) {
1200 this->write(", ");
1201 } else {
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001202 this->writeModifiers(var.fVar->fModifiers, global);
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001203 this->writeTypePrecision(decl.fBaseType);
Ethan Nicholasb4dc4192017-06-02 10:16:28 -04001204 this->writeType(decl.fBaseType);
1205 this->write(" ");
1206 wroteType = true;
1207 }
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001208 this->write(var.fVar->fName);
1209 for (const auto& size : var.fSizes) {
ethannicholasf789b382016-08-03 12:43:36 -07001210 this->write("[");
ethannicholas5961bc92016-10-12 06:39:56 -07001211 if (size) {
1212 this->writeExpression(*size, kTopLevel_Precedence);
1213 }
ethannicholasf789b382016-08-03 12:43:36 -07001214 this->write("]");
1215 }
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001216 if (var.fValue) {
ethannicholasf789b382016-08-03 12:43:36 -07001217 this->write(" = ");
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001218 this->writeVarInitializer(*var.fVar, *var.fValue);
ethannicholasf789b382016-08-03 12:43:36 -07001219 }
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001220 if (!fFoundImageDecl && var.fVar->fType == *fContext.fImage2D_Type) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001221 if (fProgram.fSettings.fCaps->imageLoadStoreExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001222 this->writeExtension(fProgram.fSettings.fCaps->imageLoadStoreExtensionString());
Brian Salomon2a51de82016-11-16 12:06:01 -05001223 }
1224 fFoundImageDecl = true;
1225 }
Brian Osman4b2f9152018-04-17 11:19:57 -04001226 if (!fFoundExternalSamplerDecl && var.fVar->fType == *fContext.fSamplerExternalOES_Type) {
1227 if (fProgram.fSettings.fCaps->externalTextureExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001228 this->writeExtension(fProgram.fSettings.fCaps->externalTextureExtensionString());
Brian Osman4b2f9152018-04-17 11:19:57 -04001229 }
Brian Osman061020e2018-04-17 14:22:15 -04001230 if (fProgram.fSettings.fCaps->secondExternalTextureExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001231 this->writeExtension(
1232 fProgram.fSettings.fCaps->secondExternalTextureExtensionString());
Brian Osman061020e2018-04-17 14:22:15 -04001233 }
Brian Osman4b2f9152018-04-17 11:19:57 -04001234 fFoundExternalSamplerDecl = true;
1235 }
ethannicholasf789b382016-08-03 12:43:36 -07001236 }
Ethan Nicholasb4dc4192017-06-02 10:16:28 -04001237 if (wroteType) {
1238 this->write(";");
1239 }
ethannicholasf789b382016-08-03 12:43:36 -07001240}
1241
1242void GLSLCodeGenerator::writeStatement(const Statement& s) {
1243 switch (s.fKind) {
1244 case Statement::kBlock_Kind:
1245 this->writeBlock((Block&) s);
1246 break;
1247 case Statement::kExpression_Kind:
1248 this->writeExpression(*((ExpressionStatement&) s).fExpression, kTopLevel_Precedence);
1249 this->write(";");
1250 break;
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001251 case Statement::kReturn_Kind:
ethannicholasf789b382016-08-03 12:43:36 -07001252 this->writeReturnStatement((ReturnStatement&) s);
1253 break;
ethannicholas14fe8cc2016-09-07 13:37:16 -07001254 case Statement::kVarDeclarations_Kind:
ethannicholas5961bc92016-10-12 06:39:56 -07001255 this->writeVarDeclarations(*((VarDeclarationsStatement&) s).fDeclaration, false);
ethannicholasf789b382016-08-03 12:43:36 -07001256 break;
1257 case Statement::kIf_Kind:
1258 this->writeIfStatement((IfStatement&) s);
1259 break;
1260 case Statement::kFor_Kind:
1261 this->writeForStatement((ForStatement&) s);
1262 break;
1263 case Statement::kWhile_Kind:
1264 this->writeWhileStatement((WhileStatement&) s);
1265 break;
1266 case Statement::kDo_Kind:
1267 this->writeDoStatement((DoStatement&) s);
1268 break;
Ethan Nicholasaf197692017-02-27 13:26:45 -05001269 case Statement::kSwitch_Kind:
1270 this->writeSwitchStatement((SwitchStatement&) s);
1271 break;
ethannicholasf789b382016-08-03 12:43:36 -07001272 case Statement::kBreak_Kind:
1273 this->write("break;");
1274 break;
1275 case Statement::kContinue_Kind:
1276 this->write("continue;");
1277 break;
1278 case Statement::kDiscard_Kind:
1279 this->write("discard;");
1280 break;
Ethan Nicholascb670962017-04-20 19:31:52 -04001281 case Statement::kNop_Kind:
1282 this->write(";");
1283 break;
ethannicholasf789b382016-08-03 12:43:36 -07001284 default:
1285 ABORT("unsupported statement: %s", s.description().c_str());
1286 }
1287}
1288
Ethan Nicholascb670962017-04-20 19:31:52 -04001289void GLSLCodeGenerator::writeStatements(const std::vector<std::unique_ptr<Statement>>& statements) {
1290 for (const auto& s : statements) {
1291 if (!s->isEmpty()) {
1292 this->writeStatement(*s);
1293 this->writeLine();
1294 }
1295 }
1296}
1297
ethannicholasf789b382016-08-03 12:43:36 -07001298void GLSLCodeGenerator::writeBlock(const Block& b) {
1299 this->writeLine("{");
1300 fIndentation++;
Ethan Nicholascb670962017-04-20 19:31:52 -04001301 this->writeStatements(b.fStatements);
ethannicholasf789b382016-08-03 12:43:36 -07001302 fIndentation--;
1303 this->write("}");
1304}
1305
1306void GLSLCodeGenerator::writeIfStatement(const IfStatement& stmt) {
1307 this->write("if (");
1308 this->writeExpression(*stmt.fTest, kTopLevel_Precedence);
1309 this->write(") ");
1310 this->writeStatement(*stmt.fIfTrue);
1311 if (stmt.fIfFalse) {
1312 this->write(" else ");
1313 this->writeStatement(*stmt.fIfFalse);
1314 }
1315}
1316
1317void GLSLCodeGenerator::writeForStatement(const ForStatement& f) {
1318 this->write("for (");
Ethan Nicholasb310fd52017-06-09 13:46:34 -04001319 if (f.fInitializer && !f.fInitializer->isEmpty()) {
ethannicholasf789b382016-08-03 12:43:36 -07001320 this->writeStatement(*f.fInitializer);
1321 } else {
1322 this->write("; ");
1323 }
1324 if (f.fTest) {
Adrienne Walkeree8295c2018-08-21 10:56:30 -07001325 if (fProgram.fSettings.fCaps->addAndTrueToLoopCondition()) {
1326 std::unique_ptr<Expression> and_true(new BinaryExpression(
1327 -1, f.fTest->clone(), Token::LOGICALAND,
1328 std::unique_ptr<BoolLiteral>(new BoolLiteral(fContext, -1,
1329 true)),
1330 *fContext.fBool_Type));
1331 this->writeExpression(*and_true, kTopLevel_Precedence);
1332 } else {
1333 this->writeExpression(*f.fTest, kTopLevel_Precedence);
1334 }
ethannicholasf789b382016-08-03 12:43:36 -07001335 }
1336 this->write("; ");
1337 if (f.fNext) {
1338 this->writeExpression(*f.fNext, kTopLevel_Precedence);
1339 }
1340 this->write(") ");
1341 this->writeStatement(*f.fStatement);
1342}
1343
1344void GLSLCodeGenerator::writeWhileStatement(const WhileStatement& w) {
1345 this->write("while (");
1346 this->writeExpression(*w.fTest, kTopLevel_Precedence);
1347 this->write(") ");
1348 this->writeStatement(*w.fStatement);
1349}
1350
1351void GLSLCodeGenerator::writeDoStatement(const DoStatement& d) {
Adrienne Walker8b23ca62018-08-22 10:45:41 -07001352 if (!fProgram.fSettings.fCaps->rewriteDoWhileLoops()) {
1353 this->write("do ");
1354 this->writeStatement(*d.fStatement);
1355 this->write(" while (");
1356 this->writeExpression(*d.fTest, kTopLevel_Precedence);
1357 this->write(");");
1358 return;
1359 }
1360
1361 // Otherwise, do the do while loop workaround, to rewrite loops of the form:
1362 // do {
1363 // CODE;
1364 // } while (CONDITION)
1365 //
1366 // to loops of the form
1367 // bool temp = false;
1368 // while (true) {
1369 // if (temp) {
1370 // if (!CONDITION) {
1371 // break;
1372 // }
1373 // }
1374 // temp = true;
1375 // CODE;
1376 // }
1377 String tmpVar = "_tmpLoopSeenOnce" + to_string(fVarCount++);
1378 this->write("bool ");
1379 this->write(tmpVar);
1380 this->writeLine(" = false;");
1381 this->writeLine("while (true) {");
1382 fIndentation++;
1383 this->write("if (");
1384 this->write(tmpVar);
1385 this->writeLine(") {");
1386 fIndentation++;
1387 this->write("if (!");
1388 this->writeExpression(*d.fTest, kPrefix_Precedence);
1389 this->writeLine(") {");
1390 fIndentation++;
1391 this->writeLine("break;");
1392 fIndentation--;
1393 this->writeLine("}");
1394 fIndentation--;
1395 this->writeLine("}");
1396 this->write(tmpVar);
1397 this->writeLine(" = true;");
ethannicholasf789b382016-08-03 12:43:36 -07001398 this->writeStatement(*d.fStatement);
Adrienne Walker8b23ca62018-08-22 10:45:41 -07001399 this->writeLine();
1400 fIndentation--;
1401 this->write("}");
ethannicholasf789b382016-08-03 12:43:36 -07001402}
1403
Ethan Nicholasaf197692017-02-27 13:26:45 -05001404void GLSLCodeGenerator::writeSwitchStatement(const SwitchStatement& s) {
1405 this->write("switch (");
1406 this->writeExpression(*s.fValue, kTopLevel_Precedence);
1407 this->writeLine(") {");
1408 fIndentation++;
1409 for (const auto& c : s.fCases) {
1410 if (c->fValue) {
1411 this->write("case ");
1412 this->writeExpression(*c->fValue, kTopLevel_Precedence);
1413 this->writeLine(":");
1414 } else {
1415 this->writeLine("default:");
1416 }
1417 fIndentation++;
1418 for (const auto& stmt : c->fStatements) {
1419 this->writeStatement(*stmt);
1420 this->writeLine();
1421 }
1422 fIndentation--;
1423 }
1424 fIndentation--;
1425 this->write("}");
1426}
1427
ethannicholasf789b382016-08-03 12:43:36 -07001428void GLSLCodeGenerator::writeReturnStatement(const ReturnStatement& r) {
1429 this->write("return");
1430 if (r.fExpression) {
1431 this->write(" ");
1432 this->writeExpression(*r.fExpression, kTopLevel_Precedence);
1433 }
1434 this->write(";");
1435}
1436
Ethan Nicholas762466e2017-06-29 10:03:38 -04001437void GLSLCodeGenerator::writeHeader() {
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001438 this->write(fProgram.fSettings.fCaps->versionDeclString());
ethannicholasf789b382016-08-03 12:43:36 -07001439 this->writeLine();
Ethan Nicholas762466e2017-06-29 10:03:38 -04001440}
1441
Ethan Nicholas762466e2017-06-29 10:03:38 -04001442void GLSLCodeGenerator::writeProgramElement(const ProgramElement& e) {
1443 switch (e.fKind) {
1444 case ProgramElement::kExtension_Kind:
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001445 this->writeExtension(((Extension&) e).fName);
Ethan Nicholas762466e2017-06-29 10:03:38 -04001446 break;
1447 case ProgramElement::kVar_Kind: {
1448 VarDeclarations& decl = (VarDeclarations&) e;
1449 if (decl.fVars.size() > 0) {
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001450 int builtin = ((VarDeclaration&) *decl.fVars[0]).fVar->fModifiers.fLayout.fBuiltin;
Ethan Nicholas762466e2017-06-29 10:03:38 -04001451 if (builtin == -1) {
1452 // normal var
1453 this->writeVarDeclarations(decl, true);
1454 this->writeLine();
1455 } else if (builtin == SK_FRAGCOLOR_BUILTIN &&
1456 fProgram.fSettings.fCaps->mustDeclareFragmentShaderOutput()) {
Brian Salomondc092132018-04-04 10:14:16 -04001457 if (fProgram.fSettings.fFragColorIsInOut) {
1458 this->write("inout ");
1459 } else {
1460 this->write("out ");
1461 }
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001462 if (usesPrecisionModifiers()) {
Ethan Nicholas762466e2017-06-29 10:03:38 -04001463 this->write("mediump ");
Mike Klein5ce39722017-06-27 22:52:03 +00001464 }
Ethan Nicholas762466e2017-06-29 10:03:38 -04001465 this->writeLine("vec4 sk_FragColor;");
Mike Klein5ce39722017-06-27 22:52:03 +00001466 }
Mike Klein5ce39722017-06-27 22:52:03 +00001467 }
Ethan Nicholas762466e2017-06-29 10:03:38 -04001468 break;
Mike Klein5ce39722017-06-27 22:52:03 +00001469 }
Ethan Nicholas762466e2017-06-29 10:03:38 -04001470 case ProgramElement::kInterfaceBlock_Kind:
1471 this->writeInterfaceBlock((InterfaceBlock&) e);
1472 break;
1473 case ProgramElement::kFunction_Kind:
1474 this->writeFunction((FunctionDefinition&) e);
1475 break;
Chris Daltonf1b47bb2017-10-06 11:57:51 -06001476 case ProgramElement::kModifiers_Kind: {
1477 const Modifiers& modifiers = ((ModifiersDeclaration&) e).fModifiers;
1478 if (!fFoundGSInvocations && modifiers.fLayout.fInvocations >= 0) {
1479 if (fProgram.fSettings.fCaps->gsInvocationsExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001480 this->writeExtension(fProgram.fSettings.fCaps->gsInvocationsExtensionString());
Chris Daltonf1b47bb2017-10-06 11:57:51 -06001481 }
1482 fFoundGSInvocations = true;
1483 }
1484 this->writeModifiers(modifiers, true);
Ethan Nicholas762466e2017-06-29 10:03:38 -04001485 this->writeLine(";");
1486 break;
Chris Daltonf1b47bb2017-10-06 11:57:51 -06001487 }
Ethan Nicholasaae47c82017-11-10 15:34:03 -05001488 case ProgramElement::kEnum_Kind:
1489 break;
Ethan Nicholas762466e2017-06-29 10:03:38 -04001490 default:
1491 printf("%s\n", e.description().c_str());
1492 ABORT("unsupported program element");
Ethan Nicholasc0709392017-06-27 11:20:22 -04001493 }
Ethan Nicholas762466e2017-06-29 10:03:38 -04001494}
1495
Ethan Nicholascd700e92018-08-24 16:43:57 -04001496void GLSLCodeGenerator::writeInputVars() {
1497 if (fProgram.fInputs.fRTWidth) {
1498 const char* precision = usesPrecisionModifiers() ? "highp " : "";
1499 fGlobals.writeText("uniform ");
1500 fGlobals.writeText(precision);
1501 fGlobals.writeText("float " SKSL_RTWIDTH_NAME ";\n");
1502 }
1503 if (fProgram.fInputs.fRTHeight) {
1504 const char* precision = usesPrecisionModifiers() ? "highp " : "";
1505 fGlobals.writeText("uniform ");
1506 fGlobals.writeText(precision);
1507 fGlobals.writeText("float " SKSL_RTHEIGHT_NAME ";\n");
1508 }
1509}
1510
Ethan Nicholas762466e2017-06-29 10:03:38 -04001511bool GLSLCodeGenerator::generateCode() {
Ethan Nicholas00543112018-07-31 09:44:36 -04001512 if (fProgramKind != Program::kPipelineStage_Kind) {
1513 this->writeHeader();
1514 }
Chris Dalton8fd79552018-01-11 00:46:14 -05001515 if (Program::kGeometry_Kind == fProgramKind &&
1516 fProgram.fSettings.fCaps->geometryShaderExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001517 this->writeExtension(fProgram.fSettings.fCaps->geometryShaderExtensionString());
Chris Dalton8fd79552018-01-11 00:46:14 -05001518 }
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001519 OutputStream* rawOut = fOut;
Ethan Nicholas762466e2017-06-29 10:03:38 -04001520 StringStream body;
1521 fOut = &body;
Ethan Nicholas3c6ae622018-04-24 13:06:09 -04001522 for (const auto& e : fProgram) {
1523 this->writeProgramElement(e);
Ethan Nicholas762466e2017-06-29 10:03:38 -04001524 }
1525 fOut = rawOut;
ethannicholasddb37d62016-10-20 09:54:00 -07001526
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001527 write_stringstream(fExtensions, *rawOut);
Ethan Nicholascd700e92018-08-24 16:43:57 -04001528 this->writeInputVars();
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001529 write_stringstream(fGlobals, *rawOut);
Brian Osmancc10d792018-07-20 13:09:45 -04001530
1531 if (!fProgram.fSettings.fCaps->canUseFragCoord()) {
1532 Layout layout;
1533 switch (fProgram.fKind) {
1534 case Program::kVertex_Kind: {
1535 Modifiers modifiers(layout, Modifiers::kOut_Flag | Modifiers::kHighp_Flag);
1536 this->writeModifiers(modifiers, true);
1537 this->write("vec4 sk_FragCoord_Workaround;\n");
1538 break;
1539 }
1540 case Program::kFragment_Kind: {
1541 Modifiers modifiers(layout, Modifiers::kIn_Flag | Modifiers::kHighp_Flag);
1542 this->writeModifiers(modifiers, true);
1543 this->write("vec4 sk_FragCoord_Workaround;\n");
1544 break;
1545 }
1546 default:
1547 break;
1548 }
1549 }
1550
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001551 if (this->usesPrecisionModifiers()) {
1552 this->writeLine("precision mediump float;");
1553 }
Ethan Nicholas6e6525c2018-01-03 17:03:56 -05001554 write_stringstream(fExtraFunctions, *rawOut);
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001555 write_stringstream(body, *rawOut);
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001556 return true;
ethannicholasf789b382016-08-03 12:43:36 -07001557}
1558
1559}