blob: 479475984b12f21a9012bac593ba2afaa0af5c57 [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
10#include <fstream>
11#include <streambuf>
12
ethannicholas5961bc92016-10-12 06:39:56 -070013#include "ast/SkSLASTPrecision.h"
ethannicholas22f939e2016-10-13 13:25:34 -070014#include "SkSLCFGGenerator.h"
ethannicholasb3058bd2016-07-01 08:22:01 -070015#include "SkSLIRGenerator.h"
16#include "SkSLParser.h"
17#include "SkSLSPIRVCodeGenerator.h"
18#include "ir/SkSLExpression.h"
19#include "ir/SkSLIntLiteral.h"
ethannicholas5961bc92016-10-12 06:39:56 -070020#include "ir/SkSLModifiersDeclaration.h"
ethannicholasb3058bd2016-07-01 08:22:01 -070021#include "ir/SkSLSymbolTable.h"
ethannicholasddb37d62016-10-20 09:54:00 -070022#include "ir/SkSLUnresolvedFunction.h"
ethannicholas22f939e2016-10-13 13:25:34 -070023#include "ir/SkSLVarDeclarations.h"
ethannicholasb3058bd2016-07-01 08:22:01 -070024#include "SkMutex.h"
25
26#define STRINGIFY(x) #x
27
28// include the built-in shader symbols as static strings
29
ethannicholas5961bc92016-10-12 06:39:56 -070030static const char* SKSL_INCLUDE =
ethannicholasb3058bd2016-07-01 08:22:01 -070031#include "sksl.include"
32;
33
ethannicholas5961bc92016-10-12 06:39:56 -070034static const char* SKSL_VERT_INCLUDE =
ethannicholasb3058bd2016-07-01 08:22:01 -070035#include "sksl_vert.include"
36;
37
ethannicholas5961bc92016-10-12 06:39:56 -070038static const char* SKSL_FRAG_INCLUDE =
ethannicholasb3058bd2016-07-01 08:22:01 -070039#include "sksl_frag.include"
40;
41
42namespace SkSL {
43
Mike Klein6ad99092016-10-26 10:35:22 -040044Compiler::Compiler()
ethannicholasb3058bd2016-07-01 08:22:01 -070045: fErrorCount(0) {
46 auto types = std::shared_ptr<SymbolTable>(new SymbolTable(*this));
47 auto symbols = std::shared_ptr<SymbolTable>(new SymbolTable(types, *this));
ethannicholasd598f792016-07-25 10:08:54 -070048 fIRGenerator = new IRGenerator(&fContext, symbols, *this);
ethannicholasb3058bd2016-07-01 08:22:01 -070049 fTypes = types;
ethannicholasd598f792016-07-25 10:08:54 -070050 #define ADD_TYPE(t) types->addWithoutOwnership(fContext.f ## t ## _Type->fName, \
51 fContext.f ## t ## _Type.get())
ethannicholasb3058bd2016-07-01 08:22:01 -070052 ADD_TYPE(Void);
53 ADD_TYPE(Float);
54 ADD_TYPE(Vec2);
55 ADD_TYPE(Vec3);
56 ADD_TYPE(Vec4);
57 ADD_TYPE(Double);
58 ADD_TYPE(DVec2);
59 ADD_TYPE(DVec3);
60 ADD_TYPE(DVec4);
61 ADD_TYPE(Int);
62 ADD_TYPE(IVec2);
63 ADD_TYPE(IVec3);
64 ADD_TYPE(IVec4);
65 ADD_TYPE(UInt);
66 ADD_TYPE(UVec2);
67 ADD_TYPE(UVec3);
68 ADD_TYPE(UVec4);
69 ADD_TYPE(Bool);
70 ADD_TYPE(BVec2);
71 ADD_TYPE(BVec3);
72 ADD_TYPE(BVec4);
73 ADD_TYPE(Mat2x2);
ethannicholasf789b382016-08-03 12:43:36 -070074 types->addWithoutOwnership("mat2x2", fContext.fMat2x2_Type.get());
ethannicholasb3058bd2016-07-01 08:22:01 -070075 ADD_TYPE(Mat2x3);
76 ADD_TYPE(Mat2x4);
77 ADD_TYPE(Mat3x2);
78 ADD_TYPE(Mat3x3);
ethannicholasf789b382016-08-03 12:43:36 -070079 types->addWithoutOwnership("mat3x3", fContext.fMat3x3_Type.get());
ethannicholasb3058bd2016-07-01 08:22:01 -070080 ADD_TYPE(Mat3x4);
81 ADD_TYPE(Mat4x2);
82 ADD_TYPE(Mat4x3);
83 ADD_TYPE(Mat4x4);
ethannicholasf789b382016-08-03 12:43:36 -070084 types->addWithoutOwnership("mat4x4", fContext.fMat4x4_Type.get());
ethannicholasb3058bd2016-07-01 08:22:01 -070085 ADD_TYPE(GenType);
86 ADD_TYPE(GenDType);
87 ADD_TYPE(GenIType);
88 ADD_TYPE(GenUType);
89 ADD_TYPE(GenBType);
90 ADD_TYPE(Mat);
91 ADD_TYPE(Vec);
92 ADD_TYPE(GVec);
93 ADD_TYPE(GVec2);
94 ADD_TYPE(GVec3);
95 ADD_TYPE(GVec4);
96 ADD_TYPE(DVec);
97 ADD_TYPE(IVec);
98 ADD_TYPE(UVec);
99 ADD_TYPE(BVec);
100
101 ADD_TYPE(Sampler1D);
102 ADD_TYPE(Sampler2D);
103 ADD_TYPE(Sampler3D);
ethannicholas5961bc92016-10-12 06:39:56 -0700104 ADD_TYPE(SamplerExternalOES);
ethannicholasb3058bd2016-07-01 08:22:01 -0700105 ADD_TYPE(SamplerCube);
106 ADD_TYPE(Sampler2DRect);
107 ADD_TYPE(Sampler1DArray);
108 ADD_TYPE(Sampler2DArray);
109 ADD_TYPE(SamplerCubeArray);
110 ADD_TYPE(SamplerBuffer);
111 ADD_TYPE(Sampler2DMS);
112 ADD_TYPE(Sampler2DMSArray);
113
Brian Salomonbf7b6202016-11-11 16:08:03 -0500114 ADD_TYPE(ISampler2D);
115
ethannicholasb3058bd2016-07-01 08:22:01 -0700116 ADD_TYPE(GSampler1D);
117 ADD_TYPE(GSampler2D);
118 ADD_TYPE(GSampler3D);
119 ADD_TYPE(GSamplerCube);
120 ADD_TYPE(GSampler2DRect);
121 ADD_TYPE(GSampler1DArray);
122 ADD_TYPE(GSampler2DArray);
123 ADD_TYPE(GSamplerCubeArray);
124 ADD_TYPE(GSamplerBuffer);
125 ADD_TYPE(GSampler2DMS);
126 ADD_TYPE(GSampler2DMSArray);
127
128 ADD_TYPE(Sampler1DShadow);
129 ADD_TYPE(Sampler2DShadow);
130 ADD_TYPE(SamplerCubeShadow);
131 ADD_TYPE(Sampler2DRectShadow);
132 ADD_TYPE(Sampler1DArrayShadow);
133 ADD_TYPE(Sampler2DArrayShadow);
134 ADD_TYPE(SamplerCubeArrayShadow);
135 ADD_TYPE(GSampler2DArrayShadow);
136 ADD_TYPE(GSamplerCubeArrayShadow);
137
ethannicholas5961bc92016-10-12 06:39:56 -0700138 Modifiers::Flag ignored1;
139 std::vector<std::unique_ptr<ProgramElement>> ignored2;
140 this->internalConvertProgram(SKSL_INCLUDE, &ignored1, &ignored2);
ethannicholasddb37d62016-10-20 09:54:00 -0700141 fIRGenerator->fSymbolTable->markAllFunctionsBuiltin();
ethannicholasb3058bd2016-07-01 08:22:01 -0700142 ASSERT(!fErrorCount);
143}
144
145Compiler::~Compiler() {
146 delete fIRGenerator;
147}
148
ethannicholas22f939e2016-10-13 13:25:34 -0700149// add the definition created by assigning to the lvalue to the definition set
150void Compiler::addDefinition(const Expression* lvalue, const Expression* expr,
151 std::unordered_map<const Variable*, const Expression*>* definitions) {
152 switch (lvalue->fKind) {
153 case Expression::kVariableReference_Kind: {
154 const Variable& var = ((VariableReference*) lvalue)->fVariable;
155 if (var.fStorage == Variable::kLocal_Storage) {
156 (*definitions)[&var] = expr;
157 }
158 break;
159 }
160 case Expression::kSwizzle_Kind:
161 // We consider the variable written to as long as at least some of its components have
162 // been written to. This will lead to some false negatives (we won't catch it if you
163 // write to foo.x and then read foo.y), but being stricter could lead to false positives
Mike Klein6ad99092016-10-26 10:35:22 -0400164 // (we write to foo.x, and then pass foo to a function which happens to only read foo.x,
165 // 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 -0700166 // more complicated whole-program analysis. This is probably good enough.
Mike Klein6ad99092016-10-26 10:35:22 -0400167 this->addDefinition(((Swizzle*) lvalue)->fBase.get(),
168 fContext.fDefined_Expression.get(),
ethannicholas22f939e2016-10-13 13:25:34 -0700169 definitions);
170 break;
171 case Expression::kIndex_Kind:
172 // see comments in Swizzle
Mike Klein6ad99092016-10-26 10:35:22 -0400173 this->addDefinition(((IndexExpression*) lvalue)->fBase.get(),
174 fContext.fDefined_Expression.get(),
ethannicholas22f939e2016-10-13 13:25:34 -0700175 definitions);
176 break;
177 case Expression::kFieldAccess_Kind:
178 // see comments in Swizzle
Mike Klein6ad99092016-10-26 10:35:22 -0400179 this->addDefinition(((FieldAccess*) lvalue)->fBase.get(),
180 fContext.fDefined_Expression.get(),
ethannicholas22f939e2016-10-13 13:25:34 -0700181 definitions);
182 break;
183 default:
184 // not an lvalue, can't happen
185 ASSERT(false);
186 }
187}
188
189// add local variables defined by this node to the set
Mike Klein6ad99092016-10-26 10:35:22 -0400190void Compiler::addDefinitions(const BasicBlock::Node& node,
ethannicholas22f939e2016-10-13 13:25:34 -0700191 std::unordered_map<const Variable*, const Expression*>* definitions) {
192 switch (node.fKind) {
193 case BasicBlock::Node::kExpression_Kind: {
194 const Expression* expr = (Expression*) node.fNode;
195 if (expr->fKind == Expression::kBinary_Kind) {
196 const BinaryExpression* b = (BinaryExpression*) expr;
197 if (b->fOperator == Token::EQ) {
198 this->addDefinition(b->fLeft.get(), b->fRight.get(), definitions);
199 }
200 }
201 break;
202 }
203 case BasicBlock::Node::kStatement_Kind: {
204 const Statement* stmt = (Statement*) node.fNode;
205 if (stmt->fKind == Statement::kVarDeclarations_Kind) {
206 const VarDeclarationsStatement* vd = (VarDeclarationsStatement*) stmt;
207 for (const VarDeclaration& decl : vd->fDeclaration->fVars) {
208 if (decl.fValue) {
209 (*definitions)[decl.fVar] = decl.fValue.get();
210 }
211 }
212 }
213 break;
214 }
215 }
216}
217
218void Compiler::scanCFG(CFG* cfg, BlockId blockId, std::set<BlockId>* workList) {
219 BasicBlock& block = cfg->fBlocks[blockId];
220
221 // compute definitions after this block
222 std::unordered_map<const Variable*, const Expression*> after = block.fBefore;
223 for (const BasicBlock::Node& n : block.fNodes) {
224 this->addDefinitions(n, &after);
225 }
226
227 // propagate definitions to exits
228 for (BlockId exitId : block.fExits) {
229 BasicBlock& exit = cfg->fBlocks[exitId];
230 for (const auto& pair : after) {
231 const Expression* e1 = pair.second;
232 if (exit.fBefore.find(pair.first) == exit.fBefore.end()) {
233 exit.fBefore[pair.first] = e1;
234 } else {
235 const Expression* e2 = exit.fBefore[pair.first];
236 if (e1 != e2) {
237 // definition has changed, merge and add exit block to worklist
238 workList->insert(exitId);
239 if (!e1 || !e2) {
240 exit.fBefore[pair.first] = nullptr;
241 } else {
242 exit.fBefore[pair.first] = fContext.fDefined_Expression.get();
243 }
244 }
245 }
246 }
247 }
248}
249
250// returns a map which maps all local variables in the function to null, indicating that their value
251// is initially unknown
252static std::unordered_map<const Variable*, const Expression*> compute_start_state(const CFG& cfg) {
253 std::unordered_map<const Variable*, const Expression*> result;
Mike Klein6ad99092016-10-26 10:35:22 -0400254 for (const auto& block : cfg.fBlocks) {
255 for (const auto& node : block.fNodes) {
ethannicholas22f939e2016-10-13 13:25:34 -0700256 if (node.fKind == BasicBlock::Node::kStatement_Kind) {
257 const Statement* s = (Statement*) node.fNode;
258 if (s->fKind == Statement::kVarDeclarations_Kind) {
259 const VarDeclarationsStatement* vd = (const VarDeclarationsStatement*) s;
260 for (const VarDeclaration& decl : vd->fDeclaration->fVars) {
261 result[decl.fVar] = nullptr;
Mike Klein6ad99092016-10-26 10:35:22 -0400262 }
ethannicholas22f939e2016-10-13 13:25:34 -0700263 }
264 }
265 }
266 }
267 return result;
268}
269
270void Compiler::scanCFG(const FunctionDefinition& f) {
271 CFG cfg = CFGGenerator().getCFG(f);
272
273 // compute the data flow
274 cfg.fBlocks[cfg.fStart].fBefore = compute_start_state(cfg);
275 std::set<BlockId> workList;
276 for (BlockId i = 0; i < cfg.fBlocks.size(); i++) {
277 workList.insert(i);
278 }
279 while (workList.size()) {
280 BlockId next = *workList.begin();
281 workList.erase(workList.begin());
282 this->scanCFG(&cfg, next, &workList);
283 }
284
285 // check for unreachable code
286 for (size_t i = 0; i < cfg.fBlocks.size(); i++) {
Mike Klein6ad99092016-10-26 10:35:22 -0400287 if (i != cfg.fStart && !cfg.fBlocks[i].fEntrances.size() &&
ethannicholas22f939e2016-10-13 13:25:34 -0700288 cfg.fBlocks[i].fNodes.size()) {
289 this->error(cfg.fBlocks[i].fNodes[0].fNode->fPosition, "unreachable");
290 }
291 }
292 if (fErrorCount) {
293 return;
294 }
295
296 // check for undefined variables
297 for (const BasicBlock& b : cfg.fBlocks) {
298 std::unordered_map<const Variable*, const Expression*> definitions = b.fBefore;
299 for (const BasicBlock::Node& n : b.fNodes) {
300 if (n.fKind == BasicBlock::Node::kExpression_Kind) {
301 const Expression* expr = (const Expression*) n.fNode;
302 if (expr->fKind == Expression::kVariableReference_Kind) {
303 const Variable& var = ((VariableReference*) expr)->fVariable;
Mike Klein6ad99092016-10-26 10:35:22 -0400304 if (var.fStorage == Variable::kLocal_Storage &&
ethannicholas22f939e2016-10-13 13:25:34 -0700305 !definitions[&var]) {
306 this->error(expr->fPosition,
307 "'" + var.fName + "' has not been assigned");
Mike Klein6ad99092016-10-26 10:35:22 -0400308 }
ethannicholas22f939e2016-10-13 13:25:34 -0700309 }
310 }
311 this->addDefinitions(n, &definitions);
312 }
313 }
314
315 // check for missing return
316 if (f.fDeclaration.fReturnType != *fContext.fVoid_Type) {
317 if (cfg.fBlocks[cfg.fExit].fEntrances.size()) {
318 this->error(f.fPosition, "function can exit without returning a value");
319 }
320 }
321}
322
ethannicholasb3058bd2016-07-01 08:22:01 -0700323void Compiler::internalConvertProgram(std::string text,
ethannicholas5961bc92016-10-12 06:39:56 -0700324 Modifiers::Flag* defaultPrecision,
ethannicholasb3058bd2016-07-01 08:22:01 -0700325 std::vector<std::unique_ptr<ProgramElement>>* result) {
326 Parser parser(text, *fTypes, *this);
327 std::vector<std::unique_ptr<ASTDeclaration>> parsed = parser.file();
328 if (fErrorCount) {
329 return;
330 }
ethannicholas5961bc92016-10-12 06:39:56 -0700331 *defaultPrecision = Modifiers::kHighp_Flag;
ethannicholasb3058bd2016-07-01 08:22:01 -0700332 for (size_t i = 0; i < parsed.size(); i++) {
333 ASTDeclaration& decl = *parsed[i];
334 switch (decl.fKind) {
335 case ASTDeclaration::kVar_Kind: {
ethannicholas14fe8cc2016-09-07 13:37:16 -0700336 std::unique_ptr<VarDeclarations> s = fIRGenerator->convertVarDeclarations(
Mike Klein6ad99092016-10-26 10:35:22 -0400337 (ASTVarDeclarations&) decl,
ethannicholasb3058bd2016-07-01 08:22:01 -0700338 Variable::kGlobal_Storage);
339 if (s) {
340 result->push_back(std::move(s));
341 }
342 break;
343 }
344 case ASTDeclaration::kFunction_Kind: {
345 std::unique_ptr<FunctionDefinition> f = fIRGenerator->convertFunction(
346 (ASTFunction&) decl);
ethannicholas22f939e2016-10-13 13:25:34 -0700347 if (!fErrorCount && f) {
348 this->scanCFG(*f);
ethannicholasb3058bd2016-07-01 08:22:01 -0700349 result->push_back(std::move(f));
350 }
351 break;
352 }
ethannicholas5961bc92016-10-12 06:39:56 -0700353 case ASTDeclaration::kModifiers_Kind: {
354 std::unique_ptr<ModifiersDeclaration> f = fIRGenerator->convertModifiersDeclaration(
355 (ASTModifiersDeclaration&) decl);
356 if (f) {
357 result->push_back(std::move(f));
358 }
359 break;
360 }
ethannicholasb3058bd2016-07-01 08:22:01 -0700361 case ASTDeclaration::kInterfaceBlock_Kind: {
362 std::unique_ptr<InterfaceBlock> i = fIRGenerator->convertInterfaceBlock(
363 (ASTInterfaceBlock&) decl);
364 if (i) {
365 result->push_back(std::move(i));
366 }
367 break;
368 }
369 case ASTDeclaration::kExtension_Kind: {
370 std::unique_ptr<Extension> e = fIRGenerator->convertExtension((ASTExtension&) decl);
371 if (e) {
372 result->push_back(std::move(e));
373 }
374 break;
375 }
ethannicholas5961bc92016-10-12 06:39:56 -0700376 case ASTDeclaration::kPrecision_Kind: {
377 *defaultPrecision = ((ASTPrecision&) decl).fPrecision;
378 break;
379 }
ethannicholasb3058bd2016-07-01 08:22:01 -0700380 default:
381 ABORT("unsupported declaration: %s\n", decl.description().c_str());
382 }
383 }
384}
385
386std::unique_ptr<Program> Compiler::convertProgram(Program::Kind kind, std::string text) {
387 fErrorText = "";
388 fErrorCount = 0;
389 fIRGenerator->pushSymbolTable();
ethannicholasd598f792016-07-25 10:08:54 -0700390 std::vector<std::unique_ptr<ProgramElement>> elements;
ethannicholas5961bc92016-10-12 06:39:56 -0700391 Modifiers::Flag ignored;
ethannicholasb3058bd2016-07-01 08:22:01 -0700392 switch (kind) {
393 case Program::kVertex_Kind:
ethannicholas5961bc92016-10-12 06:39:56 -0700394 this->internalConvertProgram(SKSL_VERT_INCLUDE, &ignored, &elements);
ethannicholasb3058bd2016-07-01 08:22:01 -0700395 break;
396 case Program::kFragment_Kind:
ethannicholas5961bc92016-10-12 06:39:56 -0700397 this->internalConvertProgram(SKSL_FRAG_INCLUDE, &ignored, &elements);
ethannicholasb3058bd2016-07-01 08:22:01 -0700398 break;
399 }
ethannicholasddb37d62016-10-20 09:54:00 -0700400 fIRGenerator->fSymbolTable->markAllFunctionsBuiltin();
ethannicholas5961bc92016-10-12 06:39:56 -0700401 Modifiers::Flag defaultPrecision;
402 this->internalConvertProgram(text, &defaultPrecision, &elements);
Mike Klein6ad99092016-10-26 10:35:22 -0400403 auto result = std::unique_ptr<Program>(new Program(kind, defaultPrecision, std::move(elements),
ethannicholasddb37d62016-10-20 09:54:00 -0700404 fIRGenerator->fSymbolTable));
ethannicholasb3058bd2016-07-01 08:22:01 -0700405 fIRGenerator->popSymbolTable();
406 this->writeErrorCount();
ethannicholasd598f792016-07-25 10:08:54 -0700407 return result;
ethannicholasb3058bd2016-07-01 08:22:01 -0700408}
409
410void Compiler::error(Position position, std::string msg) {
411 fErrorCount++;
412 fErrorText += "error: " + position.description() + ": " + msg.c_str() + "\n";
413}
414
415std::string Compiler::errorText() {
416 std::string result = fErrorText;
417 return result;
418}
419
420void Compiler::writeErrorCount() {
421 if (fErrorCount) {
422 fErrorText += to_string(fErrorCount) + " error";
423 if (fErrorCount > 1) {
424 fErrorText += "s";
425 }
426 fErrorText += "\n";
427 }
428}
429
ethannicholasf789b382016-08-03 12:43:36 -0700430bool Compiler::toSPIRV(Program::Kind kind, const std::string& text, std::ostream& out) {
ethannicholasb3058bd2016-07-01 08:22:01 -0700431 auto program = this->convertProgram(kind, text);
432 if (fErrorCount == 0) {
ethannicholasd598f792016-07-25 10:08:54 -0700433 SkSL::SPIRVCodeGenerator cg(&fContext);
ethannicholasb3058bd2016-07-01 08:22:01 -0700434 cg.generateCode(*program.get(), out);
435 ASSERT(!out.rdstate());
436 }
437 return fErrorCount == 0;
438}
439
ethannicholasf789b382016-08-03 12:43:36 -0700440bool Compiler::toSPIRV(Program::Kind kind, const std::string& text, std::string* out) {
ethannicholasb3058bd2016-07-01 08:22:01 -0700441 std::stringstream buffer;
442 bool result = this->toSPIRV(kind, text, buffer);
443 if (result) {
444 *out = buffer.str();
445 }
ethannicholasf789b382016-08-03 12:43:36 -0700446 return result;
447}
448
Ethan Nicholas7ef4b742016-11-11 15:16:46 -0500449bool Compiler::toGLSL(Program::Kind kind, const std::string& text, const GrGLSLCaps& caps,
ethannicholasf789b382016-08-03 12:43:36 -0700450 std::ostream& out) {
451 auto program = this->convertProgram(kind, text);
452 if (fErrorCount == 0) {
Ethan Nicholas7ef4b742016-11-11 15:16:46 -0500453 SkSL::GLSLCodeGenerator cg(&fContext, &caps);
ethannicholasf789b382016-08-03 12:43:36 -0700454 cg.generateCode(*program.get(), out);
455 ASSERT(!out.rdstate());
456 }
ethannicholasb3058bd2016-07-01 08:22:01 -0700457 return fErrorCount == 0;
458}
459
Ethan Nicholas7ef4b742016-11-11 15:16:46 -0500460bool Compiler::toGLSL(Program::Kind kind, const std::string& text, const GrGLSLCaps& caps,
ethannicholasf789b382016-08-03 12:43:36 -0700461 std::string* out) {
462 std::stringstream buffer;
463 bool result = this->toGLSL(kind, text, caps, buffer);
464 if (result) {
465 *out = buffer.str();
466 }
467 return result;
468}
469
ethannicholasb3058bd2016-07-01 08:22:01 -0700470} // namespace