blob: d56d6119b6e3a0916bf28738ab7aefd343dde16b [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;
Chris Dalton09212192018-11-13 15:07:24 -0500469 (*fFunctionClasses)["fwidth"] = FunctionClass::kDerivative;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400470 (*fFunctionClasses)["fract"] = FunctionClass::kFract;
471 (*fFunctionClasses)["inverse"] = FunctionClass::kInverse;
472 (*fFunctionClasses)["inverseSqrt"] = FunctionClass::kInverseSqrt;
473 (*fFunctionClasses)["min"] = FunctionClass::kMin;
Adrienne Walker2f4c09b2018-08-22 16:04:57 -0700474 (*fFunctionClasses)["pow"] = FunctionClass::kPow;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400475 (*fFunctionClasses)["saturate"] = FunctionClass::kSaturate;
476 (*fFunctionClasses)["texture"] = FunctionClass::kTexture;
477 (*fFunctionClasses)["transpose"] = FunctionClass::kTranspose;
ethannicholas5961bc92016-10-12 06:39:56 -0700478 }
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400479#ifndef SKSL_STANDALONE
480 );
481#endif
482 const auto found = c.fFunction.fBuiltin ? fFunctionClasses->find(c.fFunction.fName) :
483 fFunctionClasses->end();
Brian Osman8a83ca42018-02-12 14:32:17 -0500484 bool isTextureFunctionWithBias = false;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400485 bool nameWritten = false;
486 if (found != fFunctionClasses->end()) {
487 switch (found->second) {
Adrienne Walker92b161f2018-08-22 10:41:52 -0700488 case FunctionClass::kAbs: {
489 if (!fProgram.fSettings.fCaps->emulateAbsIntFunction())
490 break;
491 SkASSERT(c.fArguments.size() == 1);
492 if (c.fArguments[0]->fType != *fContext.fInt_Type)
493 break;
494 // abs(int) on Intel OSX is incorrect, so emulate it:
495 String name = "_absemulation";
496 this->write(name);
497 nameWritten = true;
498 if (fWrittenIntrinsics.find(name) == fWrittenIntrinsics.end()) {
499 fWrittenIntrinsics.insert(name);
500 fExtraFunctions.writeText((
501 "int " + name + "(int x) {\n"
502 " return x * sign(x);\n"
503 "}\n"
504 ).c_str());
505 }
506 break;
507 }
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400508 case FunctionClass::kAtan:
509 if (fProgram.fSettings.fCaps->mustForceNegatedAtanParamToFloat() &&
510 c.fArguments.size() == 2 &&
511 c.fArguments[1]->fKind == Expression::kPrefix_Kind) {
512 const PrefixExpression& p = (PrefixExpression&) *c.fArguments[1];
513 if (p.fOperator == Token::MINUS) {
514 this->write("atan(");
515 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
516 this->write(", -1.0 * ");
517 this->writeExpression(*p.fOperand, kMultiplicative_Precedence);
518 this->write(")");
519 return;
520 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500521 }
522 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400523 case FunctionClass::kDerivative:
524 if (!fFoundDerivatives &&
525 fProgram.fSettings.fCaps->shaderDerivativeExtensionString()) {
526 SkASSERT(fProgram.fSettings.fCaps->shaderDerivativeSupport());
527 this->writeExtension(fProgram.fSettings.fCaps->shaderDerivativeExtensionString());
528 fFoundDerivatives = true;
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500529 }
530 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400531 case FunctionClass::kDeterminant:
532 if (fProgram.fSettings.fCaps->generation() < k150_GrGLSLGeneration) {
533 SkASSERT(c.fArguments.size() == 1);
534 this->writeDeterminantHack(*c.fArguments[0]);
535 return;
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500536 }
537 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400538 case FunctionClass::kFract:
539 if (!fProgram.fSettings.fCaps->canUseFractForNegativeValues()) {
540 SkASSERT(c.fArguments.size() == 1);
541 this->write("(0.5 - sign(");
542 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
543 this->write(") * (0.5 - fract(abs(");
544 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
545 this->write("))))");
546 return;
547 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500548 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400549 case FunctionClass::kInverse:
550 if (fProgram.fSettings.fCaps->generation() < k140_GrGLSLGeneration) {
551 SkASSERT(c.fArguments.size() == 1);
552 this->writeInverseHack(*c.fArguments[0]);
553 return;
554 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500555 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400556 case FunctionClass::kInverseSqrt:
557 if (fProgram.fSettings.fCaps->generation() < k130_GrGLSLGeneration) {
558 SkASSERT(c.fArguments.size() == 1);
559 this->writeInverseSqrtHack(*c.fArguments[0]);
560 return;
561 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500562 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400563 case FunctionClass::kMin:
564 if (!fProgram.fSettings.fCaps->canUseMinAndAbsTogether()) {
565 SkASSERT(c.fArguments.size() == 2);
566 if (is_abs(*c.fArguments[0])) {
567 this->writeMinAbsHack(*c.fArguments[0], *c.fArguments[1]);
568 return;
569 }
570 if (is_abs(*c.fArguments[1])) {
571 // note that this violates the GLSL left-to-right evaluation semantics.
572 // I doubt it will ever end up mattering, but it's worth calling out.
573 this->writeMinAbsHack(*c.fArguments[1], *c.fArguments[0]);
574 return;
575 }
576 }
577 break;
Adrienne Walker2f4c09b2018-08-22 16:04:57 -0700578 case FunctionClass::kPow:
579 if (!fProgram.fSettings.fCaps->removePowWithConstantExponent()) {
580 break;
581 }
582 // pow(x, y) on some NVIDIA drivers causes crashes if y is a
583 // constant. It's hard to tell what constitutes "constant" here
584 // so just replace in all cases.
585
586 // Change pow(x, y) into exp2(y * log2(x))
587 this->write("exp2(");
588 this->writeExpression(*c.fArguments[1], kMultiplicative_Precedence);
589 this->write(" * log2(");
590 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
591 this->write("))");
592 return;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400593 case FunctionClass::kSaturate:
594 SkASSERT(c.fArguments.size() == 1);
595 this->write("clamp(");
596 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
597 this->write(", 0.0, 1.0)");
598 return;
599 case FunctionClass::kTexture: {
600 const char* dim = "";
601 bool proj = false;
602 switch (c.fArguments[0]->fType.dimensions()) {
603 case SpvDim1D:
604 dim = "1D";
605 isTextureFunctionWithBias = true;
606 if (c.fArguments[1]->fType == *fContext.fFloat_Type) {
607 proj = false;
608 } else {
609 SkASSERT(c.fArguments[1]->fType == *fContext.fFloat2_Type);
610 proj = true;
611 }
612 break;
613 case SpvDim2D:
614 dim = "2D";
615 if (c.fArguments[0]->fType != *fContext.fSamplerExternalOES_Type) {
616 isTextureFunctionWithBias = true;
617 }
618 if (c.fArguments[1]->fType == *fContext.fFloat2_Type) {
619 proj = false;
620 } else {
621 SkASSERT(c.fArguments[1]->fType == *fContext.fFloat3_Type);
622 proj = true;
623 }
624 break;
625 case SpvDim3D:
626 dim = "3D";
627 isTextureFunctionWithBias = true;
628 if (c.fArguments[1]->fType == *fContext.fFloat3_Type) {
629 proj = false;
630 } else {
631 SkASSERT(c.fArguments[1]->fType == *fContext.fFloat4_Type);
632 proj = true;
633 }
634 break;
635 case SpvDimCube:
636 dim = "Cube";
637 isTextureFunctionWithBias = true;
638 proj = false;
639 break;
640 case SpvDimRect:
641 dim = "Rect";
642 proj = false;
643 break;
644 case SpvDimBuffer:
645 SkASSERT(false); // doesn't exist
646 dim = "Buffer";
647 proj = false;
648 break;
649 case SpvDimSubpassData:
650 SkASSERT(false); // doesn't exist
651 dim = "SubpassData";
652 proj = false;
653 break;
654 }
655 this->write("texture");
656 if (fProgram.fSettings.fCaps->generation() < k130_GrGLSLGeneration) {
657 this->write(dim);
658 }
659 if (proj) {
660 this->write("Proj");
661 }
662 nameWritten = true;
663 break;
664 }
665 case FunctionClass::kTranspose:
666 if (fProgram.fSettings.fCaps->generation() < k130_GrGLSLGeneration) {
667 SkASSERT(c.fArguments.size() == 1);
668 this->writeTransposeHack(*c.fArguments[0]);
669 return;
670 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500671 break;
672 }
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400673 }
674 if (!nameWritten) {
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500675 this->write(c.fFunction.fName);
676 }
677 this->write("(");
ethannicholasf789b382016-08-03 12:43:36 -0700678 const char* separator = "";
679 for (const auto& arg : c.fArguments) {
680 this->write(separator);
681 separator = ", ";
682 this->writeExpression(*arg, kSequence_Precedence);
683 }
Brian Osman8a83ca42018-02-12 14:32:17 -0500684 if (fProgram.fSettings.fSharpenTextures && isTextureFunctionWithBias) {
685 this->write(", -0.5");
686 }
ethannicholasf789b382016-08-03 12:43:36 -0700687 this->write(")");
688}
689
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400690void GLSLCodeGenerator::writeConstructor(const Constructor& c, Precedence parentPrecedence) {
691 if (c.fArguments.size() == 1 &&
692 this->getTypeName(c.fType) == this->getTypeName(c.fArguments[0]->fType)) {
693 // in cases like half(float), they're different types as far as SkSL is concerned but the
694 // same type as far as GLSL is concerned. We avoid a redundant float(float) by just writing
695 // out the inner expression here.
696 this->writeExpression(*c.fArguments[0], parentPrecedence);
697 return;
698 }
Ethan Nicholas5af9ea32017-07-28 15:19:46 -0400699 this->writeType(c.fType);
700 this->write("(");
ethannicholasf789b382016-08-03 12:43:36 -0700701 const char* separator = "";
702 for (const auto& arg : c.fArguments) {
703 this->write(separator);
704 separator = ", ";
705 this->writeExpression(*arg, kSequence_Precedence);
706 }
707 this->write(")");
708}
709
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500710void GLSLCodeGenerator::writeFragCoord() {
Brian Osmancd3261a2018-01-16 13:52:29 +0000711 if (!fProgram.fSettings.fCaps->canUseFragCoord()) {
Brian Salomondba65f92018-01-22 08:43:38 -0500712 if (!fSetupFragCoordWorkaround) {
713 const char* precision = usesPrecisionModifiers() ? "highp " : "";
714 fFunctionHeader += precision;
715 fFunctionHeader += " float sk_FragCoord_InvW = 1. / sk_FragCoord_Workaround.w;\n";
716 fFunctionHeader += precision;
717 fFunctionHeader += " vec4 sk_FragCoord_Resolved = "
718 "vec4(sk_FragCoord_Workaround.xyz * sk_FragCoord_InvW, sk_FragCoord_InvW);\n";
719 // Ensure that we get exact .5 values for x and y.
720 fFunctionHeader += " sk_FragCoord_Resolved.xy = floor(sk_FragCoord_Resolved.xy) + "
721 "vec2(.5);\n";
722 fSetupFragCoordWorkaround = true;
723 }
724 this->write("sk_FragCoord_Resolved");
Brian Osmancd3261a2018-01-16 13:52:29 +0000725 return;
726 }
727
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500728 // We only declare "gl_FragCoord" when we're in the case where we want to use layout qualifiers
729 // to reverse y. Otherwise it isn't necessary and whether the "in" qualifier appears in the
730 // declaration varies in earlier GLSL specs. So it is simpler to omit it.
731 if (!fProgram.fSettings.fFlipY) {
732 this->write("gl_FragCoord");
733 } else if (const char* extension =
Ethan Nicholascd700e92018-08-24 16:43:57 -0400734 fProgram.fSettings.fCaps->fragCoordConventionsExtensionString()) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500735 if (!fSetupFragPositionGlobal) {
736 if (fProgram.fSettings.fCaps->generation() < k150_GrGLSLGeneration) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -0400737 this->writeExtension(extension);
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500738 }
Ethan Nicholas88f6d372018-07-27 10:03:46 -0400739 fGlobals.writeText("layout(origin_upper_left) in vec4 gl_FragCoord;\n");
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500740 fSetupFragPositionGlobal = true;
Greg Daniele8e4a3e2016-12-12 17:20:42 +0000741 }
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500742 this->write("gl_FragCoord");
Greg Daniele8e4a3e2016-12-12 17:20:42 +0000743 } else {
Ethan Nicholascd700e92018-08-24 16:43:57 -0400744 if (!fSetupFragPositionLocal) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500745 // The Adreno compiler seems to be very touchy about access to "gl_FragCoord".
746 // Accessing glFragCoord.zw can cause a program to fail to link. Additionally,
747 // depending on the surrounding code, accessing .xy with a uniform involved can
Brian Osmancd3261a2018-01-16 13:52:29 +0000748 // do the same thing. Copying gl_FragCoord.xy into a temp float2 beforehand
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500749 // (and only accessing .xy) seems to "fix" things.
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400750 const char* precision = usesPrecisionModifiers() ? "highp " : "";
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500751 fFunctionHeader += precision;
752 fFunctionHeader += " vec2 _sktmpCoord = gl_FragCoord.xy;\n";
753 fFunctionHeader += precision;
Greg Daniele6ab9982018-08-22 13:56:32 +0000754 fFunctionHeader += " vec4 sk_FragCoord = vec4(_sktmpCoord.x, " SKSL_RTHEIGHT_NAME
755 " - _sktmpCoord.y, 1.0, 1.0);\n";
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500756 fSetupFragPositionLocal = true;
757 }
758 this->write("sk_FragCoord");
759 }
760}
761
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500762void GLSLCodeGenerator::writeVariableReference(const VariableReference& ref) {
763 switch (ref.fVariable.fModifiers.fLayout.fBuiltin) {
764 case SK_FRAGCOLOR_BUILTIN:
765 if (fProgram.fSettings.fCaps->mustDeclareFragmentShaderOutput()) {
766 this->write("sk_FragColor");
767 } else {
768 this->write("gl_FragColor");
769 }
770 break;
771 case SK_FRAGCOORD_BUILTIN:
772 this->writeFragCoord();
773 break;
Ethan Nicholascd700e92018-08-24 16:43:57 -0400774 case SK_WIDTH_BUILTIN:
775 this->write("u_skRTWidth");
776 break;
777 case SK_HEIGHT_BUILTIN:
778 this->write("u_skRTHeight");
779 break;
Chris Dalton49d14e92018-07-27 12:38:35 -0600780 case SK_CLOCKWISE_BUILTIN:
Chris Daltonc8ece3d2018-07-30 15:03:45 -0600781 this->write(fProgram.fSettings.fFlipY ? "(!gl_FrontFacing)" : "gl_FrontFacing");
Chris Dalton49d14e92018-07-27 12:38:35 -0600782 break;
Ethan Nicholasa51740c2017-02-07 14:53:32 -0500783 case SK_VERTEXID_BUILTIN:
784 this->write("gl_VertexID");
785 break;
Chris Dalton8580d512017-10-14 22:12:33 -0600786 case SK_INSTANCEID_BUILTIN:
787 this->write("gl_InstanceID");
788 break;
Ethan Nicholas67d64602017-02-09 10:15:25 -0500789 case SK_CLIPDISTANCE_BUILTIN:
790 this->write("gl_ClipDistance");
791 break;
Ethan Nicholas52cad152017-02-16 16:37:32 -0500792 case SK_IN_BUILTIN:
793 this->write("gl_in");
794 break;
795 case SK_INVOCATIONID_BUILTIN:
796 this->write("gl_InvocationID");
797 break;
Ethan Nicholaseab2baa2018-04-13 15:16:27 -0400798 case SK_LASTFRAGCOLOR_BUILTIN:
799 this->write(fProgram.fSettings.fCaps->fbFetchColorName());
800 break;
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500801 default:
802 this->write(ref.fVariable.fName);
ethannicholas5961bc92016-10-12 06:39:56 -0700803 }
ethannicholasf789b382016-08-03 12:43:36 -0700804}
805
806void GLSLCodeGenerator::writeIndexExpression(const IndexExpression& expr) {
807 this->writeExpression(*expr.fBase, kPostfix_Precedence);
808 this->write("[");
809 this->writeExpression(*expr.fIndex, kTopLevel_Precedence);
810 this->write("]");
811}
812
Brian Osmancd3261a2018-01-16 13:52:29 +0000813bool is_sk_position(const FieldAccess& f) {
814 return "sk_Position" == f.fBase->fType.fields()[f.fFieldIndex].fName;
815}
816
ethannicholasf789b382016-08-03 12:43:36 -0700817void GLSLCodeGenerator::writeFieldAccess(const FieldAccess& f) {
818 if (f.fOwnerKind == FieldAccess::kDefault_OwnerKind) {
819 this->writeExpression(*f.fBase, kPostfix_Precedence);
820 this->write(".");
821 }
Ethan Nicholas67d64602017-02-09 10:15:25 -0500822 switch (f.fBase->fType.fields()[f.fFieldIndex].fModifiers.fLayout.fBuiltin) {
823 case SK_CLIPDISTANCE_BUILTIN:
824 this->write("gl_ClipDistance");
825 break;
826 default:
Ethan Nicholasbed683a2017-09-26 14:23:59 -0400827 StringFragment name = f.fBase->fType.fields()[f.fFieldIndex].fName;
828 if (name == "sk_Position") {
829 this->write("gl_Position");
830 } else if (name == "sk_PointSize") {
831 this->write("gl_PointSize");
832 } else {
833 this->write(f.fBase->fType.fields()[f.fFieldIndex].fName);
834 }
Ethan Nicholas67d64602017-02-09 10:15:25 -0500835 }
ethannicholasf789b382016-08-03 12:43:36 -0700836}
837
838void GLSLCodeGenerator::writeSwizzle(const Swizzle& swizzle) {
839 this->writeExpression(*swizzle.fBase, kPostfix_Precedence);
840 this->write(".");
841 for (int c : swizzle.fComponents) {
842 this->write(&("x\0y\0z\0w\0"[c * 2]));
843 }
844}
845
Ethan Nicholas762466e2017-06-29 10:03:38 -0400846GLSLCodeGenerator::Precedence GLSLCodeGenerator::GetBinaryPrecedence(Token::Kind op) {
ethannicholasf789b382016-08-03 12:43:36 -0700847 switch (op) {
848 case Token::STAR: // fall through
849 case Token::SLASH: // fall through
850 case Token::PERCENT: return GLSLCodeGenerator::kMultiplicative_Precedence;
851 case Token::PLUS: // fall through
852 case Token::MINUS: return GLSLCodeGenerator::kAdditive_Precedence;
853 case Token::SHL: // fall through
854 case Token::SHR: return GLSLCodeGenerator::kShift_Precedence;
855 case Token::LT: // fall through
856 case Token::GT: // fall through
857 case Token::LTEQ: // fall through
858 case Token::GTEQ: return GLSLCodeGenerator::kRelational_Precedence;
859 case Token::EQEQ: // fall through
860 case Token::NEQ: return GLSLCodeGenerator::kEquality_Precedence;
861 case Token::BITWISEAND: return GLSLCodeGenerator::kBitwiseAnd_Precedence;
862 case Token::BITWISEXOR: return GLSLCodeGenerator::kBitwiseXor_Precedence;
863 case Token::BITWISEOR: return GLSLCodeGenerator::kBitwiseOr_Precedence;
864 case Token::LOGICALAND: return GLSLCodeGenerator::kLogicalAnd_Precedence;
865 case Token::LOGICALXOR: return GLSLCodeGenerator::kLogicalXor_Precedence;
866 case Token::LOGICALOR: return GLSLCodeGenerator::kLogicalOr_Precedence;
867 case Token::EQ: // fall through
868 case Token::PLUSEQ: // fall through
869 case Token::MINUSEQ: // fall through
870 case Token::STAREQ: // fall through
871 case Token::SLASHEQ: // fall through
872 case Token::PERCENTEQ: // fall through
873 case Token::SHLEQ: // fall through
874 case Token::SHREQ: // fall through
875 case Token::LOGICALANDEQ: // fall through
876 case Token::LOGICALXOREQ: // fall through
877 case Token::LOGICALOREQ: // fall through
878 case Token::BITWISEANDEQ: // fall through
879 case Token::BITWISEXOREQ: // fall through
880 case Token::BITWISEOREQ: return GLSLCodeGenerator::kAssignment_Precedence;
Ethan Nicholas4b330df2017-05-17 10:52:55 -0400881 case Token::COMMA: return GLSLCodeGenerator::kSequence_Precedence;
ethannicholasf789b382016-08-03 12:43:36 -0700882 default: ABORT("unsupported binary operator");
883 }
884}
885
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400886void GLSLCodeGenerator::writeBinaryExpression(const BinaryExpression& b,
ethannicholasf789b382016-08-03 12:43:36 -0700887 Precedence parentPrecedence) {
Adrienne Walkerc02165f2018-08-21 11:08:11 -0700888 if (fProgram.fSettings.fCaps->unfoldShortCircuitAsTernary() &&
889 (b.fOperator == Token::LOGICALAND || b.fOperator == Token::LOGICALOR)) {
890 this->writeShortCircuitWorkaroundExpression(b, parentPrecedence);
891 return;
892 }
893
Ethan Nicholas762466e2017-06-29 10:03:38 -0400894 Precedence precedence = GetBinaryPrecedence(b.fOperator);
ethannicholasf789b382016-08-03 12:43:36 -0700895 if (precedence >= parentPrecedence) {
896 this->write("(");
897 }
Ethan Nicholas0b631962018-07-24 13:41:11 -0400898 bool positionWorkaround = fProgramKind == Program::Kind::kVertex_Kind &&
899 Compiler::IsAssignment(b.fOperator) &&
Brian Osmancd3261a2018-01-16 13:52:29 +0000900 Expression::kFieldAccess_Kind == b.fLeft->fKind &&
901 is_sk_position((FieldAccess&) *b.fLeft) &&
902 !strstr(b.fRight->description().c_str(), "sk_RTAdjust") &&
903 !fProgram.fSettings.fCaps->canUseFragCoord();
904 if (positionWorkaround) {
905 this->write("sk_FragCoord_Workaround = (");
906 }
ethannicholasf789b382016-08-03 12:43:36 -0700907 this->writeExpression(*b.fLeft, precedence);
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700908 this->write(" ");
909 this->write(Compiler::OperatorName(b.fOperator));
910 this->write(" ");
ethannicholasf789b382016-08-03 12:43:36 -0700911 this->writeExpression(*b.fRight, precedence);
Brian Osmancd3261a2018-01-16 13:52:29 +0000912 if (positionWorkaround) {
913 this->write(")");
914 }
ethannicholasf789b382016-08-03 12:43:36 -0700915 if (precedence >= parentPrecedence) {
916 this->write(")");
917 }
918}
919
Adrienne Walkerc02165f2018-08-21 11:08:11 -0700920void GLSLCodeGenerator::writeShortCircuitWorkaroundExpression(const BinaryExpression& b,
921 Precedence parentPrecedence) {
922 if (kTernary_Precedence >= parentPrecedence) {
923 this->write("(");
924 }
925
926 // Transform:
927 // a && b => a ? b : false
928 // a || b => a ? true : b
929 this->writeExpression(*b.fLeft, kTernary_Precedence);
930 this->write(" ? ");
931 if (b.fOperator == Token::LOGICALAND) {
932 this->writeExpression(*b.fRight, kTernary_Precedence);
933 } else {
934 BoolLiteral boolTrue(fContext, -1, true);
935 this->writeBoolLiteral(boolTrue);
936 }
937 this->write(" : ");
938 if (b.fOperator == Token::LOGICALAND) {
939 BoolLiteral boolFalse(fContext, -1, false);
940 this->writeBoolLiteral(boolFalse);
941 } else {
942 this->writeExpression(*b.fRight, kTernary_Precedence);
943 }
944 if (kTernary_Precedence >= parentPrecedence) {
945 this->write(")");
946 }
947}
948
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400949void GLSLCodeGenerator::writeTernaryExpression(const TernaryExpression& t,
ethannicholasf789b382016-08-03 12:43:36 -0700950 Precedence parentPrecedence) {
951 if (kTernary_Precedence >= parentPrecedence) {
952 this->write("(");
953 }
954 this->writeExpression(*t.fTest, kTernary_Precedence);
955 this->write(" ? ");
956 this->writeExpression(*t.fIfTrue, kTernary_Precedence);
957 this->write(" : ");
958 this->writeExpression(*t.fIfFalse, kTernary_Precedence);
959 if (kTernary_Precedence >= parentPrecedence) {
960 this->write(")");
961 }
962}
963
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400964void GLSLCodeGenerator::writePrefixExpression(const PrefixExpression& p,
ethannicholasf789b382016-08-03 12:43:36 -0700965 Precedence parentPrecedence) {
966 if (kPrefix_Precedence >= parentPrecedence) {
967 this->write("(");
968 }
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700969 this->write(Compiler::OperatorName(p.fOperator));
ethannicholasf789b382016-08-03 12:43:36 -0700970 this->writeExpression(*p.fOperand, kPrefix_Precedence);
971 if (kPrefix_Precedence >= parentPrecedence) {
972 this->write(")");
973 }
974}
975
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400976void GLSLCodeGenerator::writePostfixExpression(const PostfixExpression& p,
ethannicholasf789b382016-08-03 12:43:36 -0700977 Precedence parentPrecedence) {
978 if (kPostfix_Precedence >= parentPrecedence) {
979 this->write("(");
980 }
981 this->writeExpression(*p.fOperand, kPostfix_Precedence);
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700982 this->write(Compiler::OperatorName(p.fOperator));
ethannicholasf789b382016-08-03 12:43:36 -0700983 if (kPostfix_Precedence >= parentPrecedence) {
984 this->write(")");
985 }
986}
987
988void GLSLCodeGenerator::writeBoolLiteral(const BoolLiteral& b) {
989 this->write(b.fValue ? "true" : "false");
990}
991
992void GLSLCodeGenerator::writeIntLiteral(const IntLiteral& i) {
ethannicholas5961bc92016-10-12 06:39:56 -0700993 if (i.fType == *fContext.fUInt_Type) {
994 this->write(to_string(i.fValue & 0xffffffff) + "u");
Ethan Nicholas58d56482017-12-19 09:29:22 -0500995 } else if (i.fType == *fContext.fUShort_Type) {
996 this->write(to_string(i.fValue & 0xffff) + "u");
Ruiqi Maob609e6d2018-07-17 10:19:38 -0400997 } else if (i.fType == *fContext.fUByte_Type) {
998 this->write(to_string(i.fValue & 0xff) + "u");
999 } else {
ethannicholas5961bc92016-10-12 06:39:56 -07001000 this->write(to_string((int32_t) i.fValue));
1001 }
ethannicholasf789b382016-08-03 12:43:36 -07001002}
1003
1004void GLSLCodeGenerator::writeFloatLiteral(const FloatLiteral& f) {
1005 this->write(to_string(f.fValue));
1006}
1007
Ethan Nicholas762466e2017-06-29 10:03:38 -04001008void GLSLCodeGenerator::writeSetting(const Setting& s) {
1009 ABORT("internal error; setting was not folded to a constant during compilation\n");
1010}
1011
ethannicholasf789b382016-08-03 12:43:36 -07001012void GLSLCodeGenerator::writeFunction(const FunctionDefinition& f) {
Ethan Nicholas00543112018-07-31 09:44:36 -04001013 if (fProgramKind != Program::kPipelineStage_Kind) {
1014 this->writeTypePrecision(f.fDeclaration.fReturnType);
1015 this->writeType(f.fDeclaration.fReturnType);
1016 this->write(" " + f.fDeclaration.fName + "(");
1017 const char* separator = "";
1018 for (const auto& param : f.fDeclaration.fParameters) {
1019 this->write(separator);
1020 separator = ", ";
1021 this->writeModifiers(param->fModifiers, false);
1022 std::vector<int> sizes;
1023 const Type* type = &param->fType;
1024 while (type->kind() == Type::kArray_Kind) {
1025 sizes.push_back(type->columns());
1026 type = &type->componentType();
1027 }
1028 this->writeTypePrecision(*type);
1029 this->writeType(*type);
1030 this->write(" " + param->fName);
1031 for (int s : sizes) {
1032 if (s <= 0) {
1033 this->write("[]");
1034 } else {
1035 this->write("[" + to_string(s) + "]");
1036 }
ethannicholas5961bc92016-10-12 06:39:56 -07001037 }
1038 }
Ethan Nicholas00543112018-07-31 09:44:36 -04001039 this->writeLine(") {");
1040 fIndentation++;
ethannicholasf789b382016-08-03 12:43:36 -07001041 }
ethannicholas5961bc92016-10-12 06:39:56 -07001042 fFunctionHeader = "";
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001043 OutputStream* oldOut = fOut;
1044 StringStream buffer;
ethannicholas5961bc92016-10-12 06:39:56 -07001045 fOut = &buffer;
Ethan Nicholascb670962017-04-20 19:31:52 -04001046 this->writeStatements(((Block&) *f.fBody).fStatements);
Ethan Nicholas00543112018-07-31 09:44:36 -04001047 if (fProgramKind != Program::kPipelineStage_Kind) {
1048 fIndentation--;
1049 this->writeLine("}");
1050 }
ethannicholas5961bc92016-10-12 06:39:56 -07001051
1052 fOut = oldOut;
1053 this->write(fFunctionHeader);
Ethan Nicholas762466e2017-06-29 10:03:38 -04001054 this->write(buffer.str());
ethannicholasf789b382016-08-03 12:43:36 -07001055}
1056
Greg Daniel64773e62016-11-22 09:44:03 -05001057void GLSLCodeGenerator::writeModifiers(const Modifiers& modifiers,
ethannicholas5961bc92016-10-12 06:39:56 -07001058 bool globalContext) {
Brian Salomonf9f45122016-11-29 11:59:17 -05001059 if (modifiers.fFlags & Modifiers::kFlat_Flag) {
1060 this->write("flat ");
1061 }
ethannicholas5961bc92016-10-12 06:39:56 -07001062 if (modifiers.fFlags & Modifiers::kNoPerspective_Flag) {
1063 this->write("noperspective ");
1064 }
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001065 String layout = modifiers.fLayout.description();
Ethan Nicholas8da9e942017-03-09 16:35:09 -05001066 if (layout.size()) {
1067 this->write(layout + " ");
1068 }
Brian Salomonf9f45122016-11-29 11:59:17 -05001069 if (modifiers.fFlags & Modifiers::kReadOnly_Flag) {
1070 this->write("readonly ");
1071 }
1072 if (modifiers.fFlags & Modifiers::kWriteOnly_Flag) {
1073 this->write("writeonly ");
1074 }
1075 if (modifiers.fFlags & Modifiers::kCoherent_Flag) {
1076 this->write("coherent ");
1077 }
1078 if (modifiers.fFlags & Modifiers::kVolatile_Flag) {
1079 this->write("volatile ");
1080 }
1081 if (modifiers.fFlags & Modifiers::kRestrict_Flag) {
1082 this->write("restrict ");
ethannicholas5961bc92016-10-12 06:39:56 -07001083 }
Greg Daniel64773e62016-11-22 09:44:03 -05001084 if ((modifiers.fFlags & Modifiers::kIn_Flag) &&
ethannicholas5961bc92016-10-12 06:39:56 -07001085 (modifiers.fFlags & Modifiers::kOut_Flag)) {
1086 this->write("inout ");
1087 } else if (modifiers.fFlags & Modifiers::kIn_Flag) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001088 if (globalContext &&
1089 fProgram.fSettings.fCaps->generation() < GrGLSLGeneration::k130_GrGLSLGeneration) {
ethannicholas5961bc92016-10-12 06:39:56 -07001090 this->write(fProgramKind == Program::kVertex_Kind ? "attribute "
1091 : "varying ");
1092 } else {
1093 this->write("in ");
1094 }
1095 } else if (modifiers.fFlags & Modifiers::kOut_Flag) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001096 if (globalContext &&
1097 fProgram.fSettings.fCaps->generation() < GrGLSLGeneration::k130_GrGLSLGeneration) {
ethannicholas5961bc92016-10-12 06:39:56 -07001098 this->write("varying ");
1099 } else {
1100 this->write("out ");
1101 }
1102 }
1103 if (modifiers.fFlags & Modifiers::kUniform_Flag) {
1104 this->write("uniform ");
1105 }
1106 if (modifiers.fFlags & Modifiers::kConst_Flag) {
1107 this->write("const ");
1108 }
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001109 if (usesPrecisionModifiers()) {
ethannicholas5961bc92016-10-12 06:39:56 -07001110 if (modifiers.fFlags & Modifiers::kLowp_Flag) {
1111 this->write("lowp ");
1112 }
1113 if (modifiers.fFlags & Modifiers::kMediump_Flag) {
1114 this->write("mediump ");
1115 }
1116 if (modifiers.fFlags & Modifiers::kHighp_Flag) {
1117 this->write("highp ");
1118 }
1119 }
ethannicholasf789b382016-08-03 12:43:36 -07001120}
1121
1122void GLSLCodeGenerator::writeInterfaceBlock(const InterfaceBlock& intf) {
Ethan Nicholas52cad152017-02-16 16:37:32 -05001123 if (intf.fTypeName == "sk_PerVertex") {
ethannicholasf789b382016-08-03 12:43:36 -07001124 return;
1125 }
ethannicholas5961bc92016-10-12 06:39:56 -07001126 this->writeModifiers(intf.fVariable.fModifiers, true);
Ethan Nicholas50afc172017-02-16 14:49:57 -05001127 this->writeLine(intf.fTypeName + " {");
ethannicholasf789b382016-08-03 12:43:36 -07001128 fIndentation++;
Ethan Nicholas50afc172017-02-16 14:49:57 -05001129 const Type* structType = &intf.fVariable.fType;
1130 while (structType->kind() == Type::kArray_Kind) {
1131 structType = &structType->componentType();
1132 }
1133 for (const auto& f : structType->fields()) {
ethannicholas5961bc92016-10-12 06:39:56 -07001134 this->writeModifiers(f.fModifiers, false);
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001135 this->writeTypePrecision(*f.fType);
ethannicholas0730be72016-09-01 07:59:02 -07001136 this->writeType(*f.fType);
ethannicholasf789b382016-08-03 12:43:36 -07001137 this->writeLine(" " + f.fName + ";");
1138 }
1139 fIndentation--;
Ethan Nicholas50afc172017-02-16 14:49:57 -05001140 this->write("}");
1141 if (intf.fInstanceName.size()) {
1142 this->write(" ");
1143 this->write(intf.fInstanceName);
1144 for (const auto& size : intf.fSizes) {
1145 this->write("[");
1146 if (size) {
1147 this->writeExpression(*size, kTopLevel_Precedence);
1148 }
1149 this->write("]");
1150 }
1151 }
1152 this->writeLine(";");
ethannicholasf789b382016-08-03 12:43:36 -07001153}
1154
Ethan Nicholas762466e2017-06-29 10:03:38 -04001155void GLSLCodeGenerator::writeVarInitializer(const Variable& var, const Expression& value) {
1156 this->writeExpression(value, kTopLevel_Precedence);
1157}
1158
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001159const char* GLSLCodeGenerator::getTypePrecision(const Type& type) {
1160 if (usesPrecisionModifiers()) {
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001161 switch (type.kind()) {
1162 case Type::kScalar_Kind:
Ruiqi Maob609e6d2018-07-17 10:19:38 -04001163 if (type == *fContext.fShort_Type || type == *fContext.fUShort_Type ||
1164 type == *fContext.fByte_Type || type == *fContext.fUByte_Type) {
Chris Daltonc2d0dd62018-03-07 07:46:10 -07001165 if (fProgram.fSettings.fForceHighPrecision ||
1166 fProgram.fSettings.fCaps->incompleteShortIntPrecision()) {
1167 return "highp ";
1168 }
1169 return "mediump ";
1170 }
1171 if (type == *fContext.fHalf_Type) {
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001172 return fProgram.fSettings.fForceHighPrecision ? "highp " : "mediump ";
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001173 }
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001174 if (type == *fContext.fFloat_Type || type == *fContext.fInt_Type ||
1175 type == *fContext.fUInt_Type) {
1176 return "highp ";
1177 }
1178 return "";
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001179 case Type::kVector_Kind: // fall through
1180 case Type::kMatrix_Kind:
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001181 return this->getTypePrecision(type.componentType());
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001182 default:
1183 break;
1184 }
1185 }
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001186 return "";
1187}
1188
1189void GLSLCodeGenerator::writeTypePrecision(const Type& type) {
1190 this->write(this->getTypePrecision(type));
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001191}
1192
ethannicholas5961bc92016-10-12 06:39:56 -07001193void GLSLCodeGenerator::writeVarDeclarations(const VarDeclarations& decl, bool global) {
Ethan Nicholas14efcbf2017-11-07 09:23:38 -05001194 if (!decl.fVars.size()) {
1195 return;
1196 }
Ethan Nicholasb4dc4192017-06-02 10:16:28 -04001197 bool wroteType = false;
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001198 for (const auto& stmt : decl.fVars) {
1199 VarDeclaration& var = (VarDeclaration&) *stmt;
Ethan Nicholasb4dc4192017-06-02 10:16:28 -04001200 if (wroteType) {
1201 this->write(", ");
1202 } else {
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001203 this->writeModifiers(var.fVar->fModifiers, global);
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001204 this->writeTypePrecision(decl.fBaseType);
Ethan Nicholasb4dc4192017-06-02 10:16:28 -04001205 this->writeType(decl.fBaseType);
1206 this->write(" ");
1207 wroteType = true;
1208 }
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001209 this->write(var.fVar->fName);
1210 for (const auto& size : var.fSizes) {
ethannicholasf789b382016-08-03 12:43:36 -07001211 this->write("[");
ethannicholas5961bc92016-10-12 06:39:56 -07001212 if (size) {
1213 this->writeExpression(*size, kTopLevel_Precedence);
1214 }
ethannicholasf789b382016-08-03 12:43:36 -07001215 this->write("]");
1216 }
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001217 if (var.fValue) {
ethannicholasf789b382016-08-03 12:43:36 -07001218 this->write(" = ");
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001219 this->writeVarInitializer(*var.fVar, *var.fValue);
ethannicholasf789b382016-08-03 12:43:36 -07001220 }
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001221 if (!fFoundImageDecl && var.fVar->fType == *fContext.fImage2D_Type) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001222 if (fProgram.fSettings.fCaps->imageLoadStoreExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001223 this->writeExtension(fProgram.fSettings.fCaps->imageLoadStoreExtensionString());
Brian Salomon2a51de82016-11-16 12:06:01 -05001224 }
1225 fFoundImageDecl = true;
1226 }
Brian Osman4b2f9152018-04-17 11:19:57 -04001227 if (!fFoundExternalSamplerDecl && var.fVar->fType == *fContext.fSamplerExternalOES_Type) {
1228 if (fProgram.fSettings.fCaps->externalTextureExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001229 this->writeExtension(fProgram.fSettings.fCaps->externalTextureExtensionString());
Brian Osman4b2f9152018-04-17 11:19:57 -04001230 }
Brian Osman061020e2018-04-17 14:22:15 -04001231 if (fProgram.fSettings.fCaps->secondExternalTextureExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001232 this->writeExtension(
1233 fProgram.fSettings.fCaps->secondExternalTextureExtensionString());
Brian Osman061020e2018-04-17 14:22:15 -04001234 }
Brian Osman4b2f9152018-04-17 11:19:57 -04001235 fFoundExternalSamplerDecl = true;
1236 }
ethannicholasf789b382016-08-03 12:43:36 -07001237 }
Ethan Nicholasb4dc4192017-06-02 10:16:28 -04001238 if (wroteType) {
1239 this->write(";");
1240 }
ethannicholasf789b382016-08-03 12:43:36 -07001241}
1242
1243void GLSLCodeGenerator::writeStatement(const Statement& s) {
1244 switch (s.fKind) {
1245 case Statement::kBlock_Kind:
1246 this->writeBlock((Block&) s);
1247 break;
1248 case Statement::kExpression_Kind:
1249 this->writeExpression(*((ExpressionStatement&) s).fExpression, kTopLevel_Precedence);
1250 this->write(";");
1251 break;
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001252 case Statement::kReturn_Kind:
ethannicholasf789b382016-08-03 12:43:36 -07001253 this->writeReturnStatement((ReturnStatement&) s);
1254 break;
ethannicholas14fe8cc2016-09-07 13:37:16 -07001255 case Statement::kVarDeclarations_Kind:
ethannicholas5961bc92016-10-12 06:39:56 -07001256 this->writeVarDeclarations(*((VarDeclarationsStatement&) s).fDeclaration, false);
ethannicholasf789b382016-08-03 12:43:36 -07001257 break;
1258 case Statement::kIf_Kind:
1259 this->writeIfStatement((IfStatement&) s);
1260 break;
1261 case Statement::kFor_Kind:
1262 this->writeForStatement((ForStatement&) s);
1263 break;
1264 case Statement::kWhile_Kind:
1265 this->writeWhileStatement((WhileStatement&) s);
1266 break;
1267 case Statement::kDo_Kind:
1268 this->writeDoStatement((DoStatement&) s);
1269 break;
Ethan Nicholasaf197692017-02-27 13:26:45 -05001270 case Statement::kSwitch_Kind:
1271 this->writeSwitchStatement((SwitchStatement&) s);
1272 break;
ethannicholasf789b382016-08-03 12:43:36 -07001273 case Statement::kBreak_Kind:
1274 this->write("break;");
1275 break;
1276 case Statement::kContinue_Kind:
1277 this->write("continue;");
1278 break;
1279 case Statement::kDiscard_Kind:
1280 this->write("discard;");
1281 break;
Ethan Nicholascb670962017-04-20 19:31:52 -04001282 case Statement::kNop_Kind:
1283 this->write(";");
1284 break;
ethannicholasf789b382016-08-03 12:43:36 -07001285 default:
1286 ABORT("unsupported statement: %s", s.description().c_str());
1287 }
1288}
1289
Ethan Nicholascb670962017-04-20 19:31:52 -04001290void GLSLCodeGenerator::writeStatements(const std::vector<std::unique_ptr<Statement>>& statements) {
1291 for (const auto& s : statements) {
1292 if (!s->isEmpty()) {
1293 this->writeStatement(*s);
1294 this->writeLine();
1295 }
1296 }
1297}
1298
ethannicholasf789b382016-08-03 12:43:36 -07001299void GLSLCodeGenerator::writeBlock(const Block& b) {
1300 this->writeLine("{");
1301 fIndentation++;
Ethan Nicholascb670962017-04-20 19:31:52 -04001302 this->writeStatements(b.fStatements);
ethannicholasf789b382016-08-03 12:43:36 -07001303 fIndentation--;
1304 this->write("}");
1305}
1306
1307void GLSLCodeGenerator::writeIfStatement(const IfStatement& stmt) {
1308 this->write("if (");
1309 this->writeExpression(*stmt.fTest, kTopLevel_Precedence);
1310 this->write(") ");
1311 this->writeStatement(*stmt.fIfTrue);
1312 if (stmt.fIfFalse) {
1313 this->write(" else ");
1314 this->writeStatement(*stmt.fIfFalse);
1315 }
1316}
1317
1318void GLSLCodeGenerator::writeForStatement(const ForStatement& f) {
1319 this->write("for (");
Ethan Nicholasb310fd52017-06-09 13:46:34 -04001320 if (f.fInitializer && !f.fInitializer->isEmpty()) {
ethannicholasf789b382016-08-03 12:43:36 -07001321 this->writeStatement(*f.fInitializer);
1322 } else {
1323 this->write("; ");
1324 }
1325 if (f.fTest) {
Adrienne Walkeree8295c2018-08-21 10:56:30 -07001326 if (fProgram.fSettings.fCaps->addAndTrueToLoopCondition()) {
1327 std::unique_ptr<Expression> and_true(new BinaryExpression(
1328 -1, f.fTest->clone(), Token::LOGICALAND,
1329 std::unique_ptr<BoolLiteral>(new BoolLiteral(fContext, -1,
1330 true)),
1331 *fContext.fBool_Type));
1332 this->writeExpression(*and_true, kTopLevel_Precedence);
1333 } else {
1334 this->writeExpression(*f.fTest, kTopLevel_Precedence);
1335 }
ethannicholasf789b382016-08-03 12:43:36 -07001336 }
1337 this->write("; ");
1338 if (f.fNext) {
1339 this->writeExpression(*f.fNext, kTopLevel_Precedence);
1340 }
1341 this->write(") ");
1342 this->writeStatement(*f.fStatement);
1343}
1344
1345void GLSLCodeGenerator::writeWhileStatement(const WhileStatement& w) {
1346 this->write("while (");
1347 this->writeExpression(*w.fTest, kTopLevel_Precedence);
1348 this->write(") ");
1349 this->writeStatement(*w.fStatement);
1350}
1351
1352void GLSLCodeGenerator::writeDoStatement(const DoStatement& d) {
Adrienne Walker8b23ca62018-08-22 10:45:41 -07001353 if (!fProgram.fSettings.fCaps->rewriteDoWhileLoops()) {
1354 this->write("do ");
1355 this->writeStatement(*d.fStatement);
1356 this->write(" while (");
1357 this->writeExpression(*d.fTest, kTopLevel_Precedence);
1358 this->write(");");
1359 return;
1360 }
1361
1362 // Otherwise, do the do while loop workaround, to rewrite loops of the form:
1363 // do {
1364 // CODE;
1365 // } while (CONDITION)
1366 //
1367 // to loops of the form
1368 // bool temp = false;
1369 // while (true) {
1370 // if (temp) {
1371 // if (!CONDITION) {
1372 // break;
1373 // }
1374 // }
1375 // temp = true;
1376 // CODE;
1377 // }
1378 String tmpVar = "_tmpLoopSeenOnce" + to_string(fVarCount++);
1379 this->write("bool ");
1380 this->write(tmpVar);
1381 this->writeLine(" = false;");
1382 this->writeLine("while (true) {");
1383 fIndentation++;
1384 this->write("if (");
1385 this->write(tmpVar);
1386 this->writeLine(") {");
1387 fIndentation++;
1388 this->write("if (!");
1389 this->writeExpression(*d.fTest, kPrefix_Precedence);
1390 this->writeLine(") {");
1391 fIndentation++;
1392 this->writeLine("break;");
1393 fIndentation--;
1394 this->writeLine("}");
1395 fIndentation--;
1396 this->writeLine("}");
1397 this->write(tmpVar);
1398 this->writeLine(" = true;");
ethannicholasf789b382016-08-03 12:43:36 -07001399 this->writeStatement(*d.fStatement);
Adrienne Walker8b23ca62018-08-22 10:45:41 -07001400 this->writeLine();
1401 fIndentation--;
1402 this->write("}");
ethannicholasf789b382016-08-03 12:43:36 -07001403}
1404
Ethan Nicholasaf197692017-02-27 13:26:45 -05001405void GLSLCodeGenerator::writeSwitchStatement(const SwitchStatement& s) {
1406 this->write("switch (");
1407 this->writeExpression(*s.fValue, kTopLevel_Precedence);
1408 this->writeLine(") {");
1409 fIndentation++;
1410 for (const auto& c : s.fCases) {
1411 if (c->fValue) {
1412 this->write("case ");
1413 this->writeExpression(*c->fValue, kTopLevel_Precedence);
1414 this->writeLine(":");
1415 } else {
1416 this->writeLine("default:");
1417 }
1418 fIndentation++;
1419 for (const auto& stmt : c->fStatements) {
1420 this->writeStatement(*stmt);
1421 this->writeLine();
1422 }
1423 fIndentation--;
1424 }
1425 fIndentation--;
1426 this->write("}");
1427}
1428
ethannicholasf789b382016-08-03 12:43:36 -07001429void GLSLCodeGenerator::writeReturnStatement(const ReturnStatement& r) {
1430 this->write("return");
1431 if (r.fExpression) {
1432 this->write(" ");
1433 this->writeExpression(*r.fExpression, kTopLevel_Precedence);
1434 }
1435 this->write(";");
1436}
1437
Ethan Nicholas762466e2017-06-29 10:03:38 -04001438void GLSLCodeGenerator::writeHeader() {
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001439 this->write(fProgram.fSettings.fCaps->versionDeclString());
ethannicholasf789b382016-08-03 12:43:36 -07001440 this->writeLine();
Ethan Nicholas762466e2017-06-29 10:03:38 -04001441}
1442
Ethan Nicholas762466e2017-06-29 10:03:38 -04001443void GLSLCodeGenerator::writeProgramElement(const ProgramElement& e) {
1444 switch (e.fKind) {
1445 case ProgramElement::kExtension_Kind:
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001446 this->writeExtension(((Extension&) e).fName);
Ethan Nicholas762466e2017-06-29 10:03:38 -04001447 break;
1448 case ProgramElement::kVar_Kind: {
1449 VarDeclarations& decl = (VarDeclarations&) e;
1450 if (decl.fVars.size() > 0) {
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001451 int builtin = ((VarDeclaration&) *decl.fVars[0]).fVar->fModifiers.fLayout.fBuiltin;
Ethan Nicholas762466e2017-06-29 10:03:38 -04001452 if (builtin == -1) {
1453 // normal var
1454 this->writeVarDeclarations(decl, true);
1455 this->writeLine();
1456 } else if (builtin == SK_FRAGCOLOR_BUILTIN &&
1457 fProgram.fSettings.fCaps->mustDeclareFragmentShaderOutput()) {
Brian Salomondc092132018-04-04 10:14:16 -04001458 if (fProgram.fSettings.fFragColorIsInOut) {
1459 this->write("inout ");
1460 } else {
1461 this->write("out ");
1462 }
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001463 if (usesPrecisionModifiers()) {
Ethan Nicholas762466e2017-06-29 10:03:38 -04001464 this->write("mediump ");
Mike Klein5ce39722017-06-27 22:52:03 +00001465 }
Ethan Nicholas762466e2017-06-29 10:03:38 -04001466 this->writeLine("vec4 sk_FragColor;");
Mike Klein5ce39722017-06-27 22:52:03 +00001467 }
Mike Klein5ce39722017-06-27 22:52:03 +00001468 }
Ethan Nicholas762466e2017-06-29 10:03:38 -04001469 break;
Mike Klein5ce39722017-06-27 22:52:03 +00001470 }
Ethan Nicholas762466e2017-06-29 10:03:38 -04001471 case ProgramElement::kInterfaceBlock_Kind:
1472 this->writeInterfaceBlock((InterfaceBlock&) e);
1473 break;
1474 case ProgramElement::kFunction_Kind:
1475 this->writeFunction((FunctionDefinition&) e);
1476 break;
Chris Daltonf1b47bb2017-10-06 11:57:51 -06001477 case ProgramElement::kModifiers_Kind: {
1478 const Modifiers& modifiers = ((ModifiersDeclaration&) e).fModifiers;
1479 if (!fFoundGSInvocations && modifiers.fLayout.fInvocations >= 0) {
1480 if (fProgram.fSettings.fCaps->gsInvocationsExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001481 this->writeExtension(fProgram.fSettings.fCaps->gsInvocationsExtensionString());
Chris Daltonf1b47bb2017-10-06 11:57:51 -06001482 }
1483 fFoundGSInvocations = true;
1484 }
1485 this->writeModifiers(modifiers, true);
Ethan Nicholas762466e2017-06-29 10:03:38 -04001486 this->writeLine(";");
1487 break;
Chris Daltonf1b47bb2017-10-06 11:57:51 -06001488 }
Ethan Nicholasaae47c82017-11-10 15:34:03 -05001489 case ProgramElement::kEnum_Kind:
1490 break;
Ethan Nicholas762466e2017-06-29 10:03:38 -04001491 default:
1492 printf("%s\n", e.description().c_str());
1493 ABORT("unsupported program element");
Ethan Nicholasc0709392017-06-27 11:20:22 -04001494 }
Ethan Nicholas762466e2017-06-29 10:03:38 -04001495}
1496
Ethan Nicholascd700e92018-08-24 16:43:57 -04001497void GLSLCodeGenerator::writeInputVars() {
1498 if (fProgram.fInputs.fRTWidth) {
1499 const char* precision = usesPrecisionModifiers() ? "highp " : "";
1500 fGlobals.writeText("uniform ");
1501 fGlobals.writeText(precision);
1502 fGlobals.writeText("float " SKSL_RTWIDTH_NAME ";\n");
1503 }
1504 if (fProgram.fInputs.fRTHeight) {
1505 const char* precision = usesPrecisionModifiers() ? "highp " : "";
1506 fGlobals.writeText("uniform ");
1507 fGlobals.writeText(precision);
1508 fGlobals.writeText("float " SKSL_RTHEIGHT_NAME ";\n");
1509 }
1510}
1511
Ethan Nicholas762466e2017-06-29 10:03:38 -04001512bool GLSLCodeGenerator::generateCode() {
Ethan Nicholas00543112018-07-31 09:44:36 -04001513 if (fProgramKind != Program::kPipelineStage_Kind) {
1514 this->writeHeader();
1515 }
Chris Dalton8fd79552018-01-11 00:46:14 -05001516 if (Program::kGeometry_Kind == fProgramKind &&
1517 fProgram.fSettings.fCaps->geometryShaderExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001518 this->writeExtension(fProgram.fSettings.fCaps->geometryShaderExtensionString());
Chris Dalton8fd79552018-01-11 00:46:14 -05001519 }
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001520 OutputStream* rawOut = fOut;
Ethan Nicholas762466e2017-06-29 10:03:38 -04001521 StringStream body;
1522 fOut = &body;
Ethan Nicholas3c6ae622018-04-24 13:06:09 -04001523 for (const auto& e : fProgram) {
1524 this->writeProgramElement(e);
Ethan Nicholas762466e2017-06-29 10:03:38 -04001525 }
1526 fOut = rawOut;
ethannicholasddb37d62016-10-20 09:54:00 -07001527
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001528 write_stringstream(fExtensions, *rawOut);
Ethan Nicholascd700e92018-08-24 16:43:57 -04001529 this->writeInputVars();
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001530 write_stringstream(fGlobals, *rawOut);
Brian Osmancc10d792018-07-20 13:09:45 -04001531
1532 if (!fProgram.fSettings.fCaps->canUseFragCoord()) {
1533 Layout layout;
1534 switch (fProgram.fKind) {
1535 case Program::kVertex_Kind: {
1536 Modifiers modifiers(layout, Modifiers::kOut_Flag | Modifiers::kHighp_Flag);
1537 this->writeModifiers(modifiers, true);
1538 this->write("vec4 sk_FragCoord_Workaround;\n");
1539 break;
1540 }
1541 case Program::kFragment_Kind: {
1542 Modifiers modifiers(layout, Modifiers::kIn_Flag | Modifiers::kHighp_Flag);
1543 this->writeModifiers(modifiers, true);
1544 this->write("vec4 sk_FragCoord_Workaround;\n");
1545 break;
1546 }
1547 default:
1548 break;
1549 }
1550 }
1551
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001552 if (this->usesPrecisionModifiers()) {
1553 this->writeLine("precision mediump float;");
1554 }
Ethan Nicholas6e6525c2018-01-03 17:03:56 -05001555 write_stringstream(fExtraFunctions, *rawOut);
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001556 write_stringstream(body, *rawOut);
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001557 return true;
ethannicholasf789b382016-08-03 12:43:36 -07001558}
1559
1560}