blob: c2316269236234a3bd94e5599c4b5a10e45229b0 [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;
Chris Daltona7086182018-11-16 09:33:43 -0500470 (*fFunctionClasses)["fma"] = FunctionClass::kFMA;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400471 (*fFunctionClasses)["fract"] = FunctionClass::kFract;
472 (*fFunctionClasses)["inverse"] = FunctionClass::kInverse;
473 (*fFunctionClasses)["inverseSqrt"] = FunctionClass::kInverseSqrt;
474 (*fFunctionClasses)["min"] = FunctionClass::kMin;
Adrienne Walker2f4c09b2018-08-22 16:04:57 -0700475 (*fFunctionClasses)["pow"] = FunctionClass::kPow;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400476 (*fFunctionClasses)["saturate"] = FunctionClass::kSaturate;
477 (*fFunctionClasses)["texture"] = FunctionClass::kTexture;
478 (*fFunctionClasses)["transpose"] = FunctionClass::kTranspose;
ethannicholas5961bc92016-10-12 06:39:56 -0700479 }
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400480#ifndef SKSL_STANDALONE
481 );
482#endif
483 const auto found = c.fFunction.fBuiltin ? fFunctionClasses->find(c.fFunction.fName) :
484 fFunctionClasses->end();
Brian Osman8a83ca42018-02-12 14:32:17 -0500485 bool isTextureFunctionWithBias = false;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400486 bool nameWritten = false;
487 if (found != fFunctionClasses->end()) {
488 switch (found->second) {
Adrienne Walker92b161f2018-08-22 10:41:52 -0700489 case FunctionClass::kAbs: {
490 if (!fProgram.fSettings.fCaps->emulateAbsIntFunction())
491 break;
492 SkASSERT(c.fArguments.size() == 1);
493 if (c.fArguments[0]->fType != *fContext.fInt_Type)
494 break;
495 // abs(int) on Intel OSX is incorrect, so emulate it:
496 String name = "_absemulation";
497 this->write(name);
498 nameWritten = true;
499 if (fWrittenIntrinsics.find(name) == fWrittenIntrinsics.end()) {
500 fWrittenIntrinsics.insert(name);
501 fExtraFunctions.writeText((
502 "int " + name + "(int x) {\n"
503 " return x * sign(x);\n"
504 "}\n"
505 ).c_str());
506 }
507 break;
508 }
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400509 case FunctionClass::kAtan:
510 if (fProgram.fSettings.fCaps->mustForceNegatedAtanParamToFloat() &&
511 c.fArguments.size() == 2 &&
512 c.fArguments[1]->fKind == Expression::kPrefix_Kind) {
513 const PrefixExpression& p = (PrefixExpression&) *c.fArguments[1];
514 if (p.fOperator == Token::MINUS) {
515 this->write("atan(");
516 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
517 this->write(", -1.0 * ");
518 this->writeExpression(*p.fOperand, kMultiplicative_Precedence);
519 this->write(")");
520 return;
521 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500522 }
523 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400524 case FunctionClass::kDerivative:
525 if (!fFoundDerivatives &&
526 fProgram.fSettings.fCaps->shaderDerivativeExtensionString()) {
527 SkASSERT(fProgram.fSettings.fCaps->shaderDerivativeSupport());
528 this->writeExtension(fProgram.fSettings.fCaps->shaderDerivativeExtensionString());
529 fFoundDerivatives = true;
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500530 }
531 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400532 case FunctionClass::kDeterminant:
533 if (fProgram.fSettings.fCaps->generation() < k150_GrGLSLGeneration) {
534 SkASSERT(c.fArguments.size() == 1);
535 this->writeDeterminantHack(*c.fArguments[0]);
536 return;
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500537 }
538 break;
Chris Daltona7086182018-11-16 09:33:43 -0500539 case FunctionClass::kFMA:
540 if (!fProgram.fSettings.fCaps->builtinFMASupport()) {
541 SkASSERT(c.fArguments.size() == 3);
542 this->write("((");
543 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
544 this->write(") * (");
545 this->writeExpression(*c.fArguments[1], kSequence_Precedence);
546 this->write(") + (");
547 this->writeExpression(*c.fArguments[2], kSequence_Precedence);
548 this->write("))");
549 return;
550 }
551 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400552 case FunctionClass::kFract:
553 if (!fProgram.fSettings.fCaps->canUseFractForNegativeValues()) {
554 SkASSERT(c.fArguments.size() == 1);
555 this->write("(0.5 - sign(");
556 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
557 this->write(") * (0.5 - fract(abs(");
558 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
559 this->write("))))");
560 return;
561 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500562 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400563 case FunctionClass::kInverse:
564 if (fProgram.fSettings.fCaps->generation() < k140_GrGLSLGeneration) {
565 SkASSERT(c.fArguments.size() == 1);
566 this->writeInverseHack(*c.fArguments[0]);
567 return;
568 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500569 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400570 case FunctionClass::kInverseSqrt:
571 if (fProgram.fSettings.fCaps->generation() < k130_GrGLSLGeneration) {
572 SkASSERT(c.fArguments.size() == 1);
573 this->writeInverseSqrtHack(*c.fArguments[0]);
574 return;
575 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500576 break;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400577 case FunctionClass::kMin:
578 if (!fProgram.fSettings.fCaps->canUseMinAndAbsTogether()) {
579 SkASSERT(c.fArguments.size() == 2);
580 if (is_abs(*c.fArguments[0])) {
581 this->writeMinAbsHack(*c.fArguments[0], *c.fArguments[1]);
582 return;
583 }
584 if (is_abs(*c.fArguments[1])) {
585 // note that this violates the GLSL left-to-right evaluation semantics.
586 // I doubt it will ever end up mattering, but it's worth calling out.
587 this->writeMinAbsHack(*c.fArguments[1], *c.fArguments[0]);
588 return;
589 }
590 }
591 break;
Adrienne Walker2f4c09b2018-08-22 16:04:57 -0700592 case FunctionClass::kPow:
593 if (!fProgram.fSettings.fCaps->removePowWithConstantExponent()) {
594 break;
595 }
596 // pow(x, y) on some NVIDIA drivers causes crashes if y is a
597 // constant. It's hard to tell what constitutes "constant" here
598 // so just replace in all cases.
599
600 // Change pow(x, y) into exp2(y * log2(x))
601 this->write("exp2(");
602 this->writeExpression(*c.fArguments[1], kMultiplicative_Precedence);
603 this->write(" * log2(");
604 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
605 this->write("))");
606 return;
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400607 case FunctionClass::kSaturate:
608 SkASSERT(c.fArguments.size() == 1);
609 this->write("clamp(");
610 this->writeExpression(*c.fArguments[0], kSequence_Precedence);
611 this->write(", 0.0, 1.0)");
612 return;
613 case FunctionClass::kTexture: {
614 const char* dim = "";
615 bool proj = false;
616 switch (c.fArguments[0]->fType.dimensions()) {
617 case SpvDim1D:
618 dim = "1D";
619 isTextureFunctionWithBias = true;
620 if (c.fArguments[1]->fType == *fContext.fFloat_Type) {
621 proj = false;
622 } else {
623 SkASSERT(c.fArguments[1]->fType == *fContext.fFloat2_Type);
624 proj = true;
625 }
626 break;
627 case SpvDim2D:
628 dim = "2D";
629 if (c.fArguments[0]->fType != *fContext.fSamplerExternalOES_Type) {
630 isTextureFunctionWithBias = true;
631 }
632 if (c.fArguments[1]->fType == *fContext.fFloat2_Type) {
633 proj = false;
634 } else {
635 SkASSERT(c.fArguments[1]->fType == *fContext.fFloat3_Type);
636 proj = true;
637 }
638 break;
639 case SpvDim3D:
640 dim = "3D";
641 isTextureFunctionWithBias = true;
642 if (c.fArguments[1]->fType == *fContext.fFloat3_Type) {
643 proj = false;
644 } else {
645 SkASSERT(c.fArguments[1]->fType == *fContext.fFloat4_Type);
646 proj = true;
647 }
648 break;
649 case SpvDimCube:
650 dim = "Cube";
651 isTextureFunctionWithBias = true;
652 proj = false;
653 break;
654 case SpvDimRect:
655 dim = "Rect";
656 proj = false;
657 break;
658 case SpvDimBuffer:
659 SkASSERT(false); // doesn't exist
660 dim = "Buffer";
661 proj = false;
662 break;
663 case SpvDimSubpassData:
664 SkASSERT(false); // doesn't exist
665 dim = "SubpassData";
666 proj = false;
667 break;
668 }
669 this->write("texture");
670 if (fProgram.fSettings.fCaps->generation() < k130_GrGLSLGeneration) {
671 this->write(dim);
672 }
673 if (proj) {
674 this->write("Proj");
675 }
676 nameWritten = true;
677 break;
678 }
679 case FunctionClass::kTranspose:
680 if (fProgram.fSettings.fCaps->generation() < k130_GrGLSLGeneration) {
681 SkASSERT(c.fArguments.size() == 1);
682 this->writeTransposeHack(*c.fArguments[0]);
683 return;
684 }
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500685 break;
686 }
Ethan Nicholas12fb9cf2018-08-03 16:16:57 -0400687 }
688 if (!nameWritten) {
Ethan Nicholas2b3dab62016-11-28 12:03:26 -0500689 this->write(c.fFunction.fName);
690 }
691 this->write("(");
ethannicholasf789b382016-08-03 12:43:36 -0700692 const char* separator = "";
693 for (const auto& arg : c.fArguments) {
694 this->write(separator);
695 separator = ", ";
696 this->writeExpression(*arg, kSequence_Precedence);
697 }
Brian Osman8a83ca42018-02-12 14:32:17 -0500698 if (fProgram.fSettings.fSharpenTextures && isTextureFunctionWithBias) {
699 this->write(", -0.5");
700 }
ethannicholasf789b382016-08-03 12:43:36 -0700701 this->write(")");
702}
703
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400704void GLSLCodeGenerator::writeConstructor(const Constructor& c, Precedence parentPrecedence) {
705 if (c.fArguments.size() == 1 &&
706 this->getTypeName(c.fType) == this->getTypeName(c.fArguments[0]->fType)) {
707 // in cases like half(float), they're different types as far as SkSL is concerned but the
708 // same type as far as GLSL is concerned. We avoid a redundant float(float) by just writing
709 // out the inner expression here.
710 this->writeExpression(*c.fArguments[0], parentPrecedence);
711 return;
712 }
Ethan Nicholas5af9ea32017-07-28 15:19:46 -0400713 this->writeType(c.fType);
714 this->write("(");
ethannicholasf789b382016-08-03 12:43:36 -0700715 const char* separator = "";
716 for (const auto& arg : c.fArguments) {
717 this->write(separator);
718 separator = ", ";
719 this->writeExpression(*arg, kSequence_Precedence);
720 }
721 this->write(")");
722}
723
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500724void GLSLCodeGenerator::writeFragCoord() {
Brian Osmancd3261a2018-01-16 13:52:29 +0000725 if (!fProgram.fSettings.fCaps->canUseFragCoord()) {
Brian Salomondba65f92018-01-22 08:43:38 -0500726 if (!fSetupFragCoordWorkaround) {
727 const char* precision = usesPrecisionModifiers() ? "highp " : "";
728 fFunctionHeader += precision;
729 fFunctionHeader += " float sk_FragCoord_InvW = 1. / sk_FragCoord_Workaround.w;\n";
730 fFunctionHeader += precision;
731 fFunctionHeader += " vec4 sk_FragCoord_Resolved = "
732 "vec4(sk_FragCoord_Workaround.xyz * sk_FragCoord_InvW, sk_FragCoord_InvW);\n";
733 // Ensure that we get exact .5 values for x and y.
734 fFunctionHeader += " sk_FragCoord_Resolved.xy = floor(sk_FragCoord_Resolved.xy) + "
735 "vec2(.5);\n";
736 fSetupFragCoordWorkaround = true;
737 }
738 this->write("sk_FragCoord_Resolved");
Brian Osmancd3261a2018-01-16 13:52:29 +0000739 return;
740 }
741
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500742 // We only declare "gl_FragCoord" when we're in the case where we want to use layout qualifiers
743 // to reverse y. Otherwise it isn't necessary and whether the "in" qualifier appears in the
744 // declaration varies in earlier GLSL specs. So it is simpler to omit it.
745 if (!fProgram.fSettings.fFlipY) {
746 this->write("gl_FragCoord");
747 } else if (const char* extension =
Ethan Nicholascd700e92018-08-24 16:43:57 -0400748 fProgram.fSettings.fCaps->fragCoordConventionsExtensionString()) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500749 if (!fSetupFragPositionGlobal) {
750 if (fProgram.fSettings.fCaps->generation() < k150_GrGLSLGeneration) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -0400751 this->writeExtension(extension);
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500752 }
Ethan Nicholas88f6d372018-07-27 10:03:46 -0400753 fGlobals.writeText("layout(origin_upper_left) in vec4 gl_FragCoord;\n");
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500754 fSetupFragPositionGlobal = true;
Greg Daniele8e4a3e2016-12-12 17:20:42 +0000755 }
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500756 this->write("gl_FragCoord");
Greg Daniele8e4a3e2016-12-12 17:20:42 +0000757 } else {
Ethan Nicholascd700e92018-08-24 16:43:57 -0400758 if (!fSetupFragPositionLocal) {
Michael Ludwig5e1f6ea2018-12-03 15:14:50 -0500759 fFunctionHeader += usesPrecisionModifiers() ? "highp " : "";
Michael Ludwigf0b60442018-12-10 14:43:38 +0000760 fFunctionHeader += " vec4 sk_FragCoord = vec4(gl_FragCoord.x, " SKSL_RTHEIGHT_NAME
761 " - gl_FragCoord.y, gl_FragCoord.z, gl_FragCoord.w);\n";
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500762 fSetupFragPositionLocal = true;
763 }
764 this->write("sk_FragCoord");
765 }
766}
767
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500768void GLSLCodeGenerator::writeVariableReference(const VariableReference& ref) {
769 switch (ref.fVariable.fModifiers.fLayout.fBuiltin) {
770 case SK_FRAGCOLOR_BUILTIN:
771 if (fProgram.fSettings.fCaps->mustDeclareFragmentShaderOutput()) {
772 this->write("sk_FragColor");
773 } else {
774 this->write("gl_FragColor");
775 }
776 break;
777 case SK_FRAGCOORD_BUILTIN:
778 this->writeFragCoord();
779 break;
Ethan Nicholascd700e92018-08-24 16:43:57 -0400780 case SK_WIDTH_BUILTIN:
781 this->write("u_skRTWidth");
782 break;
783 case SK_HEIGHT_BUILTIN:
784 this->write("u_skRTHeight");
785 break;
Chris Dalton49d14e92018-07-27 12:38:35 -0600786 case SK_CLOCKWISE_BUILTIN:
Chris Daltonc8ece3d2018-07-30 15:03:45 -0600787 this->write(fProgram.fSettings.fFlipY ? "(!gl_FrontFacing)" : "gl_FrontFacing");
Chris Dalton49d14e92018-07-27 12:38:35 -0600788 break;
Ethan Nicholasa51740c2017-02-07 14:53:32 -0500789 case SK_VERTEXID_BUILTIN:
790 this->write("gl_VertexID");
791 break;
Chris Dalton8580d512017-10-14 22:12:33 -0600792 case SK_INSTANCEID_BUILTIN:
793 this->write("gl_InstanceID");
794 break;
Ethan Nicholas67d64602017-02-09 10:15:25 -0500795 case SK_CLIPDISTANCE_BUILTIN:
796 this->write("gl_ClipDistance");
797 break;
Ethan Nicholas52cad152017-02-16 16:37:32 -0500798 case SK_IN_BUILTIN:
799 this->write("gl_in");
800 break;
801 case SK_INVOCATIONID_BUILTIN:
802 this->write("gl_InvocationID");
803 break;
Ethan Nicholaseab2baa2018-04-13 15:16:27 -0400804 case SK_LASTFRAGCOLOR_BUILTIN:
805 this->write(fProgram.fSettings.fCaps->fbFetchColorName());
806 break;
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500807 default:
808 this->write(ref.fVariable.fName);
ethannicholas5961bc92016-10-12 06:39:56 -0700809 }
ethannicholasf789b382016-08-03 12:43:36 -0700810}
811
812void GLSLCodeGenerator::writeIndexExpression(const IndexExpression& expr) {
813 this->writeExpression(*expr.fBase, kPostfix_Precedence);
814 this->write("[");
815 this->writeExpression(*expr.fIndex, kTopLevel_Precedence);
816 this->write("]");
817}
818
Brian Osmancd3261a2018-01-16 13:52:29 +0000819bool is_sk_position(const FieldAccess& f) {
820 return "sk_Position" == f.fBase->fType.fields()[f.fFieldIndex].fName;
821}
822
ethannicholasf789b382016-08-03 12:43:36 -0700823void GLSLCodeGenerator::writeFieldAccess(const FieldAccess& f) {
824 if (f.fOwnerKind == FieldAccess::kDefault_OwnerKind) {
825 this->writeExpression(*f.fBase, kPostfix_Precedence);
826 this->write(".");
827 }
Ethan Nicholas67d64602017-02-09 10:15:25 -0500828 switch (f.fBase->fType.fields()[f.fFieldIndex].fModifiers.fLayout.fBuiltin) {
829 case SK_CLIPDISTANCE_BUILTIN:
830 this->write("gl_ClipDistance");
831 break;
832 default:
Ethan Nicholasbed683a2017-09-26 14:23:59 -0400833 StringFragment name = f.fBase->fType.fields()[f.fFieldIndex].fName;
834 if (name == "sk_Position") {
835 this->write("gl_Position");
836 } else if (name == "sk_PointSize") {
837 this->write("gl_PointSize");
838 } else {
839 this->write(f.fBase->fType.fields()[f.fFieldIndex].fName);
840 }
Ethan Nicholas67d64602017-02-09 10:15:25 -0500841 }
ethannicholasf789b382016-08-03 12:43:36 -0700842}
843
844void GLSLCodeGenerator::writeSwizzle(const Swizzle& swizzle) {
845 this->writeExpression(*swizzle.fBase, kPostfix_Precedence);
846 this->write(".");
847 for (int c : swizzle.fComponents) {
848 this->write(&("x\0y\0z\0w\0"[c * 2]));
849 }
850}
851
Ethan Nicholas762466e2017-06-29 10:03:38 -0400852GLSLCodeGenerator::Precedence GLSLCodeGenerator::GetBinaryPrecedence(Token::Kind op) {
ethannicholasf789b382016-08-03 12:43:36 -0700853 switch (op) {
854 case Token::STAR: // fall through
855 case Token::SLASH: // fall through
856 case Token::PERCENT: return GLSLCodeGenerator::kMultiplicative_Precedence;
857 case Token::PLUS: // fall through
858 case Token::MINUS: return GLSLCodeGenerator::kAdditive_Precedence;
859 case Token::SHL: // fall through
860 case Token::SHR: return GLSLCodeGenerator::kShift_Precedence;
861 case Token::LT: // fall through
862 case Token::GT: // fall through
863 case Token::LTEQ: // fall through
864 case Token::GTEQ: return GLSLCodeGenerator::kRelational_Precedence;
865 case Token::EQEQ: // fall through
866 case Token::NEQ: return GLSLCodeGenerator::kEquality_Precedence;
867 case Token::BITWISEAND: return GLSLCodeGenerator::kBitwiseAnd_Precedence;
868 case Token::BITWISEXOR: return GLSLCodeGenerator::kBitwiseXor_Precedence;
869 case Token::BITWISEOR: return GLSLCodeGenerator::kBitwiseOr_Precedence;
870 case Token::LOGICALAND: return GLSLCodeGenerator::kLogicalAnd_Precedence;
871 case Token::LOGICALXOR: return GLSLCodeGenerator::kLogicalXor_Precedence;
872 case Token::LOGICALOR: return GLSLCodeGenerator::kLogicalOr_Precedence;
873 case Token::EQ: // fall through
874 case Token::PLUSEQ: // fall through
875 case Token::MINUSEQ: // fall through
876 case Token::STAREQ: // fall through
877 case Token::SLASHEQ: // fall through
878 case Token::PERCENTEQ: // fall through
879 case Token::SHLEQ: // fall through
880 case Token::SHREQ: // fall through
881 case Token::LOGICALANDEQ: // fall through
882 case Token::LOGICALXOREQ: // fall through
883 case Token::LOGICALOREQ: // fall through
884 case Token::BITWISEANDEQ: // fall through
885 case Token::BITWISEXOREQ: // fall through
886 case Token::BITWISEOREQ: return GLSLCodeGenerator::kAssignment_Precedence;
Ethan Nicholas4b330df2017-05-17 10:52:55 -0400887 case Token::COMMA: return GLSLCodeGenerator::kSequence_Precedence;
ethannicholasf789b382016-08-03 12:43:36 -0700888 default: ABORT("unsupported binary operator");
889 }
890}
891
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400892void GLSLCodeGenerator::writeBinaryExpression(const BinaryExpression& b,
ethannicholasf789b382016-08-03 12:43:36 -0700893 Precedence parentPrecedence) {
Adrienne Walkerc02165f2018-08-21 11:08:11 -0700894 if (fProgram.fSettings.fCaps->unfoldShortCircuitAsTernary() &&
895 (b.fOperator == Token::LOGICALAND || b.fOperator == Token::LOGICALOR)) {
896 this->writeShortCircuitWorkaroundExpression(b, parentPrecedence);
897 return;
898 }
899
Ethan Nicholas762466e2017-06-29 10:03:38 -0400900 Precedence precedence = GetBinaryPrecedence(b.fOperator);
ethannicholasf789b382016-08-03 12:43:36 -0700901 if (precedence >= parentPrecedence) {
902 this->write("(");
903 }
Ethan Nicholas0b631962018-07-24 13:41:11 -0400904 bool positionWorkaround = fProgramKind == Program::Kind::kVertex_Kind &&
905 Compiler::IsAssignment(b.fOperator) &&
Brian Osmancd3261a2018-01-16 13:52:29 +0000906 Expression::kFieldAccess_Kind == b.fLeft->fKind &&
907 is_sk_position((FieldAccess&) *b.fLeft) &&
908 !strstr(b.fRight->description().c_str(), "sk_RTAdjust") &&
909 !fProgram.fSettings.fCaps->canUseFragCoord();
910 if (positionWorkaround) {
911 this->write("sk_FragCoord_Workaround = (");
912 }
ethannicholasf789b382016-08-03 12:43:36 -0700913 this->writeExpression(*b.fLeft, precedence);
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700914 this->write(" ");
915 this->write(Compiler::OperatorName(b.fOperator));
916 this->write(" ");
ethannicholasf789b382016-08-03 12:43:36 -0700917 this->writeExpression(*b.fRight, precedence);
Brian Osmancd3261a2018-01-16 13:52:29 +0000918 if (positionWorkaround) {
919 this->write(")");
920 }
ethannicholasf789b382016-08-03 12:43:36 -0700921 if (precedence >= parentPrecedence) {
922 this->write(")");
923 }
924}
925
Adrienne Walkerc02165f2018-08-21 11:08:11 -0700926void GLSLCodeGenerator::writeShortCircuitWorkaroundExpression(const BinaryExpression& b,
927 Precedence parentPrecedence) {
928 if (kTernary_Precedence >= parentPrecedence) {
929 this->write("(");
930 }
931
932 // Transform:
933 // a && b => a ? b : false
934 // a || b => a ? true : b
935 this->writeExpression(*b.fLeft, kTernary_Precedence);
936 this->write(" ? ");
937 if (b.fOperator == Token::LOGICALAND) {
938 this->writeExpression(*b.fRight, kTernary_Precedence);
939 } else {
940 BoolLiteral boolTrue(fContext, -1, true);
941 this->writeBoolLiteral(boolTrue);
942 }
943 this->write(" : ");
944 if (b.fOperator == Token::LOGICALAND) {
945 BoolLiteral boolFalse(fContext, -1, false);
946 this->writeBoolLiteral(boolFalse);
947 } else {
948 this->writeExpression(*b.fRight, kTernary_Precedence);
949 }
950 if (kTernary_Precedence >= parentPrecedence) {
951 this->write(")");
952 }
953}
954
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400955void GLSLCodeGenerator::writeTernaryExpression(const TernaryExpression& t,
ethannicholasf789b382016-08-03 12:43:36 -0700956 Precedence parentPrecedence) {
957 if (kTernary_Precedence >= parentPrecedence) {
958 this->write("(");
959 }
960 this->writeExpression(*t.fTest, kTernary_Precedence);
961 this->write(" ? ");
962 this->writeExpression(*t.fIfTrue, kTernary_Precedence);
963 this->write(" : ");
964 this->writeExpression(*t.fIfFalse, kTernary_Precedence);
965 if (kTernary_Precedence >= parentPrecedence) {
966 this->write(")");
967 }
968}
969
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400970void GLSLCodeGenerator::writePrefixExpression(const PrefixExpression& p,
ethannicholasf789b382016-08-03 12:43:36 -0700971 Precedence parentPrecedence) {
972 if (kPrefix_Precedence >= parentPrecedence) {
973 this->write("(");
974 }
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700975 this->write(Compiler::OperatorName(p.fOperator));
ethannicholasf789b382016-08-03 12:43:36 -0700976 this->writeExpression(*p.fOperand, kPrefix_Precedence);
977 if (kPrefix_Precedence >= parentPrecedence) {
978 this->write(")");
979 }
980}
981
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400982void GLSLCodeGenerator::writePostfixExpression(const PostfixExpression& p,
ethannicholasf789b382016-08-03 12:43:36 -0700983 Precedence parentPrecedence) {
984 if (kPostfix_Precedence >= parentPrecedence) {
985 this->write("(");
986 }
987 this->writeExpression(*p.fOperand, kPostfix_Precedence);
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700988 this->write(Compiler::OperatorName(p.fOperator));
ethannicholasf789b382016-08-03 12:43:36 -0700989 if (kPostfix_Precedence >= parentPrecedence) {
990 this->write(")");
991 }
992}
993
994void GLSLCodeGenerator::writeBoolLiteral(const BoolLiteral& b) {
995 this->write(b.fValue ? "true" : "false");
996}
997
998void GLSLCodeGenerator::writeIntLiteral(const IntLiteral& i) {
ethannicholas5961bc92016-10-12 06:39:56 -0700999 if (i.fType == *fContext.fUInt_Type) {
1000 this->write(to_string(i.fValue & 0xffffffff) + "u");
Ethan Nicholas58d56482017-12-19 09:29:22 -05001001 } else if (i.fType == *fContext.fUShort_Type) {
1002 this->write(to_string(i.fValue & 0xffff) + "u");
Ruiqi Maob609e6d2018-07-17 10:19:38 -04001003 } else if (i.fType == *fContext.fUByte_Type) {
1004 this->write(to_string(i.fValue & 0xff) + "u");
1005 } else {
ethannicholas5961bc92016-10-12 06:39:56 -07001006 this->write(to_string((int32_t) i.fValue));
1007 }
ethannicholasf789b382016-08-03 12:43:36 -07001008}
1009
1010void GLSLCodeGenerator::writeFloatLiteral(const FloatLiteral& f) {
1011 this->write(to_string(f.fValue));
1012}
1013
Ethan Nicholas762466e2017-06-29 10:03:38 -04001014void GLSLCodeGenerator::writeSetting(const Setting& s) {
1015 ABORT("internal error; setting was not folded to a constant during compilation\n");
1016}
1017
ethannicholasf789b382016-08-03 12:43:36 -07001018void GLSLCodeGenerator::writeFunction(const FunctionDefinition& f) {
Ethan Nicholas00543112018-07-31 09:44:36 -04001019 if (fProgramKind != Program::kPipelineStage_Kind) {
1020 this->writeTypePrecision(f.fDeclaration.fReturnType);
1021 this->writeType(f.fDeclaration.fReturnType);
1022 this->write(" " + f.fDeclaration.fName + "(");
1023 const char* separator = "";
1024 for (const auto& param : f.fDeclaration.fParameters) {
1025 this->write(separator);
1026 separator = ", ";
1027 this->writeModifiers(param->fModifiers, false);
1028 std::vector<int> sizes;
1029 const Type* type = &param->fType;
1030 while (type->kind() == Type::kArray_Kind) {
1031 sizes.push_back(type->columns());
1032 type = &type->componentType();
1033 }
1034 this->writeTypePrecision(*type);
1035 this->writeType(*type);
1036 this->write(" " + param->fName);
1037 for (int s : sizes) {
1038 if (s <= 0) {
1039 this->write("[]");
1040 } else {
1041 this->write("[" + to_string(s) + "]");
1042 }
ethannicholas5961bc92016-10-12 06:39:56 -07001043 }
1044 }
Ethan Nicholas00543112018-07-31 09:44:36 -04001045 this->writeLine(") {");
1046 fIndentation++;
ethannicholasf789b382016-08-03 12:43:36 -07001047 }
ethannicholas5961bc92016-10-12 06:39:56 -07001048 fFunctionHeader = "";
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001049 OutputStream* oldOut = fOut;
1050 StringStream buffer;
ethannicholas5961bc92016-10-12 06:39:56 -07001051 fOut = &buffer;
Ethan Nicholascb670962017-04-20 19:31:52 -04001052 this->writeStatements(((Block&) *f.fBody).fStatements);
Ethan Nicholas00543112018-07-31 09:44:36 -04001053 if (fProgramKind != Program::kPipelineStage_Kind) {
1054 fIndentation--;
1055 this->writeLine("}");
1056 }
ethannicholas5961bc92016-10-12 06:39:56 -07001057
1058 fOut = oldOut;
1059 this->write(fFunctionHeader);
Ethan Nicholas762466e2017-06-29 10:03:38 -04001060 this->write(buffer.str());
ethannicholasf789b382016-08-03 12:43:36 -07001061}
1062
Greg Daniel64773e62016-11-22 09:44:03 -05001063void GLSLCodeGenerator::writeModifiers(const Modifiers& modifiers,
ethannicholas5961bc92016-10-12 06:39:56 -07001064 bool globalContext) {
Brian Salomonf9f45122016-11-29 11:59:17 -05001065 if (modifiers.fFlags & Modifiers::kFlat_Flag) {
1066 this->write("flat ");
1067 }
ethannicholas5961bc92016-10-12 06:39:56 -07001068 if (modifiers.fFlags & Modifiers::kNoPerspective_Flag) {
1069 this->write("noperspective ");
1070 }
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001071 String layout = modifiers.fLayout.description();
Ethan Nicholas8da9e942017-03-09 16:35:09 -05001072 if (layout.size()) {
1073 this->write(layout + " ");
1074 }
Brian Salomonf9f45122016-11-29 11:59:17 -05001075 if (modifiers.fFlags & Modifiers::kReadOnly_Flag) {
1076 this->write("readonly ");
1077 }
1078 if (modifiers.fFlags & Modifiers::kWriteOnly_Flag) {
1079 this->write("writeonly ");
1080 }
1081 if (modifiers.fFlags & Modifiers::kCoherent_Flag) {
1082 this->write("coherent ");
1083 }
1084 if (modifiers.fFlags & Modifiers::kVolatile_Flag) {
1085 this->write("volatile ");
1086 }
1087 if (modifiers.fFlags & Modifiers::kRestrict_Flag) {
1088 this->write("restrict ");
ethannicholas5961bc92016-10-12 06:39:56 -07001089 }
Greg Daniel64773e62016-11-22 09:44:03 -05001090 if ((modifiers.fFlags & Modifiers::kIn_Flag) &&
ethannicholas5961bc92016-10-12 06:39:56 -07001091 (modifiers.fFlags & Modifiers::kOut_Flag)) {
1092 this->write("inout ");
1093 } else if (modifiers.fFlags & Modifiers::kIn_Flag) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001094 if (globalContext &&
1095 fProgram.fSettings.fCaps->generation() < GrGLSLGeneration::k130_GrGLSLGeneration) {
ethannicholas5961bc92016-10-12 06:39:56 -07001096 this->write(fProgramKind == Program::kVertex_Kind ? "attribute "
1097 : "varying ");
1098 } else {
1099 this->write("in ");
1100 }
1101 } else if (modifiers.fFlags & Modifiers::kOut_Flag) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001102 if (globalContext &&
1103 fProgram.fSettings.fCaps->generation() < GrGLSLGeneration::k130_GrGLSLGeneration) {
ethannicholas5961bc92016-10-12 06:39:56 -07001104 this->write("varying ");
1105 } else {
1106 this->write("out ");
1107 }
1108 }
1109 if (modifiers.fFlags & Modifiers::kUniform_Flag) {
1110 this->write("uniform ");
1111 }
1112 if (modifiers.fFlags & Modifiers::kConst_Flag) {
1113 this->write("const ");
1114 }
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001115 if (usesPrecisionModifiers()) {
ethannicholas5961bc92016-10-12 06:39:56 -07001116 if (modifiers.fFlags & Modifiers::kLowp_Flag) {
1117 this->write("lowp ");
1118 }
1119 if (modifiers.fFlags & Modifiers::kMediump_Flag) {
1120 this->write("mediump ");
1121 }
1122 if (modifiers.fFlags & Modifiers::kHighp_Flag) {
1123 this->write("highp ");
1124 }
1125 }
ethannicholasf789b382016-08-03 12:43:36 -07001126}
1127
1128void GLSLCodeGenerator::writeInterfaceBlock(const InterfaceBlock& intf) {
Ethan Nicholas52cad152017-02-16 16:37:32 -05001129 if (intf.fTypeName == "sk_PerVertex") {
ethannicholasf789b382016-08-03 12:43:36 -07001130 return;
1131 }
ethannicholas5961bc92016-10-12 06:39:56 -07001132 this->writeModifiers(intf.fVariable.fModifiers, true);
Ethan Nicholas50afc172017-02-16 14:49:57 -05001133 this->writeLine(intf.fTypeName + " {");
ethannicholasf789b382016-08-03 12:43:36 -07001134 fIndentation++;
Ethan Nicholas50afc172017-02-16 14:49:57 -05001135 const Type* structType = &intf.fVariable.fType;
1136 while (structType->kind() == Type::kArray_Kind) {
1137 structType = &structType->componentType();
1138 }
1139 for (const auto& f : structType->fields()) {
ethannicholas5961bc92016-10-12 06:39:56 -07001140 this->writeModifiers(f.fModifiers, false);
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001141 this->writeTypePrecision(*f.fType);
ethannicholas0730be72016-09-01 07:59:02 -07001142 this->writeType(*f.fType);
ethannicholasf789b382016-08-03 12:43:36 -07001143 this->writeLine(" " + f.fName + ";");
1144 }
1145 fIndentation--;
Ethan Nicholas50afc172017-02-16 14:49:57 -05001146 this->write("}");
1147 if (intf.fInstanceName.size()) {
1148 this->write(" ");
1149 this->write(intf.fInstanceName);
1150 for (const auto& size : intf.fSizes) {
1151 this->write("[");
1152 if (size) {
1153 this->writeExpression(*size, kTopLevel_Precedence);
1154 }
1155 this->write("]");
1156 }
1157 }
1158 this->writeLine(";");
ethannicholasf789b382016-08-03 12:43:36 -07001159}
1160
Ethan Nicholas762466e2017-06-29 10:03:38 -04001161void GLSLCodeGenerator::writeVarInitializer(const Variable& var, const Expression& value) {
1162 this->writeExpression(value, kTopLevel_Precedence);
1163}
1164
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001165const char* GLSLCodeGenerator::getTypePrecision(const Type& type) {
1166 if (usesPrecisionModifiers()) {
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001167 switch (type.kind()) {
1168 case Type::kScalar_Kind:
Ruiqi Maob609e6d2018-07-17 10:19:38 -04001169 if (type == *fContext.fShort_Type || type == *fContext.fUShort_Type ||
1170 type == *fContext.fByte_Type || type == *fContext.fUByte_Type) {
Chris Daltonc2d0dd62018-03-07 07:46:10 -07001171 if (fProgram.fSettings.fForceHighPrecision ||
1172 fProgram.fSettings.fCaps->incompleteShortIntPrecision()) {
1173 return "highp ";
1174 }
1175 return "mediump ";
1176 }
1177 if (type == *fContext.fHalf_Type) {
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001178 return fProgram.fSettings.fForceHighPrecision ? "highp " : "mediump ";
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001179 }
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001180 if (type == *fContext.fFloat_Type || type == *fContext.fInt_Type ||
1181 type == *fContext.fUInt_Type) {
1182 return "highp ";
1183 }
1184 return "";
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001185 case Type::kVector_Kind: // fall through
1186 case Type::kMatrix_Kind:
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001187 return this->getTypePrecision(type.componentType());
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001188 default:
1189 break;
1190 }
1191 }
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001192 return "";
1193}
1194
1195void GLSLCodeGenerator::writeTypePrecision(const Type& type) {
1196 this->write(this->getTypePrecision(type));
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001197}
1198
ethannicholas5961bc92016-10-12 06:39:56 -07001199void GLSLCodeGenerator::writeVarDeclarations(const VarDeclarations& decl, bool global) {
Ethan Nicholas14efcbf2017-11-07 09:23:38 -05001200 if (!decl.fVars.size()) {
1201 return;
1202 }
Ethan Nicholasb4dc4192017-06-02 10:16:28 -04001203 bool wroteType = false;
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001204 for (const auto& stmt : decl.fVars) {
1205 VarDeclaration& var = (VarDeclaration&) *stmt;
Ethan Nicholasb4dc4192017-06-02 10:16:28 -04001206 if (wroteType) {
1207 this->write(", ");
1208 } else {
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001209 this->writeModifiers(var.fVar->fModifiers, global);
Ethan Nicholasdcba08e2017-08-02 10:52:54 -04001210 this->writeTypePrecision(decl.fBaseType);
Ethan Nicholasb4dc4192017-06-02 10:16:28 -04001211 this->writeType(decl.fBaseType);
1212 this->write(" ");
1213 wroteType = true;
1214 }
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001215 this->write(var.fVar->fName);
1216 for (const auto& size : var.fSizes) {
ethannicholasf789b382016-08-03 12:43:36 -07001217 this->write("[");
ethannicholas5961bc92016-10-12 06:39:56 -07001218 if (size) {
1219 this->writeExpression(*size, kTopLevel_Precedence);
1220 }
ethannicholasf789b382016-08-03 12:43:36 -07001221 this->write("]");
1222 }
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001223 if (var.fValue) {
ethannicholasf789b382016-08-03 12:43:36 -07001224 this->write(" = ");
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001225 this->writeVarInitializer(*var.fVar, *var.fValue);
ethannicholasf789b382016-08-03 12:43:36 -07001226 }
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001227 if (!fFoundImageDecl && var.fVar->fType == *fContext.fImage2D_Type) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001228 if (fProgram.fSettings.fCaps->imageLoadStoreExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001229 this->writeExtension(fProgram.fSettings.fCaps->imageLoadStoreExtensionString());
Brian Salomon2a51de82016-11-16 12:06:01 -05001230 }
1231 fFoundImageDecl = true;
1232 }
Brian Osman4b2f9152018-04-17 11:19:57 -04001233 if (!fFoundExternalSamplerDecl && var.fVar->fType == *fContext.fSamplerExternalOES_Type) {
1234 if (fProgram.fSettings.fCaps->externalTextureExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001235 this->writeExtension(fProgram.fSettings.fCaps->externalTextureExtensionString());
Brian Osman4b2f9152018-04-17 11:19:57 -04001236 }
Brian Osman061020e2018-04-17 14:22:15 -04001237 if (fProgram.fSettings.fCaps->secondExternalTextureExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001238 this->writeExtension(
1239 fProgram.fSettings.fCaps->secondExternalTextureExtensionString());
Brian Osman061020e2018-04-17 14:22:15 -04001240 }
Brian Osman4b2f9152018-04-17 11:19:57 -04001241 fFoundExternalSamplerDecl = true;
1242 }
ethannicholasf789b382016-08-03 12:43:36 -07001243 }
Ethan Nicholasb4dc4192017-06-02 10:16:28 -04001244 if (wroteType) {
1245 this->write(";");
1246 }
ethannicholasf789b382016-08-03 12:43:36 -07001247}
1248
1249void GLSLCodeGenerator::writeStatement(const Statement& s) {
1250 switch (s.fKind) {
1251 case Statement::kBlock_Kind:
1252 this->writeBlock((Block&) s);
1253 break;
1254 case Statement::kExpression_Kind:
1255 this->writeExpression(*((ExpressionStatement&) s).fExpression, kTopLevel_Precedence);
1256 this->write(";");
1257 break;
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001258 case Statement::kReturn_Kind:
ethannicholasf789b382016-08-03 12:43:36 -07001259 this->writeReturnStatement((ReturnStatement&) s);
1260 break;
ethannicholas14fe8cc2016-09-07 13:37:16 -07001261 case Statement::kVarDeclarations_Kind:
ethannicholas5961bc92016-10-12 06:39:56 -07001262 this->writeVarDeclarations(*((VarDeclarationsStatement&) s).fDeclaration, false);
ethannicholasf789b382016-08-03 12:43:36 -07001263 break;
1264 case Statement::kIf_Kind:
1265 this->writeIfStatement((IfStatement&) s);
1266 break;
1267 case Statement::kFor_Kind:
1268 this->writeForStatement((ForStatement&) s);
1269 break;
1270 case Statement::kWhile_Kind:
1271 this->writeWhileStatement((WhileStatement&) s);
1272 break;
1273 case Statement::kDo_Kind:
1274 this->writeDoStatement((DoStatement&) s);
1275 break;
Ethan Nicholasaf197692017-02-27 13:26:45 -05001276 case Statement::kSwitch_Kind:
1277 this->writeSwitchStatement((SwitchStatement&) s);
1278 break;
ethannicholasf789b382016-08-03 12:43:36 -07001279 case Statement::kBreak_Kind:
1280 this->write("break;");
1281 break;
1282 case Statement::kContinue_Kind:
1283 this->write("continue;");
1284 break;
1285 case Statement::kDiscard_Kind:
1286 this->write("discard;");
1287 break;
Ethan Nicholascb670962017-04-20 19:31:52 -04001288 case Statement::kNop_Kind:
1289 this->write(";");
1290 break;
ethannicholasf789b382016-08-03 12:43:36 -07001291 default:
1292 ABORT("unsupported statement: %s", s.description().c_str());
1293 }
1294}
1295
Ethan Nicholascb670962017-04-20 19:31:52 -04001296void GLSLCodeGenerator::writeStatements(const std::vector<std::unique_ptr<Statement>>& statements) {
1297 for (const auto& s : statements) {
1298 if (!s->isEmpty()) {
1299 this->writeStatement(*s);
1300 this->writeLine();
1301 }
1302 }
1303}
1304
ethannicholasf789b382016-08-03 12:43:36 -07001305void GLSLCodeGenerator::writeBlock(const Block& b) {
1306 this->writeLine("{");
1307 fIndentation++;
Ethan Nicholascb670962017-04-20 19:31:52 -04001308 this->writeStatements(b.fStatements);
ethannicholasf789b382016-08-03 12:43:36 -07001309 fIndentation--;
1310 this->write("}");
1311}
1312
1313void GLSLCodeGenerator::writeIfStatement(const IfStatement& stmt) {
1314 this->write("if (");
1315 this->writeExpression(*stmt.fTest, kTopLevel_Precedence);
1316 this->write(") ");
1317 this->writeStatement(*stmt.fIfTrue);
1318 if (stmt.fIfFalse) {
1319 this->write(" else ");
1320 this->writeStatement(*stmt.fIfFalse);
1321 }
1322}
1323
1324void GLSLCodeGenerator::writeForStatement(const ForStatement& f) {
1325 this->write("for (");
Ethan Nicholasb310fd52017-06-09 13:46:34 -04001326 if (f.fInitializer && !f.fInitializer->isEmpty()) {
ethannicholasf789b382016-08-03 12:43:36 -07001327 this->writeStatement(*f.fInitializer);
1328 } else {
1329 this->write("; ");
1330 }
1331 if (f.fTest) {
Adrienne Walkeree8295c2018-08-21 10:56:30 -07001332 if (fProgram.fSettings.fCaps->addAndTrueToLoopCondition()) {
1333 std::unique_ptr<Expression> and_true(new BinaryExpression(
1334 -1, f.fTest->clone(), Token::LOGICALAND,
1335 std::unique_ptr<BoolLiteral>(new BoolLiteral(fContext, -1,
1336 true)),
1337 *fContext.fBool_Type));
1338 this->writeExpression(*and_true, kTopLevel_Precedence);
1339 } else {
1340 this->writeExpression(*f.fTest, kTopLevel_Precedence);
1341 }
ethannicholasf789b382016-08-03 12:43:36 -07001342 }
1343 this->write("; ");
1344 if (f.fNext) {
1345 this->writeExpression(*f.fNext, kTopLevel_Precedence);
1346 }
1347 this->write(") ");
1348 this->writeStatement(*f.fStatement);
1349}
1350
1351void GLSLCodeGenerator::writeWhileStatement(const WhileStatement& w) {
1352 this->write("while (");
1353 this->writeExpression(*w.fTest, kTopLevel_Precedence);
1354 this->write(") ");
1355 this->writeStatement(*w.fStatement);
1356}
1357
1358void GLSLCodeGenerator::writeDoStatement(const DoStatement& d) {
Adrienne Walker8b23ca62018-08-22 10:45:41 -07001359 if (!fProgram.fSettings.fCaps->rewriteDoWhileLoops()) {
1360 this->write("do ");
1361 this->writeStatement(*d.fStatement);
1362 this->write(" while (");
1363 this->writeExpression(*d.fTest, kTopLevel_Precedence);
1364 this->write(");");
1365 return;
1366 }
1367
1368 // Otherwise, do the do while loop workaround, to rewrite loops of the form:
1369 // do {
1370 // CODE;
1371 // } while (CONDITION)
1372 //
1373 // to loops of the form
1374 // bool temp = false;
1375 // while (true) {
1376 // if (temp) {
1377 // if (!CONDITION) {
1378 // break;
1379 // }
1380 // }
1381 // temp = true;
1382 // CODE;
1383 // }
1384 String tmpVar = "_tmpLoopSeenOnce" + to_string(fVarCount++);
1385 this->write("bool ");
1386 this->write(tmpVar);
1387 this->writeLine(" = false;");
1388 this->writeLine("while (true) {");
1389 fIndentation++;
1390 this->write("if (");
1391 this->write(tmpVar);
1392 this->writeLine(") {");
1393 fIndentation++;
1394 this->write("if (!");
1395 this->writeExpression(*d.fTest, kPrefix_Precedence);
1396 this->writeLine(") {");
1397 fIndentation++;
1398 this->writeLine("break;");
1399 fIndentation--;
1400 this->writeLine("}");
1401 fIndentation--;
1402 this->writeLine("}");
1403 this->write(tmpVar);
1404 this->writeLine(" = true;");
ethannicholasf789b382016-08-03 12:43:36 -07001405 this->writeStatement(*d.fStatement);
Adrienne Walker8b23ca62018-08-22 10:45:41 -07001406 this->writeLine();
1407 fIndentation--;
1408 this->write("}");
ethannicholasf789b382016-08-03 12:43:36 -07001409}
1410
Ethan Nicholasaf197692017-02-27 13:26:45 -05001411void GLSLCodeGenerator::writeSwitchStatement(const SwitchStatement& s) {
1412 this->write("switch (");
1413 this->writeExpression(*s.fValue, kTopLevel_Precedence);
1414 this->writeLine(") {");
1415 fIndentation++;
1416 for (const auto& c : s.fCases) {
1417 if (c->fValue) {
1418 this->write("case ");
1419 this->writeExpression(*c->fValue, kTopLevel_Precedence);
1420 this->writeLine(":");
1421 } else {
1422 this->writeLine("default:");
1423 }
1424 fIndentation++;
1425 for (const auto& stmt : c->fStatements) {
1426 this->writeStatement(*stmt);
1427 this->writeLine();
1428 }
1429 fIndentation--;
1430 }
1431 fIndentation--;
1432 this->write("}");
1433}
1434
ethannicholasf789b382016-08-03 12:43:36 -07001435void GLSLCodeGenerator::writeReturnStatement(const ReturnStatement& r) {
1436 this->write("return");
1437 if (r.fExpression) {
1438 this->write(" ");
1439 this->writeExpression(*r.fExpression, kTopLevel_Precedence);
1440 }
1441 this->write(";");
1442}
1443
Ethan Nicholas762466e2017-06-29 10:03:38 -04001444void GLSLCodeGenerator::writeHeader() {
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001445 this->write(fProgram.fSettings.fCaps->versionDeclString());
ethannicholasf789b382016-08-03 12:43:36 -07001446 this->writeLine();
Ethan Nicholas762466e2017-06-29 10:03:38 -04001447}
1448
Ethan Nicholas762466e2017-06-29 10:03:38 -04001449void GLSLCodeGenerator::writeProgramElement(const ProgramElement& e) {
1450 switch (e.fKind) {
1451 case ProgramElement::kExtension_Kind:
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001452 this->writeExtension(((Extension&) e).fName);
Ethan Nicholas762466e2017-06-29 10:03:38 -04001453 break;
1454 case ProgramElement::kVar_Kind: {
1455 VarDeclarations& decl = (VarDeclarations&) e;
1456 if (decl.fVars.size() > 0) {
Ethan Nicholas82a62d22017-11-07 14:42:10 +00001457 int builtin = ((VarDeclaration&) *decl.fVars[0]).fVar->fModifiers.fLayout.fBuiltin;
Ethan Nicholas762466e2017-06-29 10:03:38 -04001458 if (builtin == -1) {
1459 // normal var
1460 this->writeVarDeclarations(decl, true);
1461 this->writeLine();
1462 } else if (builtin == SK_FRAGCOLOR_BUILTIN &&
1463 fProgram.fSettings.fCaps->mustDeclareFragmentShaderOutput()) {
Brian Salomondc092132018-04-04 10:14:16 -04001464 if (fProgram.fSettings.fFragColorIsInOut) {
1465 this->write("inout ");
1466 } else {
1467 this->write("out ");
1468 }
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001469 if (usesPrecisionModifiers()) {
Ethan Nicholas762466e2017-06-29 10:03:38 -04001470 this->write("mediump ");
Mike Klein5ce39722017-06-27 22:52:03 +00001471 }
Ethan Nicholas762466e2017-06-29 10:03:38 -04001472 this->writeLine("vec4 sk_FragColor;");
Mike Klein5ce39722017-06-27 22:52:03 +00001473 }
Mike Klein5ce39722017-06-27 22:52:03 +00001474 }
Ethan Nicholas762466e2017-06-29 10:03:38 -04001475 break;
Mike Klein5ce39722017-06-27 22:52:03 +00001476 }
Ethan Nicholas762466e2017-06-29 10:03:38 -04001477 case ProgramElement::kInterfaceBlock_Kind:
1478 this->writeInterfaceBlock((InterfaceBlock&) e);
1479 break;
1480 case ProgramElement::kFunction_Kind:
1481 this->writeFunction((FunctionDefinition&) e);
1482 break;
Chris Daltonf1b47bb2017-10-06 11:57:51 -06001483 case ProgramElement::kModifiers_Kind: {
1484 const Modifiers& modifiers = ((ModifiersDeclaration&) e).fModifiers;
1485 if (!fFoundGSInvocations && modifiers.fLayout.fInvocations >= 0) {
1486 if (fProgram.fSettings.fCaps->gsInvocationsExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001487 this->writeExtension(fProgram.fSettings.fCaps->gsInvocationsExtensionString());
Chris Daltonf1b47bb2017-10-06 11:57:51 -06001488 }
1489 fFoundGSInvocations = true;
1490 }
1491 this->writeModifiers(modifiers, true);
Ethan Nicholas762466e2017-06-29 10:03:38 -04001492 this->writeLine(";");
1493 break;
Chris Daltonf1b47bb2017-10-06 11:57:51 -06001494 }
Ethan Nicholasaae47c82017-11-10 15:34:03 -05001495 case ProgramElement::kEnum_Kind:
1496 break;
Ethan Nicholas762466e2017-06-29 10:03:38 -04001497 default:
1498 printf("%s\n", e.description().c_str());
1499 ABORT("unsupported program element");
Ethan Nicholasc0709392017-06-27 11:20:22 -04001500 }
Ethan Nicholas762466e2017-06-29 10:03:38 -04001501}
1502
Ethan Nicholascd700e92018-08-24 16:43:57 -04001503void GLSLCodeGenerator::writeInputVars() {
1504 if (fProgram.fInputs.fRTWidth) {
1505 const char* precision = usesPrecisionModifiers() ? "highp " : "";
1506 fGlobals.writeText("uniform ");
1507 fGlobals.writeText(precision);
1508 fGlobals.writeText("float " SKSL_RTWIDTH_NAME ";\n");
1509 }
1510 if (fProgram.fInputs.fRTHeight) {
1511 const char* precision = usesPrecisionModifiers() ? "highp " : "";
1512 fGlobals.writeText("uniform ");
1513 fGlobals.writeText(precision);
1514 fGlobals.writeText("float " SKSL_RTHEIGHT_NAME ";\n");
1515 }
1516}
1517
Ethan Nicholas762466e2017-06-29 10:03:38 -04001518bool GLSLCodeGenerator::generateCode() {
Ethan Nicholas00543112018-07-31 09:44:36 -04001519 if (fProgramKind != Program::kPipelineStage_Kind) {
1520 this->writeHeader();
1521 }
Chris Dalton8fd79552018-01-11 00:46:14 -05001522 if (Program::kGeometry_Kind == fProgramKind &&
1523 fProgram.fSettings.fCaps->geometryShaderExtensionString()) {
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001524 this->writeExtension(fProgram.fSettings.fCaps->geometryShaderExtensionString());
Chris Dalton8fd79552018-01-11 00:46:14 -05001525 }
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001526 OutputStream* rawOut = fOut;
Ethan Nicholas762466e2017-06-29 10:03:38 -04001527 StringStream body;
1528 fOut = &body;
Ethan Nicholas3c6ae622018-04-24 13:06:09 -04001529 for (const auto& e : fProgram) {
1530 this->writeProgramElement(e);
Ethan Nicholas762466e2017-06-29 10:03:38 -04001531 }
1532 fOut = rawOut;
ethannicholasddb37d62016-10-20 09:54:00 -07001533
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001534 write_stringstream(fExtensions, *rawOut);
Ethan Nicholascd700e92018-08-24 16:43:57 -04001535 this->writeInputVars();
Ethan Nicholas88f6d372018-07-27 10:03:46 -04001536 write_stringstream(fGlobals, *rawOut);
Brian Osmancc10d792018-07-20 13:09:45 -04001537
1538 if (!fProgram.fSettings.fCaps->canUseFragCoord()) {
1539 Layout layout;
1540 switch (fProgram.fKind) {
1541 case Program::kVertex_Kind: {
1542 Modifiers modifiers(layout, Modifiers::kOut_Flag | Modifiers::kHighp_Flag);
1543 this->writeModifiers(modifiers, true);
1544 this->write("vec4 sk_FragCoord_Workaround;\n");
1545 break;
1546 }
1547 case Program::kFragment_Kind: {
1548 Modifiers modifiers(layout, Modifiers::kIn_Flag | Modifiers::kHighp_Flag);
1549 this->writeModifiers(modifiers, true);
1550 this->write("vec4 sk_FragCoord_Workaround;\n");
1551 break;
1552 }
1553 default:
1554 break;
1555 }
1556 }
1557
Ethan Nicholasf7b88202017-09-18 14:10:39 -04001558 if (this->usesPrecisionModifiers()) {
1559 this->writeLine("precision mediump float;");
1560 }
Ethan Nicholas6e6525c2018-01-03 17:03:56 -05001561 write_stringstream(fExtraFunctions, *rawOut);
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001562 write_stringstream(body, *rawOut);
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001563 return true;
ethannicholasf789b382016-08-03 12:43:36 -07001564}
1565
1566}