blob: a283e3051dd26179f315c35bc40ced9713b4cb7f [file] [log] [blame]
ethannicholasb3058bd2016-07-01 08:22:01 -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 */
Mike Klein6ad99092016-10-26 10:35:22 -04007
ethannicholasb3058bd2016-07-01 08:22:01 -07008#include "SkSLCompiler.h"
9
ethannicholas5961bc92016-10-12 06:39:56 -070010#include "ast/SkSLASTPrecision.h"
ethannicholas22f939e2016-10-13 13:25:34 -070011#include "SkSLCFGGenerator.h"
Ethan Nicholas941e7e22016-12-12 15:33:30 -050012#include "SkSLGLSLCodeGenerator.h"
ethannicholasb3058bd2016-07-01 08:22:01 -070013#include "SkSLIRGenerator.h"
14#include "SkSLParser.h"
15#include "SkSLSPIRVCodeGenerator.h"
16#include "ir/SkSLExpression.h"
Ethan Nicholascb670962017-04-20 19:31:52 -040017#include "ir/SkSLExpressionStatement.h"
ethannicholasb3058bd2016-07-01 08:22:01 -070018#include "ir/SkSLIntLiteral.h"
ethannicholas5961bc92016-10-12 06:39:56 -070019#include "ir/SkSLModifiersDeclaration.h"
Ethan Nicholascb670962017-04-20 19:31:52 -040020#include "ir/SkSLNop.h"
ethannicholasb3058bd2016-07-01 08:22:01 -070021#include "ir/SkSLSymbolTable.h"
Ethan Nicholascb670962017-04-20 19:31:52 -040022#include "ir/SkSLTernaryExpression.h"
ethannicholasddb37d62016-10-20 09:54:00 -070023#include "ir/SkSLUnresolvedFunction.h"
ethannicholas22f939e2016-10-13 13:25:34 -070024#include "ir/SkSLVarDeclarations.h"
ethannicholasb3058bd2016-07-01 08:22:01 -070025
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -040026#ifdef SK_ENABLE_SPIRV_VALIDATION
27#include "spirv-tools/libspirv.hpp"
28#endif
29
ethannicholasb3058bd2016-07-01 08:22:01 -070030#define STRINGIFY(x) #x
31
32// include the built-in shader symbols as static strings
33
ethannicholas5961bc92016-10-12 06:39:56 -070034static const char* SKSL_INCLUDE =
ethannicholasb3058bd2016-07-01 08:22:01 -070035#include "sksl.include"
36;
37
ethannicholas5961bc92016-10-12 06:39:56 -070038static const char* SKSL_VERT_INCLUDE =
ethannicholasb3058bd2016-07-01 08:22:01 -070039#include "sksl_vert.include"
40;
41
ethannicholas5961bc92016-10-12 06:39:56 -070042static const char* SKSL_FRAG_INCLUDE =
ethannicholasb3058bd2016-07-01 08:22:01 -070043#include "sksl_frag.include"
44;
45
Ethan Nicholas52cad152017-02-16 16:37:32 -050046static const char* SKSL_GEOM_INCLUDE =
47#include "sksl_geom.include"
48;
49
ethannicholasb3058bd2016-07-01 08:22:01 -070050namespace SkSL {
51
Mike Klein6ad99092016-10-26 10:35:22 -040052Compiler::Compiler()
ethannicholasb3058bd2016-07-01 08:22:01 -070053: fErrorCount(0) {
Ethan Nicholas8feeff92017-03-30 14:11:58 -040054 auto types = std::shared_ptr<SymbolTable>(new SymbolTable(this));
55 auto symbols = std::shared_ptr<SymbolTable>(new SymbolTable(types, this));
ethannicholasd598f792016-07-25 10:08:54 -070056 fIRGenerator = new IRGenerator(&fContext, symbols, *this);
ethannicholasb3058bd2016-07-01 08:22:01 -070057 fTypes = types;
ethannicholasd598f792016-07-25 10:08:54 -070058 #define ADD_TYPE(t) types->addWithoutOwnership(fContext.f ## t ## _Type->fName, \
59 fContext.f ## t ## _Type.get())
ethannicholasb3058bd2016-07-01 08:22:01 -070060 ADD_TYPE(Void);
61 ADD_TYPE(Float);
62 ADD_TYPE(Vec2);
63 ADD_TYPE(Vec3);
64 ADD_TYPE(Vec4);
65 ADD_TYPE(Double);
66 ADD_TYPE(DVec2);
67 ADD_TYPE(DVec3);
68 ADD_TYPE(DVec4);
69 ADD_TYPE(Int);
70 ADD_TYPE(IVec2);
71 ADD_TYPE(IVec3);
72 ADD_TYPE(IVec4);
73 ADD_TYPE(UInt);
74 ADD_TYPE(UVec2);
75 ADD_TYPE(UVec3);
76 ADD_TYPE(UVec4);
77 ADD_TYPE(Bool);
78 ADD_TYPE(BVec2);
79 ADD_TYPE(BVec3);
80 ADD_TYPE(BVec4);
81 ADD_TYPE(Mat2x2);
Ethan Nicholas0df1b042017-03-31 13:56:23 -040082 types->addWithoutOwnership(String("mat2x2"), fContext.fMat2x2_Type.get());
ethannicholasb3058bd2016-07-01 08:22:01 -070083 ADD_TYPE(Mat2x3);
84 ADD_TYPE(Mat2x4);
85 ADD_TYPE(Mat3x2);
86 ADD_TYPE(Mat3x3);
Ethan Nicholas0df1b042017-03-31 13:56:23 -040087 types->addWithoutOwnership(String("mat3x3"), fContext.fMat3x3_Type.get());
ethannicholasb3058bd2016-07-01 08:22:01 -070088 ADD_TYPE(Mat3x4);
89 ADD_TYPE(Mat4x2);
90 ADD_TYPE(Mat4x3);
91 ADD_TYPE(Mat4x4);
Ethan Nicholas0df1b042017-03-31 13:56:23 -040092 types->addWithoutOwnership(String("mat4x4"), fContext.fMat4x4_Type.get());
ethannicholasb3058bd2016-07-01 08:22:01 -070093 ADD_TYPE(GenType);
94 ADD_TYPE(GenDType);
95 ADD_TYPE(GenIType);
96 ADD_TYPE(GenUType);
97 ADD_TYPE(GenBType);
98 ADD_TYPE(Mat);
99 ADD_TYPE(Vec);
100 ADD_TYPE(GVec);
101 ADD_TYPE(GVec2);
102 ADD_TYPE(GVec3);
103 ADD_TYPE(GVec4);
104 ADD_TYPE(DVec);
105 ADD_TYPE(IVec);
106 ADD_TYPE(UVec);
107 ADD_TYPE(BVec);
108
109 ADD_TYPE(Sampler1D);
110 ADD_TYPE(Sampler2D);
111 ADD_TYPE(Sampler3D);
ethannicholas5961bc92016-10-12 06:39:56 -0700112 ADD_TYPE(SamplerExternalOES);
ethannicholasb3058bd2016-07-01 08:22:01 -0700113 ADD_TYPE(SamplerCube);
114 ADD_TYPE(Sampler2DRect);
115 ADD_TYPE(Sampler1DArray);
116 ADD_TYPE(Sampler2DArray);
117 ADD_TYPE(SamplerCubeArray);
118 ADD_TYPE(SamplerBuffer);
119 ADD_TYPE(Sampler2DMS);
120 ADD_TYPE(Sampler2DMSArray);
121
Brian Salomonbf7b6202016-11-11 16:08:03 -0500122 ADD_TYPE(ISampler2D);
123
Brian Salomon2a51de82016-11-16 12:06:01 -0500124 ADD_TYPE(Image2D);
125 ADD_TYPE(IImage2D);
126
Greg Daniel64773e62016-11-22 09:44:03 -0500127 ADD_TYPE(SubpassInput);
128 ADD_TYPE(SubpassInputMS);
129
ethannicholasb3058bd2016-07-01 08:22:01 -0700130 ADD_TYPE(GSampler1D);
131 ADD_TYPE(GSampler2D);
132 ADD_TYPE(GSampler3D);
133 ADD_TYPE(GSamplerCube);
134 ADD_TYPE(GSampler2DRect);
135 ADD_TYPE(GSampler1DArray);
136 ADD_TYPE(GSampler2DArray);
137 ADD_TYPE(GSamplerCubeArray);
138 ADD_TYPE(GSamplerBuffer);
139 ADD_TYPE(GSampler2DMS);
140 ADD_TYPE(GSampler2DMSArray);
141
142 ADD_TYPE(Sampler1DShadow);
143 ADD_TYPE(Sampler2DShadow);
144 ADD_TYPE(SamplerCubeShadow);
145 ADD_TYPE(Sampler2DRectShadow);
146 ADD_TYPE(Sampler1DArrayShadow);
147 ADD_TYPE(Sampler2DArrayShadow);
148 ADD_TYPE(SamplerCubeArrayShadow);
149 ADD_TYPE(GSampler2DArrayShadow);
150 ADD_TYPE(GSamplerCubeArrayShadow);
151
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400152 String skCapsName("sk_Caps");
153 Variable* skCaps = new Variable(Position(), Modifiers(), skCapsName,
Ethan Nicholas3605ace2016-11-21 15:59:48 -0500154 *fContext.fSkCaps_Type, Variable::kGlobal_Storage);
155 fIRGenerator->fSymbolTable->add(skCapsName, std::unique_ptr<Symbol>(skCaps));
156
ethannicholas5961bc92016-10-12 06:39:56 -0700157 Modifiers::Flag ignored1;
158 std::vector<std::unique_ptr<ProgramElement>> ignored2;
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400159 this->internalConvertProgram(String(SKSL_INCLUDE), &ignored1, &ignored2);
ethannicholasddb37d62016-10-20 09:54:00 -0700160 fIRGenerator->fSymbolTable->markAllFunctionsBuiltin();
ethannicholasb3058bd2016-07-01 08:22:01 -0700161 ASSERT(!fErrorCount);
162}
163
164Compiler::~Compiler() {
165 delete fIRGenerator;
166}
167
ethannicholas22f939e2016-10-13 13:25:34 -0700168// add the definition created by assigning to the lvalue to the definition set
Ethan Nicholas86a43402017-01-19 13:32:00 -0500169void Compiler::addDefinition(const Expression* lvalue, std::unique_ptr<Expression>* expr,
170 DefinitionMap* definitions) {
ethannicholas22f939e2016-10-13 13:25:34 -0700171 switch (lvalue->fKind) {
172 case Expression::kVariableReference_Kind: {
173 const Variable& var = ((VariableReference*) lvalue)->fVariable;
174 if (var.fStorage == Variable::kLocal_Storage) {
175 (*definitions)[&var] = expr;
176 }
177 break;
178 }
179 case Expression::kSwizzle_Kind:
180 // We consider the variable written to as long as at least some of its components have
181 // been written to. This will lead to some false negatives (we won't catch it if you
182 // write to foo.x and then read foo.y), but being stricter could lead to false positives
Mike Klein6ad99092016-10-26 10:35:22 -0400183 // (we write to foo.x, and then pass foo to a function which happens to only read foo.x,
184 // but since we pass foo as a whole it is flagged as an error) unless we perform a much
ethannicholas22f939e2016-10-13 13:25:34 -0700185 // more complicated whole-program analysis. This is probably good enough.
Mike Klein6ad99092016-10-26 10:35:22 -0400186 this->addDefinition(((Swizzle*) lvalue)->fBase.get(),
Ethan Nicholas86a43402017-01-19 13:32:00 -0500187 (std::unique_ptr<Expression>*) &fContext.fDefined_Expression,
ethannicholas22f939e2016-10-13 13:25:34 -0700188 definitions);
189 break;
190 case Expression::kIndex_Kind:
191 // see comments in Swizzle
Mike Klein6ad99092016-10-26 10:35:22 -0400192 this->addDefinition(((IndexExpression*) lvalue)->fBase.get(),
Ethan Nicholas86a43402017-01-19 13:32:00 -0500193 (std::unique_ptr<Expression>*) &fContext.fDefined_Expression,
ethannicholas22f939e2016-10-13 13:25:34 -0700194 definitions);
195 break;
196 case Expression::kFieldAccess_Kind:
197 // see comments in Swizzle
Mike Klein6ad99092016-10-26 10:35:22 -0400198 this->addDefinition(((FieldAccess*) lvalue)->fBase.get(),
Ethan Nicholas86a43402017-01-19 13:32:00 -0500199 (std::unique_ptr<Expression>*) &fContext.fDefined_Expression,
ethannicholas22f939e2016-10-13 13:25:34 -0700200 definitions);
201 break;
202 default:
203 // not an lvalue, can't happen
204 ASSERT(false);
205 }
206}
207
208// add local variables defined by this node to the set
Mike Klein6ad99092016-10-26 10:35:22 -0400209void Compiler::addDefinitions(const BasicBlock::Node& node,
Ethan Nicholas86a43402017-01-19 13:32:00 -0500210 DefinitionMap* definitions) {
ethannicholas22f939e2016-10-13 13:25:34 -0700211 switch (node.fKind) {
212 case BasicBlock::Node::kExpression_Kind: {
Ethan Nicholascb670962017-04-20 19:31:52 -0400213 ASSERT(node.expression());
214 const Expression* expr = (Expression*) node.expression()->get();
Ethan Nicholas86a43402017-01-19 13:32:00 -0500215 switch (expr->fKind) {
216 case Expression::kBinary_Kind: {
217 BinaryExpression* b = (BinaryExpression*) expr;
218 if (b->fOperator == Token::EQ) {
219 this->addDefinition(b->fLeft.get(), &b->fRight, definitions);
220 } else if (Token::IsAssignment(b->fOperator)) {
221 this->addDefinition(
222 b->fLeft.get(),
223 (std::unique_ptr<Expression>*) &fContext.fDefined_Expression,
224 definitions);
225
226 }
227 break;
ethannicholas22f939e2016-10-13 13:25:34 -0700228 }
Ethan Nicholas86a43402017-01-19 13:32:00 -0500229 case Expression::kPrefix_Kind: {
230 const PrefixExpression* p = (PrefixExpression*) expr;
231 if (p->fOperator == Token::MINUSMINUS || p->fOperator == Token::PLUSPLUS) {
232 this->addDefinition(
233 p->fOperand.get(),
234 (std::unique_ptr<Expression>*) &fContext.fDefined_Expression,
235 definitions);
236 }
237 break;
238 }
239 case Expression::kPostfix_Kind: {
240 const PostfixExpression* p = (PostfixExpression*) expr;
241 if (p->fOperator == Token::MINUSMINUS || p->fOperator == Token::PLUSPLUS) {
242 this->addDefinition(
243 p->fOperand.get(),
244 (std::unique_ptr<Expression>*) &fContext.fDefined_Expression,
245 definitions);
Ethan Nicholas86a43402017-01-19 13:32:00 -0500246 }
247 break;
248 }
Ethan Nicholascb670962017-04-20 19:31:52 -0400249 case Expression::kVariableReference_Kind: {
250 const VariableReference* v = (VariableReference*) expr;
251 if (v->fRefKind != VariableReference::kRead_RefKind) {
252 this->addDefinition(
253 v,
254 (std::unique_ptr<Expression>*) &fContext.fDefined_Expression,
255 definitions);
256 }
257 }
Ethan Nicholas86a43402017-01-19 13:32:00 -0500258 default:
259 break;
ethannicholas22f939e2016-10-13 13:25:34 -0700260 }
261 break;
262 }
263 case BasicBlock::Node::kStatement_Kind: {
Ethan Nicholascb670962017-04-20 19:31:52 -0400264 const Statement* stmt = (Statement*) node.statement()->get();
ethannicholas22f939e2016-10-13 13:25:34 -0700265 if (stmt->fKind == Statement::kVarDeclarations_Kind) {
Ethan Nicholas86a43402017-01-19 13:32:00 -0500266 VarDeclarationsStatement* vd = (VarDeclarationsStatement*) stmt;
Ethan Nicholascb670962017-04-20 19:31:52 -0400267 for (const auto& decl : vd->fDeclaration->fVars) {
268 if (decl->fValue) {
269 (*definitions)[decl->fVar] = &decl->fValue;
ethannicholas22f939e2016-10-13 13:25:34 -0700270 }
271 }
272 }
273 break;
274 }
275 }
276}
277
278void Compiler::scanCFG(CFG* cfg, BlockId blockId, std::set<BlockId>* workList) {
279 BasicBlock& block = cfg->fBlocks[blockId];
280
281 // compute definitions after this block
Ethan Nicholas86a43402017-01-19 13:32:00 -0500282 DefinitionMap after = block.fBefore;
ethannicholas22f939e2016-10-13 13:25:34 -0700283 for (const BasicBlock::Node& n : block.fNodes) {
284 this->addDefinitions(n, &after);
285 }
286
287 // propagate definitions to exits
288 for (BlockId exitId : block.fExits) {
289 BasicBlock& exit = cfg->fBlocks[exitId];
290 for (const auto& pair : after) {
Ethan Nicholas86a43402017-01-19 13:32:00 -0500291 std::unique_ptr<Expression>* e1 = pair.second;
292 auto found = exit.fBefore.find(pair.first);
293 if (found == exit.fBefore.end()) {
294 // exit has no definition for it, just copy it
295 workList->insert(exitId);
ethannicholas22f939e2016-10-13 13:25:34 -0700296 exit.fBefore[pair.first] = e1;
297 } else {
Ethan Nicholas86a43402017-01-19 13:32:00 -0500298 // exit has a (possibly different) value already defined
299 std::unique_ptr<Expression>* e2 = exit.fBefore[pair.first];
ethannicholas22f939e2016-10-13 13:25:34 -0700300 if (e1 != e2) {
301 // definition has changed, merge and add exit block to worklist
302 workList->insert(exitId);
Ethan Nicholasaf197692017-02-27 13:26:45 -0500303 if (e1 && e2) {
304 exit.fBefore[pair.first] =
Ethan Nicholas86a43402017-01-19 13:32:00 -0500305 (std::unique_ptr<Expression>*) &fContext.fDefined_Expression;
Ethan Nicholasaf197692017-02-27 13:26:45 -0500306 } else {
307 exit.fBefore[pair.first] = nullptr;
308 }
ethannicholas22f939e2016-10-13 13:25:34 -0700309 }
310 }
311 }
312 }
313}
314
315// returns a map which maps all local variables in the function to null, indicating that their value
316// is initially unknown
Ethan Nicholas86a43402017-01-19 13:32:00 -0500317static DefinitionMap compute_start_state(const CFG& cfg) {
318 DefinitionMap result;
Mike Klein6ad99092016-10-26 10:35:22 -0400319 for (const auto& block : cfg.fBlocks) {
320 for (const auto& node : block.fNodes) {
ethannicholas22f939e2016-10-13 13:25:34 -0700321 if (node.fKind == BasicBlock::Node::kStatement_Kind) {
Ethan Nicholascb670962017-04-20 19:31:52 -0400322 ASSERT(node.statement());
323 const Statement* s = node.statement()->get();
ethannicholas22f939e2016-10-13 13:25:34 -0700324 if (s->fKind == Statement::kVarDeclarations_Kind) {
325 const VarDeclarationsStatement* vd = (const VarDeclarationsStatement*) s;
Ethan Nicholascb670962017-04-20 19:31:52 -0400326 for (const auto& decl : vd->fDeclaration->fVars) {
327 result[decl->fVar] = nullptr;
Mike Klein6ad99092016-10-26 10:35:22 -0400328 }
ethannicholas22f939e2016-10-13 13:25:34 -0700329 }
330 }
331 }
332 }
333 return result;
334}
335
Ethan Nicholascb670962017-04-20 19:31:52 -0400336/**
337 * Returns true if assigning to this lvalue has no effect.
338 */
339static bool is_dead(const Expression& lvalue) {
340 switch (lvalue.fKind) {
341 case Expression::kVariableReference_Kind:
342 return ((VariableReference&) lvalue).fVariable.dead();
343 case Expression::kSwizzle_Kind:
344 return is_dead(*((Swizzle&) lvalue).fBase);
345 case Expression::kFieldAccess_Kind:
346 return is_dead(*((FieldAccess&) lvalue).fBase);
347 case Expression::kIndex_Kind: {
348 const IndexExpression& idx = (IndexExpression&) lvalue;
349 return is_dead(*idx.fBase) && !idx.fIndex->hasSideEffects();
350 }
351 default:
352 ABORT("invalid lvalue: %s\n", lvalue.description().c_str());
353 }
354}
ethannicholas22f939e2016-10-13 13:25:34 -0700355
Ethan Nicholascb670962017-04-20 19:31:52 -0400356/**
357 * Returns true if this is an assignment which can be collapsed down to just the right hand side due
358 * to a dead target and lack of side effects on the left hand side.
359 */
360static bool dead_assignment(const BinaryExpression& b) {
361 if (!Token::IsAssignment(b.fOperator)) {
362 return false;
363 }
364 return is_dead(*b.fLeft);
365}
366
367void Compiler::computeDataFlow(CFG* cfg) {
368 cfg->fBlocks[cfg->fStart].fBefore = compute_start_state(*cfg);
ethannicholas22f939e2016-10-13 13:25:34 -0700369 std::set<BlockId> workList;
Ethan Nicholascb670962017-04-20 19:31:52 -0400370 for (BlockId i = 0; i < cfg->fBlocks.size(); i++) {
ethannicholas22f939e2016-10-13 13:25:34 -0700371 workList.insert(i);
372 }
373 while (workList.size()) {
374 BlockId next = *workList.begin();
375 workList.erase(workList.begin());
Ethan Nicholascb670962017-04-20 19:31:52 -0400376 this->scanCFG(cfg, next, &workList);
ethannicholas22f939e2016-10-13 13:25:34 -0700377 }
Ethan Nicholascb670962017-04-20 19:31:52 -0400378}
379
380/**
381 * Attempts to replace the expression pointed to by iter with a new one (in both the CFG and the
382 * IR). If the expression can be cleanly removed, returns true and updates the iterator to point to
383 * the newly-inserted element. Otherwise updates only the IR and returns false (and the CFG will
384 * need to be regenerated).
385 */
386bool try_replace_expression(BasicBlock* b,
387 std::vector<BasicBlock::Node>::iterator* iter,
388 std::unique_ptr<Expression>* newExpression) {
389 std::unique_ptr<Expression>* target = (*iter)->expression();
390 if (!b->tryRemoveExpression(iter)) {
391 *target = std::move(*newExpression);
392 return false;
393 }
394 *target = std::move(*newExpression);
395 return b->tryInsertExpression(iter, target);
396}
397
398/**
Ethan Nicholasfe53e582017-04-27 16:24:51 -0400399 * Returns true if the expression is a constant numeric literal with the specified value, or a
400 * constant vector with all elements equal to the specified value.
Ethan Nicholascb670962017-04-20 19:31:52 -0400401 */
Ethan Nicholasfe53e582017-04-27 16:24:51 -0400402bool is_constant(const Expression& expr, double value) {
Ethan Nicholascb670962017-04-20 19:31:52 -0400403 switch (expr.fKind) {
404 case Expression::kIntLiteral_Kind:
405 return ((IntLiteral&) expr).fValue == value;
406 case Expression::kFloatLiteral_Kind:
407 return ((FloatLiteral&) expr).fValue == value;
Ethan Nicholasfe53e582017-04-27 16:24:51 -0400408 case Expression::kConstructor_Kind: {
409 Constructor& c = (Constructor&) expr;
410 if (c.fType.kind() == Type::kVector_Kind && c.isConstant()) {
411 for (int i = 0; i < c.fType.columns(); ++i) {
412 if (!is_constant(c.getVecComponent(i), value)) {
413 return false;
414 }
415 }
416 return true;
417 }
418 return false;
419 }
Ethan Nicholascb670962017-04-20 19:31:52 -0400420 default:
421 return false;
422 }
423}
424
425/**
426 * Collapses the binary expression pointed to by iter down to just the right side (in both the IR
427 * and CFG structures).
428 */
429void delete_left(BasicBlock* b,
430 std::vector<BasicBlock::Node>::iterator* iter,
431 bool* outUpdated,
432 bool* outNeedsRescan) {
433 *outUpdated = true;
Ethan Nicholasc2371a42017-05-05 10:04:06 -0400434 std::unique_ptr<Expression>* target = (*iter)->expression();
435 ASSERT((*target)->fKind == Expression::kBinary_Kind);
436 BinaryExpression& bin = (BinaryExpression&) **target;
437 bool result;
438 if (bin.fOperator == Token::EQ) {
439 result = !b->tryRemoveLValueBefore(iter, bin.fLeft.get());
440 } else {
441 result = !b->tryRemoveExpressionBefore(iter, bin.fLeft.get());
Ethan Nicholascb670962017-04-20 19:31:52 -0400442 }
Ethan Nicholasc2371a42017-05-05 10:04:06 -0400443 if (!result) {
444 *target = std::move(bin.fRight);
445 *outNeedsRescan = true;
446 return;
447 }
448 --(*iter);
449 ASSERT((*iter)->expression() == &bin.fRight);
450 *iter = b->fNodes.erase(*iter);
451 ASSERT((*iter)->expression() == target);
452 *target = std::move(bin.fRight);
Ethan Nicholascb670962017-04-20 19:31:52 -0400453}
454
455/**
456 * Collapses the binary expression pointed to by iter down to just the left side (in both the IR and
457 * CFG structures).
458 */
459void delete_right(BasicBlock* b,
460 std::vector<BasicBlock::Node>::iterator* iter,
461 bool* outUpdated,
462 bool* outNeedsRescan) {
463 *outUpdated = true;
Ethan Nicholasc2371a42017-05-05 10:04:06 -0400464 std::unique_ptr<Expression>* target = (*iter)->expression();
465 ASSERT((*target)->fKind == Expression::kBinary_Kind);
466 BinaryExpression& bin = (BinaryExpression&) **target;
467 if (!b->tryRemoveExpressionBefore(iter, bin.fRight.get())) {
468 *target = std::move(bin.fLeft);
Ethan Nicholascb670962017-04-20 19:31:52 -0400469 *outNeedsRescan = true;
Ethan Nicholasc2371a42017-05-05 10:04:06 -0400470 return;
Ethan Nicholascb670962017-04-20 19:31:52 -0400471 }
Ethan Nicholasc2371a42017-05-05 10:04:06 -0400472 --(*iter);
473 ASSERT((*iter)->expression() == &bin.fLeft);
474 *iter = b->fNodes.erase(*iter);
475 ASSERT((*iter)->expression() == target);
476 *target = std::move(bin.fLeft);
Ethan Nicholascb670962017-04-20 19:31:52 -0400477}
478
Ethan Nicholasfe53e582017-04-27 16:24:51 -0400479/**
480 * Constructs the specified type using a single argument.
481 */
482static std::unique_ptr<Expression> construct(const Type& type, std::unique_ptr<Expression> v) {
483 std::vector<std::unique_ptr<Expression>> args;
484 args.push_back(std::move(v));
485 auto result = std::unique_ptr<Expression>(new Constructor(Position(), type, std::move(args)));
486 return result;
487}
488
489/**
490 * Used in the implementations of vectorize_left and vectorize_right. Given a vector type and an
491 * expression x, deletes the expression pointed to by iter and replaces it with <type>(x).
492 */
493static void vectorize(BasicBlock* b,
494 std::vector<BasicBlock::Node>::iterator* iter,
495 const Type& type,
496 std::unique_ptr<Expression>* otherExpression,
497 bool* outUpdated,
498 bool* outNeedsRescan) {
499 ASSERT((*(*iter)->expression())->fKind == Expression::kBinary_Kind);
500 ASSERT(type.kind() == Type::kVector_Kind);
501 ASSERT((*otherExpression)->fType.kind() == Type::kScalar_Kind);
502 *outUpdated = true;
503 std::unique_ptr<Expression>* target = (*iter)->expression();
504 if (!b->tryRemoveExpression(iter)) {
505 *target = construct(type, std::move(*otherExpression));
506 *outNeedsRescan = true;
507 } else {
508 *target = construct(type, std::move(*otherExpression));
509 if (!b->tryInsertExpression(iter, target)) {
510 *outNeedsRescan = true;
511 }
512 }
513}
514
515/**
516 * Given a binary expression of the form x <op> vec<n>(y), deletes the right side and vectorizes the
517 * left to yield vec<n>(x).
518 */
519static void vectorize_left(BasicBlock* b,
520 std::vector<BasicBlock::Node>::iterator* iter,
521 bool* outUpdated,
522 bool* outNeedsRescan) {
523 BinaryExpression& bin = (BinaryExpression&) **(*iter)->expression();
524 vectorize(b, iter, bin.fRight->fType, &bin.fLeft, outUpdated, outNeedsRescan);
525}
526
527/**
528 * Given a binary expression of the form vec<n>(x) <op> y, deletes the left side and vectorizes the
529 * right to yield vec<n>(y).
530 */
531static void vectorize_right(BasicBlock* b,
532 std::vector<BasicBlock::Node>::iterator* iter,
533 bool* outUpdated,
534 bool* outNeedsRescan) {
535 BinaryExpression& bin = (BinaryExpression&) **(*iter)->expression();
536 vectorize(b, iter, bin.fLeft->fType, &bin.fRight, outUpdated, outNeedsRescan);
537}
538
539// Mark that an expression which we were writing to is no longer being written to
540void clear_write(const Expression& expr) {
541 switch (expr.fKind) {
542 case Expression::kVariableReference_Kind: {
543 ((VariableReference&) expr).setRefKind(VariableReference::kRead_RefKind);
544 break;
545 }
546 case Expression::kFieldAccess_Kind:
547 clear_write(*((FieldAccess&) expr).fBase);
548 break;
549 case Expression::kSwizzle_Kind:
550 clear_write(*((Swizzle&) expr).fBase);
551 break;
552 case Expression::kIndex_Kind:
553 clear_write(*((IndexExpression&) expr).fBase);
554 break;
555 default:
556 ABORT("shouldn't be writing to this kind of expression\n");
557 break;
558 }
559}
560
Ethan Nicholascb670962017-04-20 19:31:52 -0400561void Compiler::simplifyExpression(DefinitionMap& definitions,
562 BasicBlock& b,
563 std::vector<BasicBlock::Node>::iterator* iter,
564 std::unordered_set<const Variable*>* undefinedVariables,
565 bool* outUpdated,
566 bool* outNeedsRescan) {
567 Expression* expr = (*iter)->expression()->get();
568 ASSERT(expr);
569 if ((*iter)->fConstantPropagation) {
570 std::unique_ptr<Expression> optimized = expr->constantPropagate(*fIRGenerator, definitions);
571 if (optimized) {
572 if (!try_replace_expression(&b, iter, &optimized)) {
573 *outNeedsRescan = true;
574 }
575 ASSERT((*iter)->fKind == BasicBlock::Node::kExpression_Kind);
576 expr = (*iter)->expression()->get();
577 *outUpdated = true;
578 }
579 }
580 switch (expr->fKind) {
581 case Expression::kVariableReference_Kind: {
582 const Variable& var = ((VariableReference*) expr)->fVariable;
583 if (var.fStorage == Variable::kLocal_Storage && !definitions[&var] &&
584 (*undefinedVariables).find(&var) == (*undefinedVariables).end()) {
585 (*undefinedVariables).insert(&var);
586 this->error(expr->fPosition,
587 "'" + var.fName + "' has not been assigned");
588 }
589 break;
590 }
591 case Expression::kTernary_Kind: {
592 TernaryExpression* t = (TernaryExpression*) expr;
593 if (t->fTest->fKind == Expression::kBoolLiteral_Kind) {
594 // ternary has a constant test, replace it with either the true or
595 // false branch
596 if (((BoolLiteral&) *t->fTest).fValue) {
597 (*iter)->setExpression(std::move(t->fIfTrue));
598 } else {
599 (*iter)->setExpression(std::move(t->fIfFalse));
600 }
601 *outUpdated = true;
602 *outNeedsRescan = true;
603 }
604 break;
605 }
606 case Expression::kBinary_Kind: {
Ethan Nicholascb670962017-04-20 19:31:52 -0400607 BinaryExpression* bin = (BinaryExpression*) expr;
Ethan Nicholasc2371a42017-05-05 10:04:06 -0400608 if (dead_assignment(*bin)) {
609 delete_left(&b, iter, outUpdated, outNeedsRescan);
610 break;
611 }
612 // collapse useless expressions like x * 1 or x + 0
Ethan Nicholasfe53e582017-04-27 16:24:51 -0400613 if (((bin->fLeft->fType.kind() != Type::kScalar_Kind) &&
614 (bin->fLeft->fType.kind() != Type::kVector_Kind)) ||
615 ((bin->fRight->fType.kind() != Type::kScalar_Kind) &&
616 (bin->fRight->fType.kind() != Type::kVector_Kind))) {
617 break;
618 }
Ethan Nicholascb670962017-04-20 19:31:52 -0400619 switch (bin->fOperator) {
620 case Token::STAR:
621 if (is_constant(*bin->fLeft, 1)) {
Ethan Nicholasfe53e582017-04-27 16:24:51 -0400622 if (bin->fLeft->fType.kind() == Type::kVector_Kind &&
623 bin->fRight->fType.kind() == Type::kScalar_Kind) {
624 // vec4(1) * x -> vec4(x)
625 vectorize_right(&b, iter, outUpdated, outNeedsRescan);
626 } else {
627 // 1 * x -> x
628 // 1 * vec4(x) -> vec4(x)
629 // vec4(1) * vec4(x) -> vec4(x)
630 delete_left(&b, iter, outUpdated, outNeedsRescan);
631 }
632 }
633 else if (is_constant(*bin->fLeft, 0)) {
634 if (bin->fLeft->fType.kind() == Type::kScalar_Kind &&
635 bin->fRight->fType.kind() == Type::kVector_Kind) {
636 // 0 * vec4(x) -> vec4(0)
637 vectorize_left(&b, iter, outUpdated, outNeedsRescan);
638 } else {
639 // 0 * x -> 0
640 // vec4(0) * x -> vec4(0)
641 // vec4(0) * vec4(x) -> vec4(0)
642 delete_right(&b, iter, outUpdated, outNeedsRescan);
643 }
Ethan Nicholascb670962017-04-20 19:31:52 -0400644 }
645 else if (is_constant(*bin->fRight, 1)) {
Ethan Nicholasfe53e582017-04-27 16:24:51 -0400646 if (bin->fLeft->fType.kind() == Type::kScalar_Kind &&
647 bin->fRight->fType.kind() == Type::kVector_Kind) {
648 // x * vec4(1) -> vec4(x)
649 vectorize_left(&b, iter, outUpdated, outNeedsRescan);
650 } else {
651 // x * 1 -> x
652 // vec4(x) * 1 -> vec4(x)
653 // vec4(x) * vec4(1) -> vec4(x)
654 delete_right(&b, iter, outUpdated, outNeedsRescan);
655 }
656 }
657 else if (is_constant(*bin->fRight, 0)) {
658 if (bin->fLeft->fType.kind() == Type::kVector_Kind &&
659 bin->fRight->fType.kind() == Type::kScalar_Kind) {
660 // vec4(x) * 0 -> vec4(0)
661 vectorize_right(&b, iter, outUpdated, outNeedsRescan);
662 } else {
663 // x * 0 -> 0
664 // x * vec4(0) -> vec4(0)
665 // vec4(x) * vec4(0) -> vec4(0)
666 delete_left(&b, iter, outUpdated, outNeedsRescan);
667 }
Ethan Nicholascb670962017-04-20 19:31:52 -0400668 }
669 break;
Ethan Nicholas56e42712017-04-21 10:23:37 -0400670 case Token::PLUS:
Ethan Nicholascb670962017-04-20 19:31:52 -0400671 if (is_constant(*bin->fLeft, 0)) {
Ethan Nicholasfe53e582017-04-27 16:24:51 -0400672 if (bin->fLeft->fType.kind() == Type::kVector_Kind &&
673 bin->fRight->fType.kind() == Type::kScalar_Kind) {
674 // vec4(0) + x -> vec4(x)
675 vectorize_right(&b, iter, outUpdated, outNeedsRescan);
676 } else {
677 // 0 + x -> x
678 // 0 + vec4(x) -> vec4(x)
679 // vec4(0) + vec4(x) -> vec4(x)
680 delete_left(&b, iter, outUpdated, outNeedsRescan);
681 }
682 } else if (is_constant(*bin->fRight, 0)) {
683 if (bin->fLeft->fType.kind() == Type::kScalar_Kind &&
684 bin->fRight->fType.kind() == Type::kVector_Kind) {
685 // x + vec4(0) -> vec4(x)
686 vectorize_left(&b, iter, outUpdated, outNeedsRescan);
687 } else {
688 // x + 0 -> x
689 // vec4(x) + 0 -> vec4(x)
690 // vec4(x) + vec4(0) -> vec4(x)
691 delete_right(&b, iter, outUpdated, outNeedsRescan);
692 }
Ethan Nicholas56e42712017-04-21 10:23:37 -0400693 }
694 break;
695 case Token::MINUS:
696 if (is_constant(*bin->fRight, 0)) {
Ethan Nicholasfe53e582017-04-27 16:24:51 -0400697 if (bin->fLeft->fType.kind() == Type::kScalar_Kind &&
698 bin->fRight->fType.kind() == Type::kVector_Kind) {
699 // x - vec4(0) -> vec4(x)
700 vectorize_left(&b, iter, outUpdated, outNeedsRescan);
701 } else {
702 // x - 0 -> x
703 // vec4(x) - 0 -> vec4(x)
704 // vec4(x) - vec4(0) -> vec4(x)
705 delete_right(&b, iter, outUpdated, outNeedsRescan);
706 }
Ethan Nicholascb670962017-04-20 19:31:52 -0400707 }
708 break;
709 case Token::SLASH:
710 if (is_constant(*bin->fRight, 1)) {
Ethan Nicholasfe53e582017-04-27 16:24:51 -0400711 if (bin->fLeft->fType.kind() == Type::kScalar_Kind &&
712 bin->fRight->fType.kind() == Type::kVector_Kind) {
713 // x / vec4(1) -> vec4(x)
714 vectorize_left(&b, iter, outUpdated, outNeedsRescan);
715 } else {
716 // x / 1 -> x
717 // vec4(x) / 1 -> vec4(x)
718 // vec4(x) / vec4(1) -> vec4(x)
719 delete_right(&b, iter, outUpdated, outNeedsRescan);
720 }
721 } else if (is_constant(*bin->fLeft, 0)) {
722 if (bin->fLeft->fType.kind() == Type::kScalar_Kind &&
723 bin->fRight->fType.kind() == Type::kVector_Kind) {
724 // 0 / vec4(x) -> vec4(0)
725 vectorize_left(&b, iter, outUpdated, outNeedsRescan);
726 } else {
727 // 0 / x -> 0
728 // vec4(0) / x -> vec4(0)
729 // vec4(0) / vec4(x) -> vec4(0)
730 delete_right(&b, iter, outUpdated, outNeedsRescan);
731 }
732 }
733 break;
734 case Token::PLUSEQ:
735 if (is_constant(*bin->fRight, 0)) {
736 clear_write(*bin->fLeft);
737 delete_right(&b, iter, outUpdated, outNeedsRescan);
738 }
739 break;
740 case Token::MINUSEQ:
741 if (is_constant(*bin->fRight, 0)) {
742 clear_write(*bin->fLeft);
743 delete_right(&b, iter, outUpdated, outNeedsRescan);
744 }
745 break;
746 case Token::STAREQ:
747 if (is_constant(*bin->fRight, 1)) {
748 clear_write(*bin->fLeft);
749 delete_right(&b, iter, outUpdated, outNeedsRescan);
750 }
751 break;
752 case Token::SLASHEQ:
753 if (is_constant(*bin->fRight, 1)) {
754 clear_write(*bin->fLeft);
Ethan Nicholascb670962017-04-20 19:31:52 -0400755 delete_right(&b, iter, outUpdated, outNeedsRescan);
756 }
757 break;
758 default:
759 break;
760 }
761 }
762 default:
763 break;
764 }
765}
766
Ethan Nicholas5ac13c22017-05-10 15:06:17 -0400767
768// returns true if this statement could potentially execute a break at the current level (we ignore
769// nested loops and switches, since any breaks inside of them will merely break the loop / switch)
770static bool contains_break(Statement& s) {
771 switch (s.fKind) {
772 case Statement::kBlock_Kind:
773 for (const auto& sub : ((Block&) s).fStatements) {
774 if (contains_break(*sub)) {
775 return true;
776 }
777 }
778 return false;
779 case Statement::kBreak_Kind:
780 return true;
781 case Statement::kIf_Kind: {
782 const IfStatement& i = (IfStatement&) s;
783 return contains_break(*i.fIfTrue) || (i.fIfFalse && contains_break(*i.fIfFalse));
784 }
785 default:
786 return false;
787 }
788}
789
790// Returns a block containing all of the statements that will be run if the given case matches
791// (which, owing to the statements being owned by unique_ptrs, means the switch itself will be
792// broken by this call and must then be discarded).
793// Returns null (and leaves the switch unmodified) if no such simple reduction is possible, such as
794// when break statements appear inside conditionals.
795static std::unique_ptr<Statement> block_for_case(SwitchStatement* s, SwitchCase* c) {
796 bool capturing = false;
797 std::vector<std::unique_ptr<Statement>*> statementPtrs;
798 for (const auto& current : s->fCases) {
799 if (current.get() == c) {
800 capturing = true;
801 }
802 if (capturing) {
803 for (auto& stmt : current->fStatements) {
804 if (stmt->fKind == Statement::kBreak_Kind) {
805 capturing = false;
806 break;
807 }
808 if (contains_break(*stmt)) {
809 return nullptr;
810 }
811 statementPtrs.push_back(&stmt);
812 }
813 if (!capturing) {
814 break;
815 }
816 }
817 }
818 std::vector<std::unique_ptr<Statement>> statements;
819 for (const auto& s : statementPtrs) {
820 statements.push_back(std::move(*s));
821 }
822 return std::unique_ptr<Statement>(new Block(Position(), std::move(statements)));
823}
824
Ethan Nicholascb670962017-04-20 19:31:52 -0400825void Compiler::simplifyStatement(DefinitionMap& definitions,
Ethan Nicholas5ac13c22017-05-10 15:06:17 -0400826 BasicBlock& b,
827 std::vector<BasicBlock::Node>::iterator* iter,
828 std::unordered_set<const Variable*>* undefinedVariables,
829 bool* outUpdated,
830 bool* outNeedsRescan) {
Ethan Nicholascb670962017-04-20 19:31:52 -0400831 Statement* stmt = (*iter)->statement()->get();
832 switch (stmt->fKind) {
833 case Statement::kVarDeclarations_Kind: {
834 VarDeclarations& vd = *((VarDeclarationsStatement&) *stmt).fDeclaration;
835 for (auto varIter = vd.fVars.begin(); varIter != vd.fVars.end(); ) {
836 const auto& varDecl = **varIter;
837 if (varDecl.fVar->dead() &&
838 (!varDecl.fValue ||
839 !varDecl.fValue->hasSideEffects())) {
840 if (varDecl.fValue) {
841 ASSERT((*iter)->statement()->get() == stmt);
842 if (!b.tryRemoveExpressionBefore(iter, varDecl.fValue.get())) {
843 *outNeedsRescan = true;
844 }
845 }
846 varIter = vd.fVars.erase(varIter);
847 *outUpdated = true;
848 } else {
849 ++varIter;
850 }
851 }
852 if (vd.fVars.size() == 0) {
853 (*iter)->setStatement(std::unique_ptr<Statement>(new Nop()));
854 }
855 break;
856 }
857 case Statement::kIf_Kind: {
858 IfStatement& i = (IfStatement&) *stmt;
Ethan Nicholas5ac13c22017-05-10 15:06:17 -0400859 if (i.fTest->fKind == Expression::kBoolLiteral_Kind) {
860 // constant if, collapse down to a single branch
861 if (((BoolLiteral&) *i.fTest).fValue) {
862 ASSERT(i.fIfTrue);
863 (*iter)->setStatement(std::move(i.fIfTrue));
864 } else {
865 if (i.fIfFalse) {
866 (*iter)->setStatement(std::move(i.fIfFalse));
867 } else {
868 (*iter)->setStatement(std::unique_ptr<Statement>(new Nop()));
869 }
870 }
871 *outUpdated = true;
872 *outNeedsRescan = true;
873 break;
874 }
Ethan Nicholascb670962017-04-20 19:31:52 -0400875 if (i.fIfFalse && i.fIfFalse->isEmpty()) {
876 // else block doesn't do anything, remove it
877 i.fIfFalse.reset();
878 *outUpdated = true;
879 *outNeedsRescan = true;
880 }
881 if (!i.fIfFalse && i.fIfTrue->isEmpty()) {
882 // if block doesn't do anything, no else block
883 if (i.fTest->hasSideEffects()) {
884 // test has side effects, keep it
885 (*iter)->setStatement(std::unique_ptr<Statement>(
886 new ExpressionStatement(std::move(i.fTest))));
887 } else {
888 // no if, no else, no test side effects, kill the whole if
889 // statement
890 (*iter)->setStatement(std::unique_ptr<Statement>(new Nop()));
891 }
892 *outUpdated = true;
893 *outNeedsRescan = true;
894 }
895 break;
896 }
Ethan Nicholas5ac13c22017-05-10 15:06:17 -0400897 case Statement::kSwitch_Kind: {
898 SwitchStatement& s = (SwitchStatement&) *stmt;
899 if (s.fValue->isConstant()) {
900 // switch is constant, replace it with the case that matches
901 bool found = false;
902 SwitchCase* defaultCase = nullptr;
903 for (const auto& c : s.fCases) {
904 if (!c->fValue) {
905 defaultCase = c.get();
906 continue;
907 }
908 ASSERT(c->fValue->fKind == s.fValue->fKind);
909 found = c->fValue->compareConstant(fContext, *s.fValue);
910 if (found) {
911 std::unique_ptr<Statement> newBlock = block_for_case(&s, c.get());
912 if (newBlock) {
913 (*iter)->setStatement(std::move(newBlock));
914 break;
915 } else {
916 if (s.fIsStatic) {
917 this->error(s.fPosition,
918 "static switch contains non-static conditional break");
919 s.fIsStatic = false;
920 }
921 return; // can't simplify
922 }
923 }
924 }
925 if (!found) {
926 // no matching case. use default if it exists, or kill the whole thing
927 if (defaultCase) {
928 std::unique_ptr<Statement> newBlock = block_for_case(&s, defaultCase);
929 if (newBlock) {
930 (*iter)->setStatement(std::move(newBlock));
931 } else {
932 if (s.fIsStatic) {
933 this->error(s.fPosition,
934 "static switch contains non-static conditional break");
935 s.fIsStatic = false;
936 }
937 return; // can't simplify
938 }
939 } else {
940 (*iter)->setStatement(std::unique_ptr<Statement>(new Nop()));
941 }
942 }
943 *outUpdated = true;
944 *outNeedsRescan = true;
945 }
946 break;
947 }
Ethan Nicholascb670962017-04-20 19:31:52 -0400948 case Statement::kExpression_Kind: {
949 ExpressionStatement& e = (ExpressionStatement&) *stmt;
950 ASSERT((*iter)->statement()->get() == &e);
Ethan Nicholascb670962017-04-20 19:31:52 -0400951 if (!e.fExpression->hasSideEffects()) {
952 // Expression statement with no side effects, kill it
953 if (!b.tryRemoveExpressionBefore(iter, e.fExpression.get())) {
954 *outNeedsRescan = true;
955 }
956 ASSERT((*iter)->statement()->get() == stmt);
957 (*iter)->setStatement(std::unique_ptr<Statement>(new Nop()));
958 *outUpdated = true;
959 }
960 break;
961 }
962 default:
963 break;
964 }
965}
966
967void Compiler::scanCFG(FunctionDefinition& f) {
968 CFG cfg = CFGGenerator().getCFG(f);
969 this->computeDataFlow(&cfg);
ethannicholas22f939e2016-10-13 13:25:34 -0700970
971 // check for unreachable code
972 for (size_t i = 0; i < cfg.fBlocks.size(); i++) {
Mike Klein6ad99092016-10-26 10:35:22 -0400973 if (i != cfg.fStart && !cfg.fBlocks[i].fEntrances.size() &&
ethannicholas22f939e2016-10-13 13:25:34 -0700974 cfg.fBlocks[i].fNodes.size()) {
Ethan Nicholas86a43402017-01-19 13:32:00 -0500975 Position p;
976 switch (cfg.fBlocks[i].fNodes[0].fKind) {
977 case BasicBlock::Node::kStatement_Kind:
Ethan Nicholascb670962017-04-20 19:31:52 -0400978 p = (*cfg.fBlocks[i].fNodes[0].statement())->fPosition;
Ethan Nicholas86a43402017-01-19 13:32:00 -0500979 break;
980 case BasicBlock::Node::kExpression_Kind:
Ethan Nicholascb670962017-04-20 19:31:52 -0400981 p = (*cfg.fBlocks[i].fNodes[0].expression())->fPosition;
Ethan Nicholas86a43402017-01-19 13:32:00 -0500982 break;
983 }
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400984 this->error(p, String("unreachable"));
ethannicholas22f939e2016-10-13 13:25:34 -0700985 }
986 }
987 if (fErrorCount) {
988 return;
989 }
990
Ethan Nicholascb670962017-04-20 19:31:52 -0400991 // check for dead code & undefined variables, perform constant propagation
992 std::unordered_set<const Variable*> undefinedVariables;
993 bool updated;
994 bool needsRescan = false;
995 do {
996 if (needsRescan) {
997 cfg = CFGGenerator().getCFG(f);
998 this->computeDataFlow(&cfg);
999 needsRescan = false;
Ethan Nicholas113628d2017-02-02 16:11:39 -05001000 }
Ethan Nicholascb670962017-04-20 19:31:52 -04001001
1002 updated = false;
1003 for (BasicBlock& b : cfg.fBlocks) {
1004 DefinitionMap definitions = b.fBefore;
1005
1006 for (auto iter = b.fNodes.begin(); iter != b.fNodes.end() && !needsRescan; ++iter) {
1007 if (iter->fKind == BasicBlock::Node::kExpression_Kind) {
1008 this->simplifyExpression(definitions, b, &iter, &undefinedVariables, &updated,
1009 &needsRescan);
1010 } else {
1011 this->simplifyStatement(definitions, b, &iter, &undefinedVariables, &updated,
1012 &needsRescan);
1013 }
1014 this->addDefinitions(*iter, &definitions);
1015 }
1016 }
1017 } while (updated);
1018 ASSERT(!needsRescan);
ethannicholas22f939e2016-10-13 13:25:34 -07001019
Ethan Nicholas5ac13c22017-05-10 15:06:17 -04001020 // verify static ifs & switches
1021 for (BasicBlock& b : cfg.fBlocks) {
1022 DefinitionMap definitions = b.fBefore;
1023
1024 for (auto iter = b.fNodes.begin(); iter != b.fNodes.end() && !needsRescan; ++iter) {
1025 if (iter->fKind == BasicBlock::Node::kStatement_Kind) {
1026 const Statement& s = **iter->statement();
1027 switch (s.fKind) {
1028 case Statement::kIf_Kind:
1029 if (((const IfStatement&) s).fIsStatic) {
1030 this->error(s.fPosition, "static if has non-static test");
1031 }
1032 break;
1033 case Statement::kSwitch_Kind:
1034 if (((const SwitchStatement&) s).fIsStatic) {
1035 this->error(s.fPosition, "static switch has non-static test");
1036 }
1037 break;
1038 default:
1039 break;
1040 }
1041 }
1042 }
1043 }
1044
ethannicholas22f939e2016-10-13 13:25:34 -07001045 // check for missing return
1046 if (f.fDeclaration.fReturnType != *fContext.fVoid_Type) {
1047 if (cfg.fBlocks[cfg.fExit].fEntrances.size()) {
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001048 this->error(f.fPosition, String("function can exit without returning a value"));
ethannicholas22f939e2016-10-13 13:25:34 -07001049 }
1050 }
1051}
1052
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001053void Compiler::internalConvertProgram(String text,
ethannicholas5961bc92016-10-12 06:39:56 -07001054 Modifiers::Flag* defaultPrecision,
ethannicholasb3058bd2016-07-01 08:22:01 -07001055 std::vector<std::unique_ptr<ProgramElement>>* result) {
1056 Parser parser(text, *fTypes, *this);
1057 std::vector<std::unique_ptr<ASTDeclaration>> parsed = parser.file();
1058 if (fErrorCount) {
1059 return;
1060 }
ethannicholas5961bc92016-10-12 06:39:56 -07001061 *defaultPrecision = Modifiers::kHighp_Flag;
ethannicholasb3058bd2016-07-01 08:22:01 -07001062 for (size_t i = 0; i < parsed.size(); i++) {
1063 ASTDeclaration& decl = *parsed[i];
1064 switch (decl.fKind) {
1065 case ASTDeclaration::kVar_Kind: {
ethannicholas14fe8cc2016-09-07 13:37:16 -07001066 std::unique_ptr<VarDeclarations> s = fIRGenerator->convertVarDeclarations(
Mike Klein6ad99092016-10-26 10:35:22 -04001067 (ASTVarDeclarations&) decl,
ethannicholasb3058bd2016-07-01 08:22:01 -07001068 Variable::kGlobal_Storage);
1069 if (s) {
1070 result->push_back(std::move(s));
1071 }
1072 break;
1073 }
1074 case ASTDeclaration::kFunction_Kind: {
1075 std::unique_ptr<FunctionDefinition> f = fIRGenerator->convertFunction(
1076 (ASTFunction&) decl);
ethannicholas22f939e2016-10-13 13:25:34 -07001077 if (!fErrorCount && f) {
1078 this->scanCFG(*f);
ethannicholasb3058bd2016-07-01 08:22:01 -07001079 result->push_back(std::move(f));
1080 }
1081 break;
1082 }
ethannicholas5961bc92016-10-12 06:39:56 -07001083 case ASTDeclaration::kModifiers_Kind: {
1084 std::unique_ptr<ModifiersDeclaration> f = fIRGenerator->convertModifiersDeclaration(
1085 (ASTModifiersDeclaration&) decl);
1086 if (f) {
1087 result->push_back(std::move(f));
1088 }
1089 break;
1090 }
ethannicholasb3058bd2016-07-01 08:22:01 -07001091 case ASTDeclaration::kInterfaceBlock_Kind: {
1092 std::unique_ptr<InterfaceBlock> i = fIRGenerator->convertInterfaceBlock(
1093 (ASTInterfaceBlock&) decl);
1094 if (i) {
1095 result->push_back(std::move(i));
1096 }
1097 break;
1098 }
1099 case ASTDeclaration::kExtension_Kind: {
1100 std::unique_ptr<Extension> e = fIRGenerator->convertExtension((ASTExtension&) decl);
1101 if (e) {
1102 result->push_back(std::move(e));
1103 }
1104 break;
1105 }
ethannicholas5961bc92016-10-12 06:39:56 -07001106 case ASTDeclaration::kPrecision_Kind: {
1107 *defaultPrecision = ((ASTPrecision&) decl).fPrecision;
1108 break;
1109 }
ethannicholasb3058bd2016-07-01 08:22:01 -07001110 default:
1111 ABORT("unsupported declaration: %s\n", decl.description().c_str());
1112 }
1113 }
1114}
1115
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001116std::unique_ptr<Program> Compiler::convertProgram(Program::Kind kind, String text,
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001117 const Program::Settings& settings) {
ethannicholasb3058bd2016-07-01 08:22:01 -07001118 fErrorText = "";
1119 fErrorCount = 0;
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001120 fIRGenerator->start(&settings);
ethannicholasd598f792016-07-25 10:08:54 -07001121 std::vector<std::unique_ptr<ProgramElement>> elements;
ethannicholas5961bc92016-10-12 06:39:56 -07001122 Modifiers::Flag ignored;
ethannicholasb3058bd2016-07-01 08:22:01 -07001123 switch (kind) {
1124 case Program::kVertex_Kind:
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001125 this->internalConvertProgram(String(SKSL_VERT_INCLUDE), &ignored, &elements);
ethannicholasb3058bd2016-07-01 08:22:01 -07001126 break;
1127 case Program::kFragment_Kind:
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001128 this->internalConvertProgram(String(SKSL_FRAG_INCLUDE), &ignored, &elements);
ethannicholasb3058bd2016-07-01 08:22:01 -07001129 break;
Ethan Nicholas52cad152017-02-16 16:37:32 -05001130 case Program::kGeometry_Kind:
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001131 this->internalConvertProgram(String(SKSL_GEOM_INCLUDE), &ignored, &elements);
Ethan Nicholas52cad152017-02-16 16:37:32 -05001132 break;
ethannicholasb3058bd2016-07-01 08:22:01 -07001133 }
ethannicholasddb37d62016-10-20 09:54:00 -07001134 fIRGenerator->fSymbolTable->markAllFunctionsBuiltin();
ethannicholas5961bc92016-10-12 06:39:56 -07001135 Modifiers::Flag defaultPrecision;
1136 this->internalConvertProgram(text, &defaultPrecision, &elements);
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001137 auto result = std::unique_ptr<Program>(new Program(kind, settings, defaultPrecision, &fContext,
1138 std::move(elements),
1139 fIRGenerator->fSymbolTable,
1140 fIRGenerator->fInputs));
Ethan Nicholas3605ace2016-11-21 15:59:48 -05001141 fIRGenerator->finish();
ethannicholasb3058bd2016-07-01 08:22:01 -07001142 this->writeErrorCount();
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001143 if (fErrorCount) {
1144 return nullptr;
1145 }
1146 return result;
1147}
1148
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001149bool Compiler::toSPIRV(const Program& program, OutputStream& out) {
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -04001150#ifdef SK_ENABLE_SPIRV_VALIDATION
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001151 StringStream buffer;
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -04001152 SPIRVCodeGenerator cg(&fContext, &program, this, &buffer);
1153 bool result = cg.generateCode();
1154 if (result) {
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -04001155 spvtools::SpirvTools tools(SPV_ENV_VULKAN_1_0);
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001156 ASSERT(0 == buffer.size() % 4);
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -04001157 auto dumpmsg = [](spv_message_level_t, const char*, const spv_position_t&, const char* m) {
1158 SkDebugf("SPIR-V validation error: %s\n", m);
1159 };
1160 tools.SetMessageConsumer(dumpmsg);
1161 // Verify that the SPIR-V we produced is valid. If this assert fails, check the logs prior
1162 // to the failure to see the validation errors.
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001163 ASSERT_RESULT(tools.Validate((const uint32_t*) buffer.data(), buffer.size() / 4));
1164 out.write(buffer.data(), buffer.size());
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -04001165 }
1166#else
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001167 SPIRVCodeGenerator cg(&fContext, &program, this, &out);
1168 bool result = cg.generateCode();
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -04001169#endif
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001170 this->writeErrorCount();
Ethan Nicholasce33f102016-12-09 17:22:59 -05001171 return result;
1172}
1173
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001174bool Compiler::toSPIRV(const Program& program, String* out) {
1175 StringStream buffer;
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001176 bool result = this->toSPIRV(program, buffer);
1177 if (result) {
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001178 *out = String(buffer.data(), buffer.size());
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001179 }
1180 return result;
1181}
1182
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001183bool Compiler::toGLSL(const Program& program, OutputStream& out) {
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001184 GLSLCodeGenerator cg(&fContext, &program, this, &out);
1185 bool result = cg.generateCode();
1186 this->writeErrorCount();
1187 return result;
1188}
1189
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001190bool Compiler::toGLSL(const Program& program, String* out) {
1191 StringStream buffer;
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001192 bool result = this->toGLSL(program, buffer);
1193 if (result) {
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001194 *out = String(buffer.data(), buffer.size());
Ethan Nicholas941e7e22016-12-12 15:33:30 -05001195 }
1196 return result;
1197}
1198
1199
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001200void Compiler::error(Position position, String msg) {
ethannicholasb3058bd2016-07-01 08:22:01 -07001201 fErrorCount++;
1202 fErrorText += "error: " + position.description() + ": " + msg.c_str() + "\n";
1203}
1204
Ethan Nicholas0df1b042017-03-31 13:56:23 -04001205String Compiler::errorText() {
1206 String result = fErrorText;
ethannicholasb3058bd2016-07-01 08:22:01 -07001207 return result;
1208}
1209
1210void Compiler::writeErrorCount() {
1211 if (fErrorCount) {
1212 fErrorText += to_string(fErrorCount) + " error";
1213 if (fErrorCount > 1) {
1214 fErrorText += "s";
1215 }
1216 fErrorText += "\n";
1217 }
1218}
1219
ethannicholasb3058bd2016-07-01 08:22:01 -07001220} // namespace