2019-03-21 15:05:37 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2019 Google LLC
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-05-24 16:46:34 +00:00
|
|
|
#include "include/core/SkPoint3.h"
|
2019-06-14 14:17:16 +00:00
|
|
|
#include "src/sksl/SkSLByteCode.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/sksl/SkSLCompiler.h"
|
2019-05-15 19:29:54 +00:00
|
|
|
#include "src/sksl/SkSLExternalValue.h"
|
|
|
|
#include "src/utils/SkJSON.h"
|
2019-03-21 15:05:37 +00:00
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tests/Test.h"
|
2019-03-21 15:05:37 +00:00
|
|
|
|
2019-06-14 14:17:16 +00:00
|
|
|
void test(skiatest::Reporter* r, const char* src, float* in, int expectedCount, float* expected) {
|
2019-04-23 17:31:09 +00:00
|
|
|
SkSL::Compiler compiler;
|
|
|
|
SkSL::Program::Settings settings;
|
|
|
|
std::unique_ptr<SkSL::Program> program = compiler.convertProgram(
|
|
|
|
SkSL::Program::kGeneric_Kind,
|
|
|
|
SkSL::String(src), settings);
|
|
|
|
REPORTER_ASSERT(r, program);
|
|
|
|
if (program) {
|
|
|
|
std::unique_ptr<SkSL::ByteCode> byteCode = compiler.toByteCode(*program);
|
2019-06-07 17:00:23 +00:00
|
|
|
program.reset();
|
2019-04-23 17:31:09 +00:00
|
|
|
REPORTER_ASSERT(r, !compiler.errorCount());
|
|
|
|
if (compiler.errorCount() > 0) {
|
|
|
|
printf("%s\n%s", src, compiler.errorText().c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SkSL::ByteCodeFunction* main = byteCode->fFunctions[0].get();
|
2019-06-14 14:17:16 +00:00
|
|
|
std::unique_ptr<float[]> out = std::unique_ptr<float[]>(new float[expectedCount]);
|
|
|
|
byteCode->run(main, in, out.get(), 1, nullptr, 0);
|
|
|
|
bool valid = !memcmp(out.get(), expected, sizeof(float) * expectedCount);
|
2019-04-23 17:31:09 +00:00
|
|
|
if (!valid) {
|
|
|
|
printf("for program: %s\n", src);
|
|
|
|
printf(" expected (");
|
|
|
|
const char* separator = "";
|
|
|
|
for (int i = 0; i < expectedCount; ++i) {
|
2019-06-14 14:17:16 +00:00
|
|
|
printf("%s%f", separator, expected[i]);
|
2019-04-23 17:31:09 +00:00
|
|
|
separator = ", ";
|
|
|
|
}
|
|
|
|
printf("), but received (");
|
|
|
|
separator = "";
|
|
|
|
for (int i = 0; i < expectedCount; ++i) {
|
2019-06-14 14:17:16 +00:00
|
|
|
printf("%s%f", separator, out.get()[i]);
|
2019-04-23 17:31:09 +00:00
|
|
|
separator = ", ";
|
|
|
|
}
|
|
|
|
printf(")\n");
|
2019-06-14 14:17:16 +00:00
|
|
|
main->disassemble();
|
2019-04-23 17:31:09 +00:00
|
|
|
}
|
|
|
|
REPORTER_ASSERT(r, valid);
|
|
|
|
} else {
|
|
|
|
printf("%s\n%s", src, compiler.errorText().c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-13 15:23:57 +00:00
|
|
|
void vec_test(skiatest::Reporter* r, const char* src) {
|
|
|
|
// Test on four different vectors (with varying orderings to get divergent control flow)
|
|
|
|
const float input[16] = { 1, 2, 3, 4,
|
|
|
|
4, 3, 2, 1,
|
|
|
|
7, 5, 8, 6,
|
|
|
|
6, 8, 5, 7 };
|
|
|
|
|
2019-06-14 14:17:16 +00:00
|
|
|
SkSL::Compiler compiler;
|
|
|
|
std::unique_ptr<SkSL::Program> program = compiler.convertProgram(
|
|
|
|
SkSL::Program::kGeneric_Kind, SkSL::String(src), SkSL::Program::Settings());
|
|
|
|
if (!program) {
|
|
|
|
REPORT_FAILURE(r, "!program", SkString(compiler.errorText().c_str()));
|
|
|
|
return;
|
|
|
|
}
|
2019-06-13 15:23:57 +00:00
|
|
|
|
2019-06-14 14:17:16 +00:00
|
|
|
std::unique_ptr<SkSL::ByteCode> byteCode = compiler.toByteCode(*program);
|
|
|
|
if (compiler.errorCount() > 0) {
|
|
|
|
REPORT_FAILURE(r, "!toByteCode", SkString(compiler.errorText().c_str()));
|
|
|
|
return;
|
|
|
|
}
|
2019-06-13 15:23:57 +00:00
|
|
|
|
2019-06-14 14:17:16 +00:00
|
|
|
const SkSL::ByteCodeFunction* main = byteCode->getFunction("main");
|
2019-06-13 15:23:57 +00:00
|
|
|
|
2019-06-14 14:17:16 +00:00
|
|
|
float out_s[16], out_v[16];
|
|
|
|
memcpy(out_s, input, sizeof(out_s));
|
|
|
|
memcpy(out_v, input, sizeof(out_v));
|
2019-06-13 15:23:57 +00:00
|
|
|
|
2019-06-14 14:17:16 +00:00
|
|
|
// First run in scalar mode to determine the expected output
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
byteCode->run(main, out_s + i * 4, nullptr, 1, nullptr, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now run in parallel and compare results
|
|
|
|
byteCode->run(main, out_v, nullptr, 4, nullptr, 0);
|
|
|
|
if (memcmp(out_s, out_v, sizeof(out_s)) != 0) {
|
|
|
|
printf("for program: %s\n", src);
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
printf("(%g %g %g %g) -> (%g %g %g %g), expected (%g %g %g %g)\n",
|
|
|
|
input[4*i + 0], input[4*i + 1], input[4*i + 2], input[4*i + 3],
|
|
|
|
out_v[4*i + 0], out_v[4*i + 1], out_v[4*i + 2], out_v[4*i + 3],
|
|
|
|
out_s[4*i + 0], out_s[4*i + 1], out_s[4*i + 2], out_s[4*i + 3]);
|
2019-06-13 15:23:57 +00:00
|
|
|
}
|
2019-06-14 14:17:16 +00:00
|
|
|
main->disassemble();
|
|
|
|
REPORT_FAILURE(r, "VecInterpreter mismatch", SkString());
|
2019-06-13 15:23:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-21 15:05:37 +00:00
|
|
|
void test(skiatest::Reporter* r, const char* src, float inR, float inG, float inB, float inA,
|
2019-06-14 14:17:16 +00:00
|
|
|
float expectedR, float expectedG, float expectedB, float expectedA) {
|
2019-03-21 15:05:37 +00:00
|
|
|
SkSL::Compiler compiler;
|
|
|
|
SkSL::Program::Settings settings;
|
|
|
|
std::unique_ptr<SkSL::Program> program = compiler.convertProgram(
|
2019-04-23 17:31:09 +00:00
|
|
|
SkSL::Program::kGeneric_Kind,
|
2019-03-21 15:05:37 +00:00
|
|
|
SkSL::String(src), settings);
|
|
|
|
REPORTER_ASSERT(r, program);
|
|
|
|
if (program) {
|
|
|
|
std::unique_ptr<SkSL::ByteCode> byteCode = compiler.toByteCode(*program);
|
2019-06-07 17:00:23 +00:00
|
|
|
program.reset();
|
2019-03-21 15:05:37 +00:00
|
|
|
REPORTER_ASSERT(r, !compiler.errorCount());
|
|
|
|
if (compiler.errorCount() > 0) {
|
|
|
|
printf("%s\n%s", src, compiler.errorText().c_str());
|
|
|
|
return;
|
|
|
|
}
|
2019-06-13 15:23:57 +00:00
|
|
|
const SkSL::ByteCodeFunction* main = byteCode->getFunction("main");
|
2019-03-21 15:05:37 +00:00
|
|
|
float inoutColor[4] = { inR, inG, inB, inA };
|
2019-06-14 14:17:16 +00:00
|
|
|
byteCode->run(main, inoutColor, nullptr, 1, nullptr, 0);
|
2019-03-21 15:05:37 +00:00
|
|
|
if (inoutColor[0] != expectedR || inoutColor[1] != expectedG ||
|
|
|
|
inoutColor[2] != expectedB || inoutColor[3] != expectedA) {
|
|
|
|
printf("for program: %s\n", src);
|
|
|
|
printf(" expected (%f, %f, %f, %f), but received (%f, %f, %f, %f)\n", expectedR,
|
|
|
|
expectedG, expectedB, expectedA, inoutColor[0], inoutColor[1], inoutColor[2],
|
|
|
|
inoutColor[3]);
|
2019-06-14 14:17:16 +00:00
|
|
|
main->disassemble();
|
2019-03-21 15:05:37 +00:00
|
|
|
}
|
|
|
|
REPORTER_ASSERT(r, inoutColor[0] == expectedR);
|
|
|
|
REPORTER_ASSERT(r, inoutColor[1] == expectedG);
|
|
|
|
REPORTER_ASSERT(r, inoutColor[2] == expectedB);
|
|
|
|
REPORTER_ASSERT(r, inoutColor[3] == expectedA);
|
|
|
|
} else {
|
|
|
|
printf("%s\n%s", src, compiler.errorText().c_str());
|
|
|
|
}
|
2019-06-13 15:23:57 +00:00
|
|
|
|
|
|
|
// Do additional testing of 4x1 vs 1x4 to stress divergent control flow, etc.
|
|
|
|
vec_test(r, src);
|
2019-03-21 15:05:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterAdd, r) {
|
|
|
|
test(r, "void main(inout half4 color) { color.r = color.r + color.g; }", 0.25, 0.75, 0, 0, 1,
|
|
|
|
0.75, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { color += half4(1, 2, 3, 4); }", 4, 3, 2, 1, 5, 5, 5, 5);
|
|
|
|
test(r, "void main(inout half4 color) { half4 c = color; color += c; }", 0.25, 0.5, 0.75, 1,
|
|
|
|
0.5, 1, 1.5, 2);
|
|
|
|
test(r, "void main(inout half4 color) { int a = 1; int b = 3; color.r = a + b; }", 1, 2, 3, 4,
|
|
|
|
4, 2, 3, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterSubtract, r) {
|
|
|
|
test(r, "void main(inout half4 color) { color.r = color.r - color.g; }", 1, 0.75, 0, 0, 0.25,
|
|
|
|
0.75, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { color -= half4(1, 2, 3, 4); }", 5, 5, 5, 5, 4, 3, 2, 1);
|
|
|
|
test(r, "void main(inout half4 color) { half4 c = color; color -= c; }", 4, 3, 2, 1,
|
|
|
|
0, 0, 0, 0);
|
2019-05-07 20:13:02 +00:00
|
|
|
test(r, "void main(inout half4 color) { color.x = -color.x; }", 4, 3, 2, 1, -4, 3, 2, 1);
|
|
|
|
test(r, "void main(inout half4 color) { color = -color; }", 4, 3, 2, 1, -4, -3, -2, -1);
|
2019-03-21 15:05:37 +00:00
|
|
|
test(r, "void main(inout half4 color) { int a = 3; int b = 1; color.r = a - b; }", 0, 0, 0, 0,
|
|
|
|
2, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterMultiply, r) {
|
|
|
|
test(r, "void main(inout half4 color) { color.r = color.r * color.g; }", 2, 3, 0, 0, 6, 3, 0,
|
|
|
|
0);
|
|
|
|
test(r, "void main(inout half4 color) { color *= half4(1, 2, 3, 4); }", 2, 3, 4, 5, 2, 6, 12,
|
|
|
|
20);
|
|
|
|
test(r, "void main(inout half4 color) { half4 c = color; color *= c; }", 4, 3, 2, 1,
|
|
|
|
16, 9, 4, 1);
|
|
|
|
test(r, "void main(inout half4 color) { int a = 3; int b = -2; color.r = a * b; }", 0, 0, 0, 0,
|
|
|
|
-6, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterDivide, r) {
|
|
|
|
test(r, "void main(inout half4 color) { color.r = color.r / color.g; }", 1, 2, 0, 0, 0.5, 2, 0,
|
|
|
|
0);
|
|
|
|
test(r, "void main(inout half4 color) { color /= half4(1, 2, 3, 4); }", 12, 12, 12, 12, 12, 6,
|
|
|
|
4, 3);
|
|
|
|
test(r, "void main(inout half4 color) { half4 c = color; color /= c; }", 4, 3, 2, 1,
|
|
|
|
1, 1, 1, 1);
|
|
|
|
test(r, "void main(inout half4 color) { int a = 8; int b = -2; color.r = a / b; }", 0, 0, 0, 0,
|
|
|
|
-4, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterRemainder, r) {
|
2019-05-08 13:24:46 +00:00
|
|
|
test(r, "void main(inout half4 color) { color.r = color.r % color.g; }", 3.125, 2, 0, 0,
|
|
|
|
1.125, 2, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { color %= half4(1, 2, 3, 4); }", 9.5, 9.5, 9.5, 9.5,
|
|
|
|
0.5, 1.5, 0.5, 1.5);
|
2019-03-21 15:05:37 +00:00
|
|
|
test(r, "void main(inout half4 color) { int a = 8; int b = 3; a %= b; color.r = a; }", 0, 0, 0,
|
|
|
|
0, 2, 0, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { int a = 8; int b = 3; color.r = a % b; }", 0, 0, 0, 0,
|
|
|
|
2, 0, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { int2 a = int2(8, 10); a %= 6; color.rg = a; }", 0, 0, 0,
|
|
|
|
0, 2, 4, 0, 0);
|
|
|
|
}
|
|
|
|
|
2019-05-28 21:16:03 +00:00
|
|
|
DEF_TEST(SkSLInterpreterMatrix, r) {
|
2019-06-14 14:17:16 +00:00
|
|
|
float in[16];
|
|
|
|
float expected[16];
|
2019-05-28 21:16:03 +00:00
|
|
|
|
|
|
|
// Constructing matrix from scalar produces a diagonal matrix
|
|
|
|
in[0] = 1.0f;
|
|
|
|
expected[0] = 2.0f;
|
|
|
|
test(r, "float main(float x) { float4x4 m = float4x4(x); return m[1][1] + m[1][2] + m[2][2]; }",
|
|
|
|
in, 1, expected);
|
|
|
|
|
|
|
|
// With non-square matrix
|
|
|
|
test(r, "float main(float x) { float3x2 m = float3x2(x); return m[0][0] + m[1][1] + m[2][1]; }",
|
|
|
|
in, 1, expected);
|
|
|
|
|
|
|
|
// Constructing from a different-sized matrix fills the remaining space with the identity matrix
|
|
|
|
test(r, "float main(float x) {"
|
|
|
|
"float3x2 m = float3x2(x);"
|
|
|
|
"float4x4 m2 = float4x4(m);"
|
|
|
|
"return m2[0][0] + m2[3][3]; }",
|
|
|
|
in, 1, expected);
|
|
|
|
|
|
|
|
// Constructing a matrix from vectors or scalars fills in values in column-major order
|
|
|
|
in[0] = 1.0f;
|
|
|
|
in[1] = 2.0f;
|
|
|
|
in[2] = 4.0f;
|
|
|
|
in[3] = 8.0f;
|
|
|
|
expected[0] = 6.0f;
|
|
|
|
test(r, "float main(float4 v) { float2x2 m = float2x2(v); return m[0][1] + m[1][0]; }",
|
|
|
|
in, 1, expected);
|
|
|
|
|
|
|
|
expected[0] = 10.0f;
|
|
|
|
test(r, "float main(float4 v) {"
|
|
|
|
"float2x2 m = float2x2(v.x, v.y, v.w, v.z);"
|
|
|
|
"return m[0][1] + m[1][0]; }",
|
|
|
|
in, 1, expected);
|
|
|
|
|
2019-05-29 19:21:52 +00:00
|
|
|
// Initialize 16 values to be used as inputs to matrix tests
|
|
|
|
for (int i = 0; i < 16; ++i) { in[i] = (float)i; }
|
|
|
|
|
|
|
|
// M+M, M-S, S-M
|
|
|
|
for (int i = 0; i < 16; ++i) { expected[i] = (float)(2 * i); }
|
|
|
|
test(r, "float4x4 main(float4x4 m) { return m + m; }", in, 16, expected);
|
|
|
|
for (int i = 0; i < 16; ++i) { expected[i] = (float)(i + 3); }
|
|
|
|
test(r, "float4x4 main(float4x4 m) { return m + 3.0; }", in, 16, expected);
|
|
|
|
test(r, "float4x4 main(float4x4 m) { return 3.0 + m; }", in, 16, expected);
|
|
|
|
|
|
|
|
// M-M, M-S, S-M
|
|
|
|
for (int i = 0; i < 8; ++i) { expected[i] = 8.0f; }
|
|
|
|
test(r, "float4x2 main(float4x2 m1, float4x2 m2) { return m2 - m1; }", in, 8, expected);
|
|
|
|
for (int i = 0; i < 16; ++i) { expected[i] = (float)(i - 3); }
|
|
|
|
test(r, "float4x4 main(float4x4 m) { return m - 3.0; }", in, 16, expected);
|
|
|
|
for (int i = 0; i < 16; ++i) { expected[i] = (float)(3 - i); }
|
|
|
|
test(r, "float4x4 main(float4x4 m) { return 3.0 - m; }", in, 16, expected);
|
|
|
|
|
|
|
|
// M*S, S*M, M/S, S/M
|
|
|
|
for (int i = 0; i < 16; ++i) { expected[i] = (float)(i * 3); }
|
|
|
|
test(r, "float4x4 main(float4x4 m) { return m * 3.0; }", in, 16, expected);
|
|
|
|
test(r, "float4x4 main(float4x4 m) { return 3.0 * m; }", in, 16, expected);
|
|
|
|
for (int i = 0; i < 16; ++i) { expected[i] = (float)(i) / 2.0f; }
|
|
|
|
test(r, "float4x4 main(float4x4 m) { return m / 2.0; }", in, 16, expected);
|
2019-05-29 21:04:54 +00:00
|
|
|
for (int i = 0; i < 16; ++i) { expected[i] = 1.0f / (float)(i + 1); }
|
|
|
|
test(r, "float4x4 main(float4x4 m) { return 1.0 / (m + 1); }", in, 16, expected);
|
2019-05-29 19:21:52 +00:00
|
|
|
|
2019-05-28 21:16:03 +00:00
|
|
|
#if 0
|
2019-05-29 19:21:52 +00:00
|
|
|
// Matrix negation - legal in GLSL, not in SkSL?
|
|
|
|
for (int i = 0; i < 16; ++i) { expected[i] = (float)(-i); }
|
|
|
|
test(r, "float4x4 main(float4x4 m) { return -m; }", in, 16, expected);
|
|
|
|
#endif
|
2019-05-28 21:16:03 +00:00
|
|
|
|
2019-05-29 19:34:36 +00:00
|
|
|
// M*V, V*M
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
expected[i] = 12.0f*i + 13.0f*(i+4) + 14.0f*(i+8);
|
|
|
|
}
|
|
|
|
test(r, "float4 main(float3x4 m, float3 v) { return m * v; }", in, 4, expected);
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
expected[i] = 12.0f*(3*i) + 13.0f*(3*i+1) + 14.0f*(3*i+2);
|
|
|
|
}
|
|
|
|
test(r, "float4 main(float4x3 m, float3 v) { return v * m; }", in, 4, expected);
|
|
|
|
|
|
|
|
// M*M
|
|
|
|
{
|
|
|
|
SkMatrix44 m;
|
2019-06-14 14:17:16 +00:00
|
|
|
m.setColMajorf(in);
|
2019-05-29 19:34:36 +00:00
|
|
|
SkMatrix44 m2;
|
|
|
|
for (int i = 0; i < 16; ++i) {
|
|
|
|
m2.set(i % 4, i / 4, (i + 4) % 16);
|
|
|
|
}
|
|
|
|
m.setConcat(m, m2);
|
|
|
|
// Rearrange the columns on the RHS so we detect left-hand/right-hand errors
|
|
|
|
test(r, "float4x4 main(float4x4 m) { return m * float4x4(m[1], m[2], m[3], m[0]); }",
|
2019-06-14 14:17:16 +00:00
|
|
|
in, 16, (float*)&m);
|
2019-05-29 19:34:36 +00:00
|
|
|
}
|
2019-05-28 21:16:03 +00:00
|
|
|
}
|
|
|
|
|
2019-05-16 19:38:00 +00:00
|
|
|
DEF_TEST(SkSLInterpreterTernary, r) {
|
|
|
|
test(r, "void main(inout half4 color) { color.r = color.g > color.b ? color.g : color.b; }",
|
|
|
|
0, 1, 2, 0, 2, 1, 2, 0);
|
|
|
|
test(r, "void main(inout half4 color) { color.r = color.g > color.b ? color.g : color.b; }",
|
|
|
|
0, 3, 2, 0, 3, 3, 2, 0);
|
2019-06-13 15:23:57 +00:00
|
|
|
test(r, "int fib(int i) { return (i < 2) ? 1 : fib(i - 1) + fib(i - 2); }"
|
|
|
|
"void main(inout half4 color) { color.r = half(fib(int(color.r))); }",
|
|
|
|
3, 0, 0, 0, 3, 0, 0, 0);
|
2019-05-16 19:38:00 +00:00
|
|
|
}
|
|
|
|
|
2019-05-14 17:37:30 +00:00
|
|
|
DEF_TEST(SkSLInterpreterCast, r) {
|
2019-06-14 14:17:16 +00:00
|
|
|
union Val {
|
|
|
|
float f;
|
|
|
|
uint32_t u;
|
|
|
|
int32_t s;
|
|
|
|
};
|
|
|
|
|
|
|
|
Val input[2];
|
|
|
|
Val expected[2];
|
|
|
|
|
|
|
|
input[0].s = 3;
|
|
|
|
input[1].s = -5;
|
|
|
|
expected[0].f = 3.0f;
|
|
|
|
expected[1].f = -5.0f;
|
|
|
|
test(r, "float main(int x) { return float (x); }", (float*)input, 1, (float*)expected);
|
|
|
|
test(r, "float2 main(int2 x) { return float2(x); }", (float*)input, 2, (float*)expected);
|
|
|
|
|
|
|
|
input[0].u = 3;
|
|
|
|
input[1].u = 5;
|
|
|
|
expected[0].f = 3.0f;
|
|
|
|
expected[1].f = 5.0f;
|
|
|
|
test(r, "float main(uint x) { return float (x); }", (float*)input, 1, (float*)expected);
|
|
|
|
test(r, "float2 main(uint2 x) { return float2(x); }", (float*)input, 2, (float*)expected);
|
|
|
|
|
|
|
|
input[0].f = 3.0f;
|
|
|
|
input[1].f = -5.0f;
|
|
|
|
expected[0].s = 3;
|
|
|
|
expected[1].s = -5;
|
|
|
|
test(r, "int main(float x) { return int (x); }", (float*)input, 1, (float*)expected);
|
|
|
|
test(r, "int2 main(float2 x) { return int2(x); }", (float*)input, 2, (float*)expected);
|
|
|
|
|
|
|
|
input[0].s = 3;
|
|
|
|
expected[0].f = 3.0f;
|
|
|
|
expected[1].f = 3.0f;
|
|
|
|
test(r, "float2 main(int x) { return float2(x); }", (float*)input, 2, (float*)expected);
|
2019-05-14 17:37:30 +00:00
|
|
|
}
|
|
|
|
|
2019-03-21 15:05:37 +00:00
|
|
|
DEF_TEST(SkSLInterpreterIf, r) {
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r > color.g) color.a = 1; }", 5, 3, 0, 0,
|
|
|
|
5, 3, 0, 1);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r > color.g) color.a = 1; }", 5, 5, 0, 0,
|
|
|
|
5, 5, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r > color.g) color.a = 1; }", 5, 6, 0, 0,
|
|
|
|
5, 6, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r < color.g) color.a = 1; }", 3, 5, 0, 0,
|
|
|
|
3, 5, 0, 1);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r < color.g) color.a = 1; }", 5, 5, 0, 0,
|
|
|
|
5, 5, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r < color.g) color.a = 1; }", 6, 5, 0, 0,
|
|
|
|
6, 5, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r >= color.g) color.a = 1; }", 5, 3, 0, 0,
|
|
|
|
5, 3, 0, 1);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r >= color.g) color.a = 1; }", 5, 5, 0, 0,
|
|
|
|
5, 5, 0, 1);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r >= color.g) color.a = 1; }", 5, 6, 0, 0,
|
|
|
|
5, 6, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r <= color.g) color.a = 1; }", 3, 5, 0, 0,
|
|
|
|
3, 5, 0, 1);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r <= color.g) color.a = 1; }", 5, 5, 0, 0,
|
|
|
|
5, 5, 0, 1);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r <= color.g) color.a = 1; }", 6, 5, 0, 0,
|
|
|
|
6, 5, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r == color.g) color.a = 1; }", 2, 2, 0, 0,
|
|
|
|
2, 2, 0, 1);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r == color.g) color.a = 1; }", 2, -2, 0, 0,
|
|
|
|
2, -2, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r != color.g) color.a = 1; }", 2, 2, 0, 0,
|
|
|
|
2, 2, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r != color.g) color.a = 1; }", 2, -2, 0, 0,
|
|
|
|
2, -2, 0, 1);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r == color.g) color.a = 1; else "
|
|
|
|
"color.a = 2; }", 1, 1, 0, 0, 1, 1, 0, 1);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.r == color.g) color.a = 1; else "
|
|
|
|
"color.a = 2; }", 2, -2, 0, 0, 2, -2, 0, 2);
|
|
|
|
}
|
|
|
|
|
2019-05-29 15:19:00 +00:00
|
|
|
DEF_TEST(SkSLInterpreterIfVector, r) {
|
|
|
|
test(r, "void main(inout half4 color) { if (color.rg == color.ba) color.a = 1; }",
|
|
|
|
1, 2, 1, 2, 1, 2, 1, 1);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.rg == color.ba) color.a = 1; }",
|
|
|
|
1, 2, 3, 2, 1, 2, 3, 2);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.rg != color.ba) color.a = 1; }",
|
|
|
|
1, 2, 1, 2, 1, 2, 1, 2);
|
|
|
|
test(r, "void main(inout half4 color) { if (color.rg != color.ba) color.a = 1; }",
|
|
|
|
1, 2, 3, 2, 1, 2, 3, 1);
|
|
|
|
}
|
|
|
|
|
2019-03-21 15:05:37 +00:00
|
|
|
DEF_TEST(SkSLInterpreterWhile, r) {
|
|
|
|
test(r, "void main(inout half4 color) { while (color.r < 1) color.r += 0.25; }", 0, 0, 0, 0, 1,
|
|
|
|
0, 0, 0);
|
2019-06-13 15:23:57 +00:00
|
|
|
test(r, "void main(inout half4 color) { while (color.r > 1) color.r -= 0.25; }", 0, 0, 0, 0, 0,
|
2019-03-21 15:05:37 +00:00
|
|
|
0, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) { while (true) { color.r += 0.5; "
|
2019-06-13 15:23:57 +00:00
|
|
|
"if (color.r > 5) break; } }", 0, 0, 0, 0, 5.5, 0, 0, 0);
|
2019-03-21 15:05:37 +00:00
|
|
|
test(r, "void main(inout half4 color) { while (color.r < 10) { color.r += 0.5; "
|
|
|
|
"if (color.r < 5) continue; break; } }", 0, 0, 0, 0, 5, 0, 0, 0);
|
2019-06-19 15:00:28 +00:00
|
|
|
test(r,
|
|
|
|
"void main(inout half4 color) {"
|
|
|
|
" while (true) {"
|
|
|
|
" if (color.r > 4) { break; }"
|
|
|
|
" while (true) { color.a = 1; break; }"
|
|
|
|
" break;"
|
|
|
|
" }"
|
|
|
|
"}",
|
|
|
|
6, 5, 4, 3, 6, 5, 4, 3);
|
2019-03-21 15:05:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterDo, r) {
|
|
|
|
test(r, "void main(inout half4 color) { do color.r += 0.25; while (color.r < 1); }", 0, 0, 0, 0,
|
|
|
|
1, 0, 0, 0);
|
2019-06-13 15:23:57 +00:00
|
|
|
test(r, "void main(inout half4 color) { do color.r -= 0.25; while (color.r > 1); }", 0, 0, 0, 0,
|
|
|
|
-0.25, 0, 0, 0);
|
2019-03-21 15:05:37 +00:00
|
|
|
test(r, "void main(inout half4 color) { do { color.r += 0.5; if (color.r > 1) break; } while "
|
|
|
|
"(true); }", 0, 0, 0, 0, 1.5, 0, 0, 0);
|
|
|
|
test(r, "void main(inout half4 color) {do { color.r += 0.5; if (color.r < 5) "
|
|
|
|
"continue; if (color.r >= 5) break; } while (true); }", 0, 0, 0, 0, 5, 0, 0, 0);
|
2019-05-13 18:19:12 +00:00
|
|
|
test(r, "void main(inout half4 color) { do { color.r += 0.5; } while (false); }",
|
|
|
|
0, 0, 0, 0, 0.5, 0, 0, 0);
|
2019-03-21 15:05:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterFor, r) {
|
|
|
|
test(r, "void main(inout half4 color) { for (int i = 1; i <= 10; ++i) color.r += i; }", 0, 0, 0,
|
|
|
|
0, 55, 0, 0, 0);
|
|
|
|
test(r,
|
|
|
|
"void main(inout half4 color) {"
|
|
|
|
" for (int i = 1; i <= 10; ++i)"
|
|
|
|
" for (int j = i; j <= 10; ++j)"
|
|
|
|
" color.r += j;"
|
|
|
|
"}",
|
|
|
|
0, 0, 0, 0,
|
|
|
|
385, 0, 0, 0);
|
|
|
|
test(r,
|
|
|
|
"void main(inout half4 color) {"
|
|
|
|
" for (int i = 1; i <= 10; ++i)"
|
|
|
|
" for (int j = 1; ; ++j) {"
|
|
|
|
" if (i == j) continue;"
|
|
|
|
" if (j > 10) break;"
|
|
|
|
" color.r += j;"
|
|
|
|
" }"
|
|
|
|
"}",
|
|
|
|
0, 0, 0, 0,
|
|
|
|
495, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
2019-05-17 18:26:53 +00:00
|
|
|
DEF_TEST(SkSLInterpreterPrefixPostfix, r) {
|
|
|
|
test(r, "void main(inout half4 color) { color.r = ++color.g; }", 1, 2, 3, 4, 3, 3, 3, 4);
|
|
|
|
test(r, "void main(inout half4 color) { color.r = color.g++; }", 1, 2, 3, 4, 2, 3, 3, 4);
|
|
|
|
}
|
|
|
|
|
2019-03-21 15:05:37 +00:00
|
|
|
DEF_TEST(SkSLInterpreterSwizzle, r) {
|
|
|
|
test(r, "void main(inout half4 color) { color = color.abgr; }", 1, 2, 3, 4, 4, 3, 2, 1);
|
|
|
|
test(r, "void main(inout half4 color) { color.rgb = half4(5, 6, 7, 8).bbg; }", 1, 2, 3, 4, 7, 7,
|
|
|
|
6, 4);
|
|
|
|
test(r, "void main(inout half4 color) { color.bgr = int3(5, 6, 7); }", 1, 2, 3, 4, 7, 6,
|
|
|
|
5, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterGlobal, r) {
|
|
|
|
test(r, "int x; void main(inout half4 color) { x = 10; color.b = x; }", 1, 2, 3, 4, 1, 2, 10,
|
|
|
|
4);
|
2019-05-15 17:02:13 +00:00
|
|
|
test(r, "float4 x; void main(inout float4 color) { x = color * 2; color = x; }",
|
|
|
|
1, 2, 3, 4, 2, 4, 6, 8);
|
|
|
|
test(r, "float4 x; void main(inout float4 color) { x = float4(5, 6, 7, 8); color = x.wzyx; }",
|
|
|
|
1, 2, 3, 4, 8, 7, 6, 5);
|
2019-05-16 13:42:16 +00:00
|
|
|
test(r, "float4 x; void main(inout float4 color) { x.wzyx = float4(5, 6, 7, 8); color = x; }",
|
|
|
|
1, 2, 3, 4, 8, 7, 6, 5);
|
2019-03-21 15:05:37 +00:00
|
|
|
}
|
2019-04-23 17:31:09 +00:00
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterGeneric, r) {
|
|
|
|
float value1 = 5;
|
|
|
|
float expected1 = 25;
|
2019-06-14 14:17:16 +00:00
|
|
|
test(r, "float main(float x) { return x * x; }", &value1, 1, &expected1);
|
2019-04-23 17:31:09 +00:00
|
|
|
float value2[2] = { 5, 25 };
|
|
|
|
float expected2[2] = { 25, 625 };
|
2019-06-14 14:17:16 +00:00
|
|
|
test(r, "float2 main(float x, float y) { return float2(x * x, y * y); }", value2, 2, expected2);
|
2019-04-23 17:31:09 +00:00
|
|
|
}
|
2019-05-09 17:13:25 +00:00
|
|
|
|
2019-05-23 19:51:06 +00:00
|
|
|
DEF_TEST(SkSLInterpreterCompound, r) {
|
|
|
|
struct RectAndColor { SkIRect fRect; SkColor4f fColor; };
|
|
|
|
struct ManyRects { int fNumRects; RectAndColor fRects[4]; };
|
|
|
|
|
|
|
|
const char* src =
|
|
|
|
// Some struct definitions
|
|
|
|
"struct Point { int x; int y; };\n"
|
|
|
|
"struct Rect { Point p0; Point p1; };\n"
|
|
|
|
"struct RectAndColor { Rect r; float4 color; };\n"
|
|
|
|
|
|
|
|
// Structs as globals, parameters, return values
|
|
|
|
"RectAndColor temp;\n"
|
|
|
|
"int rect_height(Rect r) { return r.p1.y - r.p0.y; }\n"
|
|
|
|
"RectAndColor make_blue_rect(int w, int h) {\n"
|
|
|
|
" temp.r.p0.x = temp.r.p0.y = 0;\n"
|
|
|
|
" temp.r.p1.x = w; temp.r.p1.y = h;\n"
|
|
|
|
" temp.color = float4(0, 1, 0, 1);\n"
|
|
|
|
" return temp;\n"
|
|
|
|
"}\n"
|
|
|
|
|
|
|
|
// Initialization and assignment of types larger than 4 slots
|
|
|
|
"RectAndColor init_big(RectAndColor r) { RectAndColor s = r; return s; }\n"
|
|
|
|
"RectAndColor copy_big(RectAndColor r) { RectAndColor s; s = r; return s; }\n"
|
|
|
|
|
|
|
|
// Same for arrays, including some non-constant indexing
|
|
|
|
"float tempFloats[8];\n"
|
|
|
|
"int median(int a[15]) { return a[7]; }\n"
|
|
|
|
"float[8] sums(float a[8]) {\n"
|
|
|
|
" float tempFloats[8];\n"
|
|
|
|
" tempFloats[0] = a[0];\n"
|
|
|
|
" for (int i = 1; i < 8; ++i) { tempFloats[i] = tempFloats[i - 1] + a[i]; }\n"
|
|
|
|
" return tempFloats;\n"
|
|
|
|
"}\n"
|
|
|
|
|
|
|
|
// Uniforms, array-of-structs, dynamic indices
|
|
|
|
"in uniform Rect gRects[4];\n"
|
|
|
|
"Rect get_rect(int i) { return gRects[i]; }\n"
|
|
|
|
|
|
|
|
// Kitchen sink (swizzles, inout, SoAoS)
|
|
|
|
"struct ManyRects { int numRects; RectAndColor rects[4]; };\n"
|
|
|
|
"void fill_rects(inout ManyRects mr) {\n"
|
|
|
|
" for (int i = 0; i < mr.numRects; ++i) {\n"
|
|
|
|
" mr.rects[i].r = gRects[i];\n"
|
|
|
|
" float b = mr.rects[i].r.p1.y;\n"
|
|
|
|
" mr.rects[i].color = float4(b, b, b, b);\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
|
|
|
|
|
|
|
SkSL::Compiler compiler;
|
|
|
|
SkSL::Program::Settings settings;
|
|
|
|
std::unique_ptr<SkSL::Program> program = compiler.convertProgram(
|
|
|
|
SkSL::Program::kGeneric_Kind,
|
|
|
|
SkSL::String(src), settings);
|
|
|
|
REPORTER_ASSERT(r, program);
|
|
|
|
|
|
|
|
std::unique_ptr<SkSL::ByteCode> byteCode = compiler.toByteCode(*program);
|
|
|
|
REPORTER_ASSERT(r, !compiler.errorCount());
|
|
|
|
|
|
|
|
auto rect_height = byteCode->getFunction("rect_height"),
|
|
|
|
make_blue_rect = byteCode->getFunction("make_blue_rect"),
|
|
|
|
median = byteCode->getFunction("median"),
|
|
|
|
sums = byteCode->getFunction("sums"),
|
|
|
|
get_rect = byteCode->getFunction("get_rect"),
|
|
|
|
fill_rects = byteCode->getFunction("fill_rects");
|
|
|
|
|
|
|
|
SkIRect gRects[4] = { { 1,2,3,4 }, { 5,6,7,8 }, { 9,10,11,12 }, { 13,14,15,16 } };
|
|
|
|
|
|
|
|
{
|
|
|
|
SkIRect in = SkIRect::MakeXYWH(10, 10, 20, 30);
|
|
|
|
int out = 0;
|
2019-06-14 14:17:16 +00:00
|
|
|
byteCode->run(rect_height, (float*)&in, (float*)&out, 1, (float*)gRects, 16);
|
2019-05-23 19:51:06 +00:00
|
|
|
REPORTER_ASSERT(r, out == 30);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
int in[2] = { 15, 25 };
|
|
|
|
RectAndColor out;
|
2019-06-14 14:17:16 +00:00
|
|
|
byteCode->run(make_blue_rect, (float*)in, (float*)&out, 1, (float*)gRects, 16);
|
2019-05-23 19:51:06 +00:00
|
|
|
REPORTER_ASSERT(r, out.fRect.width() == 15);
|
|
|
|
REPORTER_ASSERT(r, out.fRect.height() == 25);
|
|
|
|
SkColor4f blue = { 0.0f, 1.0f, 0.0f, 1.0f };
|
|
|
|
REPORTER_ASSERT(r, out.fColor == blue);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
int in[15] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
|
|
|
|
int out = 0;
|
2019-06-14 14:17:16 +00:00
|
|
|
byteCode->run(median, (float*)in, (float*)&out, 1, (float*)gRects, 16);
|
2019-05-23 19:51:06 +00:00
|
|
|
REPORTER_ASSERT(r, out == 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
float in[8] = { 1, 2, 3, 4, 5, 6, 7, 8 };
|
|
|
|
float out[8] = { 0 };
|
2019-06-14 14:17:16 +00:00
|
|
|
byteCode->run(sums, in, out, 1, (float*)gRects, 16);
|
2019-05-23 19:51:06 +00:00
|
|
|
for (int i = 0; i < 8; ++i) {
|
|
|
|
REPORTER_ASSERT(r, out[i] == static_cast<float>((i + 1) * (i + 2) / 2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
int in = 2;
|
|
|
|
SkIRect out = SkIRect::MakeEmpty();
|
2019-06-14 14:17:16 +00:00
|
|
|
byteCode->run(get_rect, (float*)&in, (float*)&out, 1, (float*)gRects, 16);
|
2019-05-23 19:51:06 +00:00
|
|
|
REPORTER_ASSERT(r, out == gRects[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
ManyRects in;
|
|
|
|
memset(&in, 0, sizeof(in));
|
|
|
|
in.fNumRects = 2;
|
2019-06-14 14:17:16 +00:00
|
|
|
byteCode->run(fill_rects, (float*)&in, nullptr, 1, (float*)gRects, 16);
|
2019-05-23 19:51:06 +00:00
|
|
|
ManyRects expected;
|
|
|
|
memset(&expected, 0, sizeof(expected));
|
|
|
|
expected.fNumRects = 2;
|
|
|
|
for (int i = 0; i < 2; ++i) {
|
|
|
|
expected.fRects[i].fRect = gRects[i];
|
|
|
|
float c = gRects[i].fBottom;
|
|
|
|
expected.fRects[i].fColor = { c, c, c, c };
|
|
|
|
}
|
|
|
|
REPORTER_ASSERT(r, memcmp(&in, &expected, sizeof(in)) == 0);
|
|
|
|
}
|
|
|
|
}
|
2019-05-15 19:29:54 +00:00
|
|
|
|
2019-05-14 20:47:30 +00:00
|
|
|
DEF_TEST(SkSLInterpreterFunctions, r) {
|
|
|
|
const char* src =
|
|
|
|
"float sqr(float x) { return x * x; }\n"
|
|
|
|
// Forward declared
|
|
|
|
"float sub(float x, float y);\n"
|
|
|
|
"float main(float x) { return sub(sqr(x), x); }\n"
|
|
|
|
"float sub(float x, float y) { return x - y; }\n"
|
|
|
|
|
|
|
|
// Different signatures
|
|
|
|
"float dot(float2 a, float2 b) { return a.x*b.x + a.y*b.y; }\n"
|
|
|
|
"float dot(float3 a, float3 b) { return a.x*b.x + a.y*b.y + a.z*b.z; }\n"
|
|
|
|
"float dot3_test(float x) { return dot(float3(x, x + 1, x + 2), float3(1, -1, 2)); }\n"
|
|
|
|
"float dot2_test(float x) { return dot(float2(x, x + 1), float2(1, -1)); }\n"
|
2019-05-16 19:38:00 +00:00
|
|
|
"int fib(int i) { return (i < 2) ? 1 : fib(i - 1) + fib(i - 2); }";
|
2019-05-14 20:47:30 +00:00
|
|
|
|
|
|
|
SkSL::Compiler compiler;
|
|
|
|
SkSL::Program::Settings settings;
|
|
|
|
std::unique_ptr<SkSL::Program> program = compiler.convertProgram(
|
|
|
|
SkSL::Program::kGeneric_Kind,
|
|
|
|
SkSL::String(src), settings);
|
|
|
|
REPORTER_ASSERT(r, program);
|
|
|
|
|
|
|
|
std::unique_ptr<SkSL::ByteCode> byteCode = compiler.toByteCode(*program);
|
|
|
|
REPORTER_ASSERT(r, !compiler.errorCount());
|
|
|
|
|
|
|
|
auto sub = byteCode->getFunction("sub");
|
|
|
|
auto sqr = byteCode->getFunction("sqr");
|
|
|
|
auto main = byteCode->getFunction("main");
|
|
|
|
auto tan = byteCode->getFunction("tan");
|
|
|
|
auto dot3 = byteCode->getFunction("dot3_test");
|
|
|
|
auto dot2 = byteCode->getFunction("dot2_test");
|
|
|
|
auto fib = byteCode->getFunction("fib");
|
|
|
|
|
|
|
|
REPORTER_ASSERT(r, sub);
|
|
|
|
REPORTER_ASSERT(r, sqr);
|
|
|
|
REPORTER_ASSERT(r, main);
|
|
|
|
REPORTER_ASSERT(r, !tan);
|
|
|
|
REPORTER_ASSERT(r, dot3);
|
|
|
|
REPORTER_ASSERT(r, dot2);
|
|
|
|
REPORTER_ASSERT(r, fib);
|
|
|
|
|
|
|
|
float out = 0.0f;
|
|
|
|
float in = 3.0f;
|
2019-06-14 14:17:16 +00:00
|
|
|
byteCode->run(main, &in, &out, 1, nullptr, 0);
|
2019-05-14 20:47:30 +00:00
|
|
|
REPORTER_ASSERT(r, out = 6.0f);
|
|
|
|
|
2019-06-14 14:17:16 +00:00
|
|
|
byteCode->run(dot3, &in, &out, 1, nullptr, 0);
|
2019-05-14 20:47:30 +00:00
|
|
|
REPORTER_ASSERT(r, out = 9.0f);
|
|
|
|
|
2019-06-14 14:17:16 +00:00
|
|
|
byteCode->run(dot2, &in, &out, 1, nullptr, 0);
|
2019-05-14 20:47:30 +00:00
|
|
|
REPORTER_ASSERT(r, out = -1.0f);
|
|
|
|
|
|
|
|
int fibIn = 6;
|
|
|
|
int fibOut = 0;
|
2019-06-14 14:17:16 +00:00
|
|
|
byteCode->run(fib, (float*)&fibIn, (float*)&fibOut, 1, nullptr, 0);
|
2019-05-14 20:47:30 +00:00
|
|
|
REPORTER_ASSERT(r, fibOut == 13);
|
|
|
|
}
|
2019-05-15 19:29:54 +00:00
|
|
|
|
2019-06-20 19:41:34 +00:00
|
|
|
DEF_TEST(SkSLInterpreterOutParams, r) {
|
|
|
|
test(r,
|
|
|
|
"void oneAlpha(inout half4 color) { color.a = 1; }"
|
|
|
|
"void main(inout half4 color) { oneAlpha(color); }",
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 1);
|
|
|
|
test(r,
|
|
|
|
"half2 tricky(half x, half y, inout half2 color, half z) {"
|
|
|
|
" color.xy = color.yx;"
|
|
|
|
" return half2(x + y, z);"
|
|
|
|
"}"
|
|
|
|
"void main(inout half4 color) {"
|
|
|
|
" half2 t = tricky(1, 2, color.rb, 5);"
|
|
|
|
" color.ga = t;"
|
|
|
|
"}",
|
|
|
|
1, 2, 3, 4, 3, 3, 1, 5);
|
|
|
|
}
|
|
|
|
|
2019-05-24 16:46:34 +00:00
|
|
|
DEF_TEST(SkSLInterpreterMathFunctions, r) {
|
2019-06-14 14:17:16 +00:00
|
|
|
float value, expected;
|
2019-05-24 16:46:34 +00:00
|
|
|
|
|
|
|
value = 0.0f; expected = 0.0f;
|
|
|
|
test(r, "float main(float x) { return sin(x); }", &value, 1, &expected);
|
|
|
|
test(r, "float main(float x) { return tan(x); }", &value, 1, &expected);
|
|
|
|
|
|
|
|
value = 0.0f; expected = 1.0f;
|
|
|
|
test(r, "float main(float x) { return cos(x); }", &value, 1, &expected);
|
|
|
|
|
|
|
|
value = 25.0f; expected = 5.0f;
|
|
|
|
test(r, "float main(float x) { return sqrt(x); }", &value, 1, &expected);
|
|
|
|
}
|
|
|
|
|
2019-06-20 18:54:15 +00:00
|
|
|
DEF_TEST(SkSLInterpreterVoidFunction, r) {
|
|
|
|
test(r,
|
|
|
|
"half x; void foo() { x = 1.0; }"
|
|
|
|
"void main(inout half4 color) { foo(); color.r = x; }",
|
|
|
|
0, 0, 0, 0, 1, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
2019-05-24 16:46:34 +00:00
|
|
|
DEF_TEST(SkSLInterpreterMix, r) {
|
2019-06-14 14:17:16 +00:00
|
|
|
float value, expected;
|
2019-05-24 16:46:34 +00:00
|
|
|
|
|
|
|
value = 0.5f; expected = 0.0f;
|
|
|
|
test(r, "float main(float x) { return mix(-10, 10, x); }", &value, 1, &expected);
|
|
|
|
value = 0.75f; expected = 5.0f;
|
|
|
|
test(r, "float main(float x) { return mix(-10, 10, x); }", &value, 1, &expected);
|
|
|
|
value = 2.0f; expected = 30.0f;
|
|
|
|
test(r, "float main(float x) { return mix(-10, 10, x); }", &value, 1, &expected);
|
|
|
|
|
2019-06-14 14:17:16 +00:00
|
|
|
float valueVectors[] = { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f },
|
|
|
|
expectedVector[] = { 3.0f, 4.0f, 5.0f, 6.0f };
|
2019-05-24 16:46:34 +00:00
|
|
|
test(r, "float4 main(float4 x, float4 y) { return mix(x, y, 0.5); }", valueVectors, 4,
|
|
|
|
expectedVector);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterCross, r) {
|
2019-06-14 14:17:16 +00:00
|
|
|
float args[] = { 1.0f, 4.0f, -6.0f, -2.0f, 7.0f, -3.0f };
|
|
|
|
SkPoint3 cross = SkPoint3::CrossProduct(SkPoint3::Make(args[0], args[1], args[2]),
|
|
|
|
SkPoint3::Make(args[3], args[4], args[5]));
|
|
|
|
float expected[] = { cross.fX, cross.fY, cross.fZ };
|
2019-05-24 16:46:34 +00:00
|
|
|
test(r, "float3 main(float3 x, float3 y) { return cross(x, y); }", args, 3, expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterDot, r) {
|
2019-06-14 14:17:16 +00:00
|
|
|
float args[] = { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f };
|
|
|
|
float expected = args[0] * args[2] +
|
|
|
|
args[1] * args[3];
|
2019-05-24 16:46:34 +00:00
|
|
|
test(r, "float main(float2 x, float2 y) { return dot(x, y); }", args, 1, &expected);
|
|
|
|
|
2019-06-14 14:17:16 +00:00
|
|
|
expected = args[0] * args[3] +
|
|
|
|
args[1] * args[4] +
|
|
|
|
args[2] * args[5];
|
2019-05-24 16:46:34 +00:00
|
|
|
test(r, "float main(float3 x, float3 y) { return dot(x, y); }", args, 1, &expected);
|
|
|
|
|
2019-06-14 14:17:16 +00:00
|
|
|
expected = args[0] * args[4] +
|
|
|
|
args[1] * args[5] +
|
|
|
|
args[2] * args[6] +
|
|
|
|
args[3] * args[7];
|
2019-05-24 16:46:34 +00:00
|
|
|
test(r, "float main(float4 x, float4 y) { return dot(x, y); }", args, 1, &expected);
|
|
|
|
}
|
|
|
|
|
2019-05-15 19:29:54 +00:00
|
|
|
static const SkSL::Type& type_of(const skjson::Value* value, SkSL::Compiler* compiler) {
|
|
|
|
switch (value->getType()) {
|
|
|
|
case skjson::Value::Type::kNumber: {
|
|
|
|
float f = *value->as<skjson::NumberValue>();
|
|
|
|
if (f == (float) (int) f) {
|
|
|
|
return *compiler->context().fInt_Type;
|
|
|
|
}
|
|
|
|
return *compiler->context().fFloat_Type;
|
|
|
|
}
|
|
|
|
case skjson::Value::Type::kBool:
|
|
|
|
return *compiler->context().fBool_Type;
|
|
|
|
default:
|
|
|
|
return *compiler->context().fVoid_Type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class JSONExternalValue : public SkSL::ExternalValue {
|
|
|
|
public:
|
|
|
|
JSONExternalValue(const char* name, const skjson::Value* value, SkSL::Compiler* compiler)
|
|
|
|
: INHERITED(name, type_of(value, compiler))
|
|
|
|
, fValue(*value)
|
|
|
|
, fCompiler(*compiler) {}
|
|
|
|
|
|
|
|
bool canRead() const override {
|
|
|
|
return type() != *fCompiler.context().fVoid_Type;
|
|
|
|
}
|
|
|
|
|
2019-06-24 20:32:14 +00:00
|
|
|
void read(int /*unusedIndex*/, float* target) override {
|
2019-05-15 19:29:54 +00:00
|
|
|
if (type() == *fCompiler.context().fInt_Type) {
|
|
|
|
*(int*) target = *fValue.as<skjson::NumberValue>();
|
|
|
|
} else if (type() == *fCompiler.context().fFloat_Type) {
|
|
|
|
*(float*) target = *fValue.as<skjson::NumberValue>();
|
|
|
|
} else if (type() == *fCompiler.context().fBool_Type) {
|
|
|
|
*(bool*) target = *fValue.as<skjson::BoolValue>();
|
|
|
|
} else {
|
|
|
|
SkASSERT(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SkSL::ExternalValue* getChild(const char* name) const override {
|
|
|
|
if (fValue.getType() == skjson::Value::Type::kObject) {
|
|
|
|
const skjson::Value& v = fValue.as<skjson::ObjectValue>()[name];
|
|
|
|
return (SkSL::ExternalValue*) fCompiler.takeOwnership(std::unique_ptr<Symbol>(
|
|
|
|
new JSONExternalValue(name, &v, &fCompiler)));
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const skjson::Value& fValue;
|
|
|
|
SkSL::Compiler& fCompiler;
|
|
|
|
|
|
|
|
typedef SkSL::ExternalValue INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
class PointerExternalValue : public SkSL::ExternalValue {
|
|
|
|
public:
|
|
|
|
PointerExternalValue(const char* name, const SkSL::Type& type, void* data, size_t size)
|
|
|
|
: INHERITED(name, type)
|
|
|
|
, fData(data)
|
|
|
|
, fSize(size) {}
|
|
|
|
|
|
|
|
bool canRead() const override {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool canWrite() const override {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-06-24 20:32:14 +00:00
|
|
|
void read(int /*unusedIndex*/, float* target) override {
|
2019-05-15 19:29:54 +00:00
|
|
|
memcpy(target, fData, fSize);
|
|
|
|
}
|
|
|
|
|
2019-06-24 20:32:14 +00:00
|
|
|
void write(int /*unusedIndex*/, float* src) override {
|
2019-05-15 19:29:54 +00:00
|
|
|
memcpy(fData, src, fSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
void* fData;
|
|
|
|
size_t fSize;
|
|
|
|
|
|
|
|
typedef SkSL::ExternalValue INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterExternalValues, r) {
|
|
|
|
const char* json = "{ \"value1\": 12, \"child\": { \"value2\": true, \"value3\": 5.5 } }";
|
|
|
|
skjson::DOM dom(json, strlen(json));
|
|
|
|
SkSL::Compiler compiler;
|
|
|
|
SkSL::Program::Settings settings;
|
|
|
|
const char* src = "float main() {"
|
|
|
|
" outValue = 152;"
|
|
|
|
" if (root.child.value2)"
|
|
|
|
" return root.value1 * root.child.value3;"
|
|
|
|
" return -1;"
|
|
|
|
"}";
|
|
|
|
compiler.registerExternalValue((SkSL::ExternalValue*) compiler.takeOwnership(
|
|
|
|
std::unique_ptr<SkSL::Symbol>(new JSONExternalValue("root", &dom.root(), &compiler))));
|
|
|
|
int32_t outValue = -1;
|
|
|
|
compiler.registerExternalValue((SkSL::ExternalValue*) compiler.takeOwnership(
|
|
|
|
std::unique_ptr<SkSL::Symbol>(new PointerExternalValue("outValue",
|
|
|
|
*compiler.context().fInt_Type,
|
|
|
|
&outValue,
|
|
|
|
sizeof(outValue)))));
|
|
|
|
std::unique_ptr<SkSL::Program> program = compiler.convertProgram(
|
|
|
|
SkSL::Program::kGeneric_Kind,
|
|
|
|
SkSL::String(src), settings);
|
|
|
|
REPORTER_ASSERT(r, program);
|
|
|
|
if (program) {
|
|
|
|
std::unique_ptr<SkSL::ByteCode> byteCode = compiler.toByteCode(*program);
|
|
|
|
REPORTER_ASSERT(r, !compiler.errorCount());
|
|
|
|
if (compiler.errorCount() > 0) {
|
|
|
|
printf("%s\n%s", src, compiler.errorText().c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SkSL::ByteCodeFunction* main = byteCode->fFunctions[0].get();
|
2019-06-14 14:17:16 +00:00
|
|
|
float out;
|
|
|
|
byteCode->run(main, nullptr, &out, 1, nullptr, 0);
|
|
|
|
REPORTER_ASSERT(r, out == 66.0);
|
2019-05-15 19:29:54 +00:00
|
|
|
REPORTER_ASSERT(r, outValue == 152);
|
|
|
|
} else {
|
|
|
|
printf("%s\n%s", src, compiler.errorText().c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterExternalValuesVector, r) {
|
|
|
|
SkSL::Compiler compiler;
|
|
|
|
SkSL::Program::Settings settings;
|
|
|
|
const char* src = "void main() {"
|
|
|
|
" value *= 2;"
|
|
|
|
"}";
|
|
|
|
int32_t value[4] = { 1, 2, 3, 4 };
|
|
|
|
compiler.registerExternalValue((SkSL::ExternalValue*) compiler.takeOwnership(
|
|
|
|
std::unique_ptr<SkSL::Symbol>(new PointerExternalValue("value",
|
|
|
|
*compiler.context().fInt4_Type,
|
|
|
|
value,
|
|
|
|
sizeof(value)))));
|
|
|
|
std::unique_ptr<SkSL::Program> program = compiler.convertProgram(SkSL::Program::kGeneric_Kind,
|
|
|
|
SkSL::String(src),
|
|
|
|
settings);
|
|
|
|
REPORTER_ASSERT(r, program);
|
|
|
|
if (program) {
|
|
|
|
std::unique_ptr<SkSL::ByteCode> byteCode = compiler.toByteCode(*program);
|
|
|
|
REPORTER_ASSERT(r, !compiler.errorCount());
|
|
|
|
if (compiler.errorCount() > 0) {
|
|
|
|
printf("%s\n%s", src, compiler.errorText().c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SkSL::ByteCodeFunction* main = byteCode->fFunctions[0].get();
|
2019-06-14 14:17:16 +00:00
|
|
|
byteCode->run(main, nullptr, nullptr, 1, nullptr, 0);
|
2019-05-15 19:29:54 +00:00
|
|
|
REPORTER_ASSERT(r, value[0] == 2);
|
|
|
|
REPORTER_ASSERT(r, value[1] == 4);
|
|
|
|
REPORTER_ASSERT(r, value[2] == 6);
|
|
|
|
REPORTER_ASSERT(r, value[3] == 8);
|
|
|
|
} else {
|
|
|
|
printf("%s\n%s", src, compiler.errorText().c_str());
|
|
|
|
}
|
|
|
|
}
|
2019-05-17 20:31:21 +00:00
|
|
|
|
|
|
|
class FunctionExternalValue : public SkSL::ExternalValue {
|
|
|
|
public:
|
|
|
|
FunctionExternalValue(const char* name, float(*function)(float), SkSL::Compiler& compiler)
|
|
|
|
: INHERITED(name, *compiler.context().fFloat_Type)
|
|
|
|
, fCompiler(compiler)
|
|
|
|
, fFunction(function) {}
|
|
|
|
|
|
|
|
bool canCall() const override {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int callParameterCount() const override {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void getCallParameterTypes(const SkSL::Type** outTypes) const override {
|
|
|
|
outTypes[0] = fCompiler.context().fFloat_Type.get();
|
|
|
|
}
|
|
|
|
|
2019-06-24 20:32:14 +00:00
|
|
|
void call(int /*unusedIndex*/, float* arguments, float* outReturn) override {
|
|
|
|
outReturn[0] = fFunction(arguments[0]);
|
2019-05-17 20:31:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
SkSL::Compiler& fCompiler;
|
|
|
|
|
|
|
|
float (*fFunction)(float);
|
|
|
|
|
|
|
|
typedef SkSL::ExternalValue INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterExternalValuesCall, r) {
|
|
|
|
SkSL::Compiler compiler;
|
|
|
|
SkSL::Program::Settings settings;
|
|
|
|
const char* src = "float main() {"
|
|
|
|
" return external(25);"
|
|
|
|
"}";
|
|
|
|
compiler.registerExternalValue((SkSL::ExternalValue*) compiler.takeOwnership(
|
|
|
|
std::unique_ptr<SkSL::Symbol>(new FunctionExternalValue("external",
|
|
|
|
[] (float x) {
|
|
|
|
return (float) sqrt(x);
|
|
|
|
},
|
|
|
|
compiler))));
|
|
|
|
std::unique_ptr<SkSL::Program> program = compiler.convertProgram(SkSL::Program::kGeneric_Kind,
|
|
|
|
SkSL::String(src),
|
|
|
|
settings);
|
|
|
|
REPORTER_ASSERT(r, program);
|
|
|
|
if (program) {
|
|
|
|
std::unique_ptr<SkSL::ByteCode> byteCode = compiler.toByteCode(*program);
|
|
|
|
REPORTER_ASSERT(r, !compiler.errorCount());
|
|
|
|
if (compiler.errorCount() > 0) {
|
|
|
|
printf("%s\n%s", src, compiler.errorText().c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SkSL::ByteCodeFunction* main = byteCode->fFunctions[0].get();
|
2019-06-14 14:17:16 +00:00
|
|
|
float out;
|
|
|
|
byteCode->run(main, nullptr, &out, 1, nullptr, 0);
|
|
|
|
REPORTER_ASSERT(r, out == 5.0);
|
2019-05-17 20:31:21 +00:00
|
|
|
} else {
|
|
|
|
printf("%s\n%s", src, compiler.errorText().c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class VectorFunctionExternalValue : public SkSL::ExternalValue {
|
|
|
|
public:
|
|
|
|
VectorFunctionExternalValue(const char* name, void(*function)(float[4], float[4]),
|
|
|
|
SkSL::Compiler& compiler)
|
|
|
|
: INHERITED(name, *compiler.context().fFloat4_Type)
|
|
|
|
, fCompiler(compiler)
|
|
|
|
, fFunction(function) {}
|
|
|
|
|
|
|
|
bool canCall() const override {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int callParameterCount() const override {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void getCallParameterTypes(const SkSL::Type** outTypes) const override {
|
|
|
|
outTypes[0] = fCompiler.context().fFloat4_Type.get();
|
|
|
|
}
|
|
|
|
|
2019-06-24 20:32:14 +00:00
|
|
|
void call(int /*unusedIndex*/, float* arguments, float* outReturn) override {
|
|
|
|
fFunction(arguments, outReturn);
|
2019-05-17 20:31:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
SkSL::Compiler& fCompiler;
|
|
|
|
|
|
|
|
void (*fFunction)(float[4], float[4]);
|
|
|
|
|
|
|
|
typedef SkSL::ExternalValue INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
DEF_TEST(SkSLInterpreterExternalValuesVectorCall, r) {
|
|
|
|
SkSL::Compiler compiler;
|
|
|
|
SkSL::Program::Settings settings;
|
|
|
|
const char* src = "float4 main() {"
|
|
|
|
" return external(float4(1, 4, 9, 16));"
|
|
|
|
"}";
|
|
|
|
compiler.registerExternalValue((SkSL::ExternalValue*) compiler.takeOwnership(
|
|
|
|
std::unique_ptr<SkSL::Symbol>(new VectorFunctionExternalValue("external",
|
|
|
|
[] (float in[4], float out[4]) {
|
|
|
|
out[0] = sqrt(in[0]);
|
|
|
|
out[1] = sqrt(in[1]);
|
|
|
|
out[2] = sqrt(in[2]);
|
|
|
|
out[3] = sqrt(in[3]);
|
|
|
|
},
|
|
|
|
compiler))));
|
|
|
|
std::unique_ptr<SkSL::Program> program = compiler.convertProgram(SkSL::Program::kGeneric_Kind,
|
|
|
|
SkSL::String(src),
|
|
|
|
settings);
|
|
|
|
REPORTER_ASSERT(r, program);
|
|
|
|
if (program) {
|
|
|
|
std::unique_ptr<SkSL::ByteCode> byteCode = compiler.toByteCode(*program);
|
|
|
|
REPORTER_ASSERT(r, !compiler.errorCount());
|
|
|
|
if (compiler.errorCount() > 0) {
|
|
|
|
printf("%s\n%s", src, compiler.errorText().c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SkSL::ByteCodeFunction* main = byteCode->fFunctions[0].get();
|
2019-06-14 14:17:16 +00:00
|
|
|
float out[4];
|
|
|
|
byteCode->run(main, nullptr, out, 1, nullptr, 0);
|
|
|
|
REPORTER_ASSERT(r, out[0] == 1.0);
|
|
|
|
REPORTER_ASSERT(r, out[1] == 2.0);
|
|
|
|
REPORTER_ASSERT(r, out[2] == 3.0);
|
|
|
|
REPORTER_ASSERT(r, out[3] == 4.0);
|
2019-05-17 20:31:21 +00:00
|
|
|
} else {
|
|
|
|
printf("%s\n%s", src, compiler.errorText().c_str());
|
|
|
|
}
|
|
|
|
}
|