aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SkSLJITTest.cpp
blob: 7561e13af738f2b472d065abd3574b44d8ae469d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
 * Copyright 2018 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "SkSLJIT.h"

#include "Test.h"

#ifdef SK_LLVM_AVAILABLE

template<typename type>
void test(skiatest::Reporter* r, const char* src, type x, type y, type result) {
    SkSL::Compiler compiler;
    SkSL::Program::Settings settings;
    std::unique_ptr<SkSL::Program> program = compiler.convertProgram(
                                                                 SkSL::Program::kPipelineStage_Kind,
                                                                 SkSL::String(src), settings);
    REPORTER_ASSERT(r, program);
    if (program) {
       SkSL::JIT jit(&compiler);
       std::unique_ptr<SkSL::JIT::Module> module = jit.compile(std::move(program));
       type (*test)(type, type) = (type(*)(type, type)) module->getSymbol("test");
       REPORTER_ASSERT(r, test(x, y) == result);
    } else {
        printf("%s", compiler.errorText().c_str());
    }
}

DEF_TEST(SkSLJITAdd, r) {
    test<int>(r, "int test(int x, int y) { return x + y; }", 12, 5, 17);
    test<float>(r, "float test(float x, float y) { return x + y; }", -1, 76, 75);
    test<int>(r, "int test(int x, int y) { x += y; return x; }", 12, 5, 17);
    test<float>(r, "float test(float x, float y) { x += y; return x; }", -1, 76, 75);
    test<int>(r, "int test(int x, int y) { return (int2(x) + int2(y)).x; }", 0, -100, -100);
    test<float>(r, "float test(float x, float y) { return (float2(x) + float2(y)).x; }", 36, 6, 42);
}

DEF_TEST(SkSLJITSub, r) {
    test<int>(r, "int test(int x, int y) { return x - y; }", 12, 5, 7);
    test<float>(r, "float test(float x, float y) { return x - y; }", -1, 76, -77);
    test<int>(r, "int test(int x, int y) { x -= y; return x; }", 12, 5, 7);
    test<float>(r, "float test(float x, float y) { x -= y; return x; }", -1, 76, -77);
    test<int>(r, "int test(int x, int y) { return (int2(x) - int2(y)).x; }", 0, -100, 100);
    test<float>(r, "float test(float x, float y) { return (float2(x) - float2(y)).x; }", 36, 6, 30);
}

DEF_TEST(SkSLJITMul, r) {
    test<int>(r, "int test(int x, int y) { return x * y; }", 12, 5, 60);
    test<float>(r, "float test(float x, float y) { return x * y; }", -1, 76, -76);
    test<int>(r, "int test(int x, int y) { x *= y; return x; }", 12, 5, 60);
    test<float>(r, "float test(float x, float y) { x *= y; return x; }", -1, 76, -76);
    test<int>(r, "int test(int x, int y) { return (int2(x) * int2(y)).x; }", 0, -100, 0);
    test<float>(r, "float test(float x, float y) { return (float2(x) * float2(y)).x; }", 36, 6,
                216);
}

DEF_TEST(SkSLJITDiv, r) {
    test<int>(r, "int test(int x, int y) { return x / y; }", 12, 5, 2);
    test<float>(r, "float test(float x, float y) { return x / y; }", -1, 76, -1.0 / 76.0);
    test<int>(r, "int test(int x, int y) { x /= y; return x; }", 12, 5, 2);
    test<float>(r, "float test(float x, float y) { x /= y; return x; }", -1, 76, -1.0 / 76.0);
    test<int>(r, "int test(int x, int y) { return (int2(x) / int2(y)).x; }", 0, -100, 0);
    test<float>(r, "float test(float x, float y) { return (float2(x) / float2(y)).x; }", 36, 6,
                6);
}

DEF_TEST(SkSLJITOr, r) {
    test<int>(r, "int test(int x, int y) { return x | y; }", 45, 15, 47);
    test<int>(r, "int test(int x, int y) { x |= y; return x; }", 45, 15, 47);
}

DEF_TEST(SkSLJITAnd, r) {
    test<int>(r, "int test(int x, int y) { return x & y; }", 45, 15, 13);
    test<int>(r, "int test(int x, int y) { x &= y; return x; }", 45, 15, 13);
}

DEF_TEST(SkSLJITIf, r) {
    test<int>(r, "int test(int x, int y) { if (x > y) return x; else return y; }", 17, 8, 17);
    test<int>(r, "int test(int x, int y) { if (x > y) return x; else return y; }", 8, 17, 17);
    test<int>(r, "int test(int x, int y) { if (x > y) if (x > 0) return x; else return -x; "
                 "else if (y > 0) return y; else return -y; }", -8, -17, 8);
}

DEF_TEST(SkSLJITTernary, r) {
    test<int>(r, "int test(int x, int y) { return x > y ? x : y; }", 17, 8, 17);
    test<int>(r, "int test(int x, int y) { return x > y ? x : y; }", 8, 17, 17);
    test<int>(r, "int test(int x, int y) { return x > y ? (x > 0 ? x : -x) :"
                 "(y > 0 ? y : -y); }", -8, -17, 8);
}

DEF_TEST(SkSLJITFor, r) {
    test<int>(r, "int test(int x, int y) {"
                 "    int result = 0;"
                 "    for (int i = 0; i < x; ++i)"
                 "        result += y;"
                 "    return result;"
                 "}", 124, 17, 2108);
}

DEF_TEST(SkSLJITDo, r) {
    test<int>(r, "int test(int x, int y) {"
                 "    int result = -10;"
                 "    do { result = 0; } while (false);"
                 "    do { result += x; } while (result < y);"
                 "    return result;"
                 "}", 96, 200, 288);
}

DEF_TEST(SkSLJITWhile, r) {
    test<int>(r, "int test(int x, int y) {"
                 "    int result = 0;"
                 "    while (false) { result = -10; }"
                 "    while (result < y) { result += x; }"
                 "    return result;"
                 "}", 96, 200, 288);
}

#endif