blob: d6a92d3bacd3eb64a939e64c558555cd69181223 [file] [log] [blame]
Ethan Nicholas762466e2017-06-29 10:03:38 -04001/*
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 */
7
8#include "SkSLHCodeGenerator.h"
9
Ethan Nicholas130fb3f2018-02-01 12:14:34 -050010#include "SkSLParser.h"
Ethan Nicholas762466e2017-06-29 10:03:38 -040011#include "SkSLUtil.h"
Ethan Nicholasaae47c82017-11-10 15:34:03 -050012#include "ir/SkSLEnum.h"
Ethan Nicholas762466e2017-06-29 10:03:38 -040013#include "ir/SkSLFunctionDeclaration.h"
14#include "ir/SkSLFunctionDefinition.h"
15#include "ir/SkSLSection.h"
16#include "ir/SkSLVarDeclarations.h"
17
18namespace SkSL {
19
Ethan Nicholasc9472af2017-10-10 16:30:21 -040020HCodeGenerator::HCodeGenerator(const Context* context, const Program* program,
21 ErrorReporter* errors, String name, OutputStream* out)
Ethan Nicholas762466e2017-06-29 10:03:38 -040022: INHERITED(program, errors, out)
Ethan Nicholasc9472af2017-10-10 16:30:21 -040023, fContext(*context)
Ethan Nicholas762466e2017-06-29 10:03:38 -040024, fName(std::move(name))
25, fFullName(String::printf("Gr%s", fName.c_str()))
26, fSectionAndParameterHelper(*program, *errors) {}
27
Ethan Nicholasd608c092017-10-26 09:30:08 -040028String HCodeGenerator::ParameterType(const Context& context, const Type& type,
29 const Layout& layout) {
30 if (layout.fCType != "") {
31 return layout.fCType;
32 } else if (type == *context.fFloat_Type || type == *context.fHalf_Type) {
Ethan Nicholasf7b88202017-09-18 14:10:39 -040033 return "float";
Ethan Nicholasc9472af2017-10-10 16:30:21 -040034 } else if (type == *context.fFloat2_Type || type == *context.fHalf2_Type) {
Ethan Nicholas762466e2017-06-29 10:03:38 -040035 return "SkPoint";
Ethan Nicholasc9472af2017-10-10 16:30:21 -040036 } else if (type == *context.fInt4_Type || type == *context.fShort4_Type) {
Ethan Nicholas762466e2017-06-29 10:03:38 -040037 return "SkIRect";
Ethan Nicholasc9472af2017-10-10 16:30:21 -040038 } else if (type == *context.fFloat4_Type || type == *context.fHalf4_Type) {
Ethan Nicholas762466e2017-06-29 10:03:38 -040039 return "SkRect";
Ethan Nicholasc9472af2017-10-10 16:30:21 -040040 } else if (type == *context.fFloat4x4_Type || type == *context.fHalf4x4_Type) {
Ethan Nicholas762466e2017-06-29 10:03:38 -040041 return "SkMatrix44";
42 } else if (type.kind() == Type::kSampler_Kind) {
43 return "sk_sp<GrTextureProxy>";
Ethan Nicholasc9472af2017-10-10 16:30:21 -040044 } else if (type == *context.fFragmentProcessor_Type) {
45 return "std::unique_ptr<GrFragmentProcessor>";
Ethan Nicholas762466e2017-06-29 10:03:38 -040046 }
47 return type.name();
48}
49
Ethan Nicholasd608c092017-10-26 09:30:08 -040050String HCodeGenerator::FieldType(const Context& context, const Type& type,
51 const Layout& layout) {
Ethan Nicholas762466e2017-06-29 10:03:38 -040052 if (type.kind() == Type::kSampler_Kind) {
53 return "TextureSampler";
Ethan Nicholasc9472af2017-10-10 16:30:21 -040054 } else if (type == *context.fFragmentProcessor_Type) {
55 // we don't store fragment processors in fields, they get registered via
56 // registerChildProcessor instead
Ethan Nicholasd9d33c32018-06-12 11:05:59 -040057 SkASSERT(false);
Ethan Nicholasc9472af2017-10-10 16:30:21 -040058 return "<error>";
Ethan Nicholas762466e2017-06-29 10:03:38 -040059 }
Ethan Nicholasd608c092017-10-26 09:30:08 -040060 return ParameterType(context, type, layout);
Ethan Nicholas762466e2017-06-29 10:03:38 -040061}
62
63void HCodeGenerator::writef(const char* s, va_list va) {
64 static constexpr int BUFFER_SIZE = 1024;
Ethan Nicholas9fb036f2017-07-05 16:19:09 -040065 va_list copy;
66 va_copy(copy, va);
Ethan Nicholas762466e2017-06-29 10:03:38 -040067 char buffer[BUFFER_SIZE];
68 int length = vsnprintf(buffer, BUFFER_SIZE, s, va);
69 if (length < BUFFER_SIZE) {
70 fOut->write(buffer, length);
71 } else {
72 std::unique_ptr<char[]> heap(new char[length + 1]);
Ethan Nicholas9fb036f2017-07-05 16:19:09 -040073 vsprintf(heap.get(), s, copy);
Ethan Nicholas762466e2017-06-29 10:03:38 -040074 fOut->write(heap.get(), length);
75 }
76}
77
78void HCodeGenerator::writef(const char* s, ...) {
79 va_list va;
80 va_start(va, s);
81 this->writef(s, va);
82 va_end(va);
83}
84
85bool HCodeGenerator::writeSection(const char* name, const char* prefix) {
Ethan Nicholas68990be2017-07-13 09:36:52 -040086 const Section* s = fSectionAndParameterHelper.getSection(name);
87 if (s) {
88 this->writef("%s%s", prefix, s->fText.c_str());
Ethan Nicholas762466e2017-06-29 10:03:38 -040089 return true;
90 }
91 return false;
92}
93
94void HCodeGenerator::writeExtraConstructorParams(const char* separator) {
95 // super-simple parse, just assume the last token before a comma is the name of a parameter
96 // (which is true as long as there are no multi-parameter template types involved). Will replace
97 // this with something more robust if the need arises.
Ethan Nicholas68990be2017-07-13 09:36:52 -040098 const Section* section = fSectionAndParameterHelper.getSection(CONSTRUCTOR_PARAMS_SECTION);
99 if (section) {
100 const char* s = section->fText.c_str();
Ethan Nicholas762466e2017-06-29 10:03:38 -0400101 #define BUFFER_SIZE 64
102 char lastIdentifier[BUFFER_SIZE];
103 int lastIdentifierLength = 0;
104 bool foundBreak = false;
105 while (*s) {
106 char c = *s;
107 ++s;
108 if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') ||
109 c == '_') {
110 if (foundBreak) {
111 lastIdentifierLength = 0;
112 foundBreak = false;
113 }
Ethan Nicholasd9d33c32018-06-12 11:05:59 -0400114 SkASSERT(lastIdentifierLength < BUFFER_SIZE);
Ethan Nicholas762466e2017-06-29 10:03:38 -0400115 lastIdentifier[lastIdentifierLength] = c;
116 ++lastIdentifierLength;
117 } else {
118 foundBreak = true;
119 if (c == ',') {
Ethan Nicholasd9d33c32018-06-12 11:05:59 -0400120 SkASSERT(lastIdentifierLength < BUFFER_SIZE);
Ethan Nicholas762466e2017-06-29 10:03:38 -0400121 lastIdentifier[lastIdentifierLength] = 0;
122 this->writef("%s%s", separator, lastIdentifier);
123 separator = ", ";
124 } else if (c != ' ' && c != '\t' && c != '\n' && c != '\r') {
125 lastIdentifierLength = 0;
126 }
127 }
128 }
129 if (lastIdentifierLength) {
Ethan Nicholasd9d33c32018-06-12 11:05:59 -0400130 SkASSERT(lastIdentifierLength < BUFFER_SIZE);
Ethan Nicholas762466e2017-06-29 10:03:38 -0400131 lastIdentifier[lastIdentifierLength] = 0;
132 this->writef("%s%s", separator, lastIdentifier);
133 }
134 }
135}
136
137void HCodeGenerator::writeMake() {
138 const char* separator;
139 if (!this->writeSection(MAKE_SECTION)) {
Brian Salomonaff329b2017-08-11 09:40:37 -0400140 this->writef(" static std::unique_ptr<GrFragmentProcessor> Make(");
Ethan Nicholas762466e2017-06-29 10:03:38 -0400141 separator = "";
Ethan Nicholas68990be2017-07-13 09:36:52 -0400142 for (const auto& param : fSectionAndParameterHelper.getParameters()) {
Ethan Nicholasd608c092017-10-26 09:30:08 -0400143 this->writef("%s%s %s", separator, ParameterType(fContext, param->fType,
144 param->fModifiers.fLayout).c_str(),
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700145 String(param->fName).c_str());
Ethan Nicholas762466e2017-06-29 10:03:38 -0400146 separator = ", ";
147 }
148 this->writeSection(CONSTRUCTOR_PARAMS_SECTION, separator);
149 this->writef(") {\n"
Brian Salomonaff329b2017-08-11 09:40:37 -0400150 " return std::unique_ptr<GrFragmentProcessor>(new %s(",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400151 fFullName.c_str());
152 separator = "";
Ethan Nicholas68990be2017-07-13 09:36:52 -0400153 for (const auto& param : fSectionAndParameterHelper.getParameters()) {
Ethan Nicholasc9472af2017-10-10 16:30:21 -0400154 if (param->fType == *fContext.fFragmentProcessor_Type) {
Robert Phillips7a59f232017-11-08 15:31:30 -0500155 this->writef("%sstd::move(%s)", separator, String(param->fName).c_str());
Ethan Nicholasc9472af2017-10-10 16:30:21 -0400156 } else {
157 this->writef("%s%s", separator, String(param->fName).c_str());
158 }
Ethan Nicholas762466e2017-06-29 10:03:38 -0400159 separator = ", ";
160 }
161 this->writeExtraConstructorParams(separator);
162 this->writef("));\n"
163 " }\n");
164 }
165}
166
Ethan Nicholas68990be2017-07-13 09:36:52 -0400167void HCodeGenerator::failOnSection(const char* section, const char* msg) {
168 std::vector<const Section*> s = fSectionAndParameterHelper.getSections(section);
169 if (s.size()) {
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700170 fErrors.error(s[0]->fOffset, String("@") + section + " " + msg);
Ethan Nicholas68990be2017-07-13 09:36:52 -0400171 }
172}
173
Ethan Nicholas762466e2017-06-29 10:03:38 -0400174void HCodeGenerator::writeConstructor() {
175 if (this->writeSection(CONSTRUCTOR_SECTION)) {
Ethan Nicholas68990be2017-07-13 09:36:52 -0400176 const char* msg = "may not be present when constructor is overridden";
177 this->failOnSection(CONSTRUCTOR_CODE_SECTION, msg);
178 this->failOnSection(CONSTRUCTOR_PARAMS_SECTION, msg);
Ethan Nicholas68990be2017-07-13 09:36:52 -0400179 this->failOnSection(INITIALIZERS_SECTION, msg);
180 this->failOnSection(OPTIMIZATION_FLAGS_SECTION, msg);
Robert Phillips1e8501e2018-03-23 15:00:20 -0400181 return;
Ethan Nicholas762466e2017-06-29 10:03:38 -0400182 }
183 this->writef(" %s(", fFullName.c_str());
184 const char* separator = "";
Ethan Nicholas68990be2017-07-13 09:36:52 -0400185 for (const auto& param : fSectionAndParameterHelper.getParameters()) {
Ethan Nicholasd608c092017-10-26 09:30:08 -0400186 this->writef("%s%s %s", separator, ParameterType(fContext, param->fType,
187 param->fModifiers.fLayout).c_str(),
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700188 String(param->fName).c_str());
Ethan Nicholas762466e2017-06-29 10:03:38 -0400189 separator = ", ";
190 }
191 this->writeSection(CONSTRUCTOR_PARAMS_SECTION, separator);
192 this->writef(")\n"
Ethan Nicholasabff9562017-10-09 10:54:08 -0400193 " : INHERITED(k%s_ClassID", fFullName.c_str());
194 if (!this->writeSection(OPTIMIZATION_FLAGS_SECTION, ", (OptimizationFlags) ")) {
195 this->writef(", kNone_OptimizationFlags");
Ethan Nicholas762466e2017-06-29 10:03:38 -0400196 }
197 this->writef(")");
198 this->writeSection(INITIALIZERS_SECTION, "\n , ");
Ethan Nicholas68990be2017-07-13 09:36:52 -0400199 for (const auto& param : fSectionAndParameterHelper.getParameters()) {
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700200 String nameString(param->fName);
201 const char* name = nameString.c_str();
Ethan Nicholas762466e2017-06-29 10:03:38 -0400202 if (param->fType.kind() == Type::kSampler_Kind) {
Ethan Nicholas68990be2017-07-13 09:36:52 -0400203 this->writef("\n , %s(std::move(%s)", FieldName(name).c_str(), name);
204 for (const Section* s : fSectionAndParameterHelper.getSections(
205 SAMPLER_PARAMS_SECTION)) {
206 if (s->fArgument == name) {
207 this->writef(", %s", s->fText.c_str());
208 }
209 }
210 this->writef(")");
Ethan Nicholasc9472af2017-10-10 16:30:21 -0400211 } else if (param->fType == *fContext.fFragmentProcessor_Type) {
212 // do nothing
Ethan Nicholas762466e2017-06-29 10:03:38 -0400213 } else {
214 this->writef("\n , %s(%s)", FieldName(name).c_str(), name);
215 }
216 }
Ethan Nicholas68990be2017-07-13 09:36:52 -0400217 for (const Section* s : fSectionAndParameterHelper.getSections(COORD_TRANSFORM_SECTION)) {
218 String field = FieldName(s->fArgument.c_str());
219 this->writef("\n , %sCoordTransform(%s, %s.proxy())", field.c_str(), s->fText.c_str(),
220 field.c_str());
221 }
Ethan Nicholas762466e2017-06-29 10:03:38 -0400222 this->writef(" {\n");
223 this->writeSection(CONSTRUCTOR_CODE_SECTION);
Ethan Nicholas68990be2017-07-13 09:36:52 -0400224 for (const auto& param : fSectionAndParameterHelper.getParameters()) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400225 if (param->fType.kind() == Type::kSampler_Kind) {
226 this->writef(" this->addTextureSampler(&%s);\n",
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700227 FieldName(String(param->fName).c_str()).c_str());
Ethan Nicholasc9472af2017-10-10 16:30:21 -0400228 } else if (param->fType == *fContext.fFragmentProcessor_Type) {
229 this->writef(" this->registerChildProcessor(std::move(%s));",
230 String(param->fName).c_str());
Ethan Nicholas762466e2017-06-29 10:03:38 -0400231 }
232 }
Ethan Nicholas68990be2017-07-13 09:36:52 -0400233 for (const Section* s : fSectionAndParameterHelper.getSections(COORD_TRANSFORM_SECTION)) {
234 String field = FieldName(s->fArgument.c_str());
235 this->writef(" this->addCoordTransform(&%sCoordTransform);\n", field.c_str());
236 }
Ethan Nicholasabff9562017-10-09 10:54:08 -0400237 this->writef(" }\n");
Ethan Nicholas762466e2017-06-29 10:03:38 -0400238}
239
240void HCodeGenerator::writeFields() {
241 this->writeSection(FIELDS_SECTION);
Ethan Nicholas68990be2017-07-13 09:36:52 -0400242 for (const auto& param : fSectionAndParameterHelper.getParameters()) {
Ethan Nicholasc9472af2017-10-10 16:30:21 -0400243 if (param->fType == *fContext.fFragmentProcessor_Type) {
244 continue;
245 }
Ethan Nicholasd608c092017-10-26 09:30:08 -0400246 this->writef(" %s %s;\n", FieldType(fContext, param->fType,
247 param->fModifiers.fLayout).c_str(),
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700248 FieldName(String(param->fName).c_str()).c_str());
Ethan Nicholas762466e2017-06-29 10:03:38 -0400249 }
Ethan Nicholas68990be2017-07-13 09:36:52 -0400250 for (const Section* s : fSectionAndParameterHelper.getSections(COORD_TRANSFORM_SECTION)) {
251 this->writef(" GrCoordTransform %sCoordTransform;\n",
252 FieldName(s->fArgument.c_str()).c_str());
253 }
Ethan Nicholas762466e2017-06-29 10:03:38 -0400254}
255
Ethan Nicholas130fb3f2018-02-01 12:14:34 -0500256String HCodeGenerator::GetHeader(const Program& program, ErrorReporter& errors) {
257 SymbolTable types(&errors);
258 Parser parser(program.fSource->c_str(), program.fSource->length(), types, errors);
259 for (;;) {
260 Token header = parser.nextRawToken();
261 switch (header.fKind) {
262 case Token::WHITESPACE:
263 break;
264 case Token::BLOCK_COMMENT:
265 return String(program.fSource->c_str() + header.fOffset, header.fLength);
266 default:
267 return "";
268 }
269 }
270}
271
Ethan Nicholas762466e2017-06-29 10:03:38 -0400272bool HCodeGenerator::generateCode() {
Ethan Nicholas130fb3f2018-02-01 12:14:34 -0500273 this->writef("%s\n", GetHeader(fProgram, fErrors).c_str());
Ethan Nicholas762466e2017-06-29 10:03:38 -0400274 this->writef(kFragmentProcessorHeader, fFullName.c_str());
275 this->writef("#ifndef %s_DEFINED\n"
Ethan Nicholas9fb036f2017-07-05 16:19:09 -0400276 "#define %s_DEFINED\n",
277 fFullName.c_str(),
278 fFullName.c_str());
Greg Daniel3e8c3452018-04-06 10:37:55 -0400279 this->writef("#include \"SkTypes.h\"\n");
Ethan Nicholas762466e2017-06-29 10:03:38 -0400280 this->writeSection(HEADER_SECTION);
Ethan Nicholas9fb036f2017-07-05 16:19:09 -0400281 this->writef("#include \"GrFragmentProcessor.h\"\n"
Brian Osman1cb41712017-10-19 12:54:52 -0400282 "#include \"GrCoordTransform.h\"\n");
Ethan Nicholas762466e2017-06-29 10:03:38 -0400283 this->writef("class %s : public GrFragmentProcessor {\n"
284 "public:\n",
285 fFullName.c_str());
Ethan Nicholas3c6ae622018-04-24 13:06:09 -0400286 for (const auto& p : fProgram) {
287 if (ProgramElement::kEnum_Kind == p.fKind && !((Enum&) p).fBuiltin) {
288 this->writef("%s\n", p.description().c_str());
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500289 }
290 }
Ethan Nicholase9d172a2017-11-20 12:12:24 -0500291 this->writeSection(CLASS_SECTION);
Ethan Nicholas68990be2017-07-13 09:36:52 -0400292 for (const auto& param : fSectionAndParameterHelper.getParameters()) {
Ethan Nicholasc9472af2017-10-10 16:30:21 -0400293 if (param->fType.kind() == Type::kSampler_Kind ||
294 param->fType.kind() == Type::kOther_Kind) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400295 continue;
296 }
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700297 String nameString(param->fName);
298 const char* name = nameString.c_str();
Ethan Nicholas9fb036f2017-07-05 16:19:09 -0400299 this->writef(" %s %s() const { return %s; }\n",
Ethan Nicholasd608c092017-10-26 09:30:08 -0400300 FieldType(fContext, param->fType, param->fModifiers.fLayout).c_str(), name,
301 FieldName(name).c_str());
Ethan Nicholas762466e2017-06-29 10:03:38 -0400302 }
303 this->writeMake();
Ethan Nicholasf57c0d62017-07-31 11:18:22 -0400304 this->writef(" %s(const %s& src);\n"
Brian Salomonaff329b2017-08-11 09:40:37 -0400305 " std::unique_ptr<GrFragmentProcessor> clone() const override;\n"
Ethan Nicholasf57c0d62017-07-31 11:18:22 -0400306 " const char* name() const override { return \"%s\"; }\n"
Ethan Nicholas762466e2017-06-29 10:03:38 -0400307 "private:\n",
Ethan Nicholasf57c0d62017-07-31 11:18:22 -0400308 fFullName.c_str(), fFullName.c_str(), fName.c_str());
Ethan Nicholas762466e2017-06-29 10:03:38 -0400309 this->writeConstructor();
310 this->writef(" GrGLSLFragmentProcessor* onCreateGLSLInstance() const override;\n"
311 " void onGetGLSLProcessorKey(const GrShaderCaps&,"
312 "GrProcessorKeyBuilder*) const override;\n"
313 " bool onIsEqual(const GrFragmentProcessor&) const override;\n"
Brian Salomon0c26a9d2017-07-06 10:09:38 -0400314 " GR_DECLARE_FRAGMENT_PROCESSOR_TEST\n");
Ethan Nicholas762466e2017-06-29 10:03:38 -0400315 this->writeFields();
316 this->writef(" typedef GrFragmentProcessor INHERITED;\n"
Ethan Nicholas9fb036f2017-07-05 16:19:09 -0400317 "};\n");
318 this->writeSection(HEADER_END_SECTION);
Greg Daniel3e8c3452018-04-06 10:37:55 -0400319 this->writef("#endif\n");
Ethan Nicholas762466e2017-06-29 10:03:38 -0400320 return 0 == fErrors.errorCount();
321}
322
323} // namespace