From 6a193f647db1a7b6beec1eb7538ed947405b4e3a Mon Sep 17 00:00:00 2001 From: axion014 Date: Sat, 8 Jun 2019 01:16:40 +0900 Subject: [PATCH 1/6] begin removing unnecessary grouping operators --- index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/index.js b/index.js index 7b78532..9571efe 100644 --- a/index.js +++ b/index.js @@ -23,6 +23,16 @@ function minifier(safe_words, mutate_storages) { return through(mutate) function mutate(node) { + // remove unnecessary grouping operators + if(is_unnecessary_group(node)) return + + if(node.parent) for(var current = node.parent; current.parent; current = current.parent) { + if(is_unnecessary_group(current)) { + current.parent.children[current.parent.children.indexOf(current)] = current.children[0] + current.children[0].parent = current.parent + } + } + if(should_mutate(node)) { var t = node.parent.parent.children[1] if(mutate_storages || (t.type === 'placeholder' || t.token.data === 'const')) { @@ -45,4 +55,8 @@ function minifier(safe_words, mutate_storages) { return base && !safe_words.hasOwnProperty(node.token.data) } + + function is_unnecessary_group(node) { + return node.type === 'group' && node.children[0].lbp >= node.parent.lbp + } } From c87d21f550825fd4f51581180a09c60b292117b1 Mon Sep 17 00:00:00 2001 From: axion014 Date: Sun, 9 Jun 2019 16:55:14 +0900 Subject: [PATCH 2/6] style fix --- index.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/index.js b/index.js index 9571efe..b56a78b 100644 --- a/index.js +++ b/index.js @@ -26,10 +26,12 @@ function minifier(safe_words, mutate_storages) { // remove unnecessary grouping operators if(is_unnecessary_group(node)) return - if(node.parent) for(var current = node.parent; current.parent; current = current.parent) { - if(is_unnecessary_group(current)) { - current.parent.children[current.parent.children.indexOf(current)] = current.children[0] - current.children[0].parent = current.parent + if(node.parent) { + for(var current = node.parent; current.parent; current = current.parent) { + if(is_unnecessary_group(current)) { + current.parent.children[current.parent.children.indexOf(current)] = current.children[0] + current.children[0].parent = current.parent + } } } From a34f07d9c6bc05bb18bcde85884cbb17759cbc2b Mon Sep 17 00:00:00 2001 From: axion014 Date: Sun, 9 Jun 2019 17:27:28 +0900 Subject: [PATCH 3/6] fix behavior on operators of equal binding power --- index.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index b56a78b..02eec10 100644 --- a/index.js +++ b/index.js @@ -7,6 +7,9 @@ var lang = require('cssauron-glsl') , through = require('through') , shortest = require('shortest') +// recognize commutative + but not * as these are conditional +var commutative_operators = ['+', '&&', '||'] + function minifier(safe_words, mutate_storages) { safe_words = safe_words || ['main'] @@ -59,6 +62,13 @@ function minifier(safe_words, mutate_storages) { } function is_unnecessary_group(node) { - return node.type === 'group' && node.children[0].lbp >= node.parent.lbp + if(node.type !== 'group') return false + if(node.children[0].lbp > node.parent.lbp) return true + if(node.children[0].lbp === node.parent.lbp) { + for(var i = 0; i < commutative_operators.length; i++) { + if(node.parent.data === commutative_operators[i] && node.children[0].data === commutative_operators[i]) return true + } + } + return false } } From fdcc1f45ebde6aab33c6e70b06bf9781d5c0abe6 Mon Sep 17 00:00:00 2001 From: axion014 Date: Sun, 9 Jun 2019 22:35:40 +0900 Subject: [PATCH 4/6] test new feature --- tap-snapshots/test-basic.js-TAP.test.js | 10 ++++++++++ test/basic.js | 19 +++++++++++++++++++ test/test.glsl | 2 +- 3 files changed, 30 insertions(+), 1 deletion(-) diff --git a/tap-snapshots/test-basic.js-TAP.test.js b/tap-snapshots/test-basic.js-TAP.test.js index 1087b2a..5937e31 100644 --- a/tap-snapshots/test-basic.js-TAP.test.js +++ b/tap-snapshots/test-basic.js-TAP.test.js @@ -346,3 +346,13 @@ gl_FragColor = vec4((vec3(1.0) * bA + vec3(1.0) * bB + bC * vec3(1.0)) * vec3(0. } } ` + +exports[`test/basic.js TAP grouping removal test > output 1`] = ` +precision highp int;precision highp float;precision highp vec2;precision highp vec3;precision highp vec4; +#line 0 + +#define X(a) Y \\ + asdf \\ + barry +struct a{int b;float c;} d=2,c;struct e{a f;} g;struct h{vec4 i;};varying vec2 vTexcoord;varying vec3 vPosition;uniform mat4 proj,view;attribute vec3 position;attribute vec2 texcoord;int j(vec2 k);int j(vec2 k){}int l(){}int m(int d,int c){}int n(int d[2]){do x;while(1);}int o(vec2 [4]);int p(vec2,vec2);int q,r,s,t,u,v,w,x;void main(){vTexcoord=texcoord;vPosition=position;vec3 y=vec2(1.,2.);int z,A;y.rgba=2e10+.2e2+1.e3*0xFaBc09+3*z;for(a B=0;B<10;++B){discard;}while(1){z=23;}gl_Position=proj*view*vec4(position,1.0);if(q { @@ -69,3 +70,21 @@ tap.test("basic storage mutation", t => { .pipe(deparser()) .pipe(endStream); }); + +tap.test("grouping removal test", t => { + let output = ""; + + const endStream = through((data) => { + output += data; + }, () => { + t.matchSnapshot(output, "output"); + t.end(); + }); + + fs.createReadStream(testGLSL) + .pipe(tokenizer()) + .pipe(parser()) + .pipe(minify()) + .pipe(deparser(false)) + .pipe(endStream); +}); diff --git a/test/test.glsl b/test/test.glsl index 0101edb..6a2f353 100644 --- a/test/test.glsl +++ b/test/test.glsl @@ -56,7 +56,7 @@ int first, second, third, fourth, fifth, sixth, seventh, eigth; vPosition = position; vec3 thing = vec2(1., 2.); int v_thing, garybusey; - thing.rgba = 2e10 + .2e2 + 1.e3 * 0xFaBc09 + (3 * v_thing); + thing.rgba = 2e10 + (.2e2 + (1.e3 * 0xFaBc09 + (3 * v_thing))); for(xxx i = 0; i < 10; ++i) { discard; From 69806e74d5307325b3e37980106bfb227e7a7021 Mon Sep 17 00:00:00 2001 From: Daniel Hritzkiv Date: Mon, 10 Jun 2019 00:46:13 -0400 Subject: [PATCH 5/6] Remove stripping of whitespace by deparser in tests --- tap-snapshots/test-basic.js-TAP.test.js | 98 ++++++++++++++++++++++++- test/basic.js | 2 +- 2 files changed, 97 insertions(+), 3 deletions(-) diff --git a/tap-snapshots/test-basic.js-TAP.test.js b/tap-snapshots/test-basic.js-TAP.test.js index f60fb16..0f52eb7 100644 --- a/tap-snapshots/test-basic.js-TAP.test.js +++ b/tap-snapshots/test-basic.js-TAP.test.js @@ -726,11 +726,105 @@ gl_FragColor = vec4((vec3(1.0) * bA + vec3(1.0) * bB + bC * vec3(1.0)) * vec3(0. ` exports[`test/basic.js TAP grouping removal test > output 1`] = ` -precision highp int;precision highp float;precision highp vec2;precision highp vec3;precision highp vec4; + +precision highp int; +precision highp float; +precision highp vec2; +precision highp vec3; +precision highp vec4; #line 0 #define X(a) Y \\ asdf \\ barry -struct a{int b;float c;} d=2,c;struct e{a f;} g;struct h{vec4 i;};varying vec2 vTexcoord;varying vec3 vPosition;uniform mat4 proj,view;attribute vec3 position;attribute vec2 texcoord;int j(vec2 k);int j(vec2 k){}int l(){}int m(int d,int c){}int n(int d[2]){do x;while(1);}int o(vec2 [4]);int p(vec2,vec2);int q,r,s,t,u,v,w,x;void main(){vTexcoord=texcoord;vPosition=position;vec3 y=vec2(1.,2.);int z,A;y.rgba=2e10+.2e2+1.e3*0xFaBc09+3*z;for(a B=0;B<10;++B){discard;}while(1){z=23;}gl_Position=proj*view*vec4(position,1.0);if(q { .pipe(tokenizer()) .pipe(parser()) .pipe(minify()) - .pipe(deparser(false)) + .pipe(deparser()) .pipe(endStream); }); From 772bf02551f287c7b4b6ebb5fb36cf4e63787f28 Mon Sep 17 00:00:00 2001 From: Daniel Hritzkiv Date: Mon, 10 Jun 2019 01:02:58 -0400 Subject: [PATCH 6/6] Employ a more succinct test glsl file for grouping test --- tap-snapshots/test-basic.js-TAP.test.js | 104 +----------------------- test/basic.js | 5 +- test/commutative-operators.glsl | 6 ++ 3 files changed, 13 insertions(+), 102 deletions(-) create mode 100644 test/commutative-operators.glsl diff --git a/tap-snapshots/test-basic.js-TAP.test.js b/tap-snapshots/test-basic.js-TAP.test.js index 0f52eb7..476b350 100644 --- a/tap-snapshots/test-basic.js-TAP.test.js +++ b/tap-snapshots/test-basic.js-TAP.test.js @@ -727,104 +727,8 @@ gl_FragColor = vec4((vec3(1.0) * bA + vec3(1.0) * bB + bC * vec3(1.0)) * vec3(0. exports[`test/basic.js TAP grouping removal test > output 1`] = ` -precision highp int; -precision highp float; -precision highp vec2; -precision highp vec3; -precision highp vec4; -#line 0 - -#define X(a) Y \\ - asdf \\ - barry - -struct a { - int b; - float c; -} d = 2, c; -struct e { - a f; -} g; -struct h { - vec4 i; -}; -varying vec2 vTexcoord; -varying vec3 vPosition; -uniform mat4 proj, view; -attribute vec3 position; -attribute vec2 texcoord; -int j(vec2 k); -int j(vec2 k) { - -} -int l() { - -} -int m(int d, int c) { - -} -int n(int d[2]) { - do - x; - while(1); -} -int o(vec2 [4]); -int p(vec2, vec2); -int q, r, s, t, u, v, w, x; -void main() { - vTexcoord = texcoord; - vPosition = position; - vec3 y = vec2(1., 2.); - int z, A; - y.rgba = 2e10 + .2e2 + 1.e3 * 0xFaBc09 + 3 * z; - for(a B = 0; B < 10; ++B) { - discard; - } - while(1) { - z = 23; - } - gl_Position = proj * view * vec4(position, 1.0); - if(q < y) { - z; - } - if(r < y) - z; - if(s == y) - z; - else if(z == w) - y; - - if(t == y) - z; - else if(z == w) { - y; - } - if(u == y) - z; - else if(z == w) { - y; - } else - d; - - if(v == y) - z; - else - z; - if(w == y) - z; - else { - z; - } - if(x == y) { - z; - } else { - z; - } - for(; ; ) - A; - return x; - return; - break; - continue; -} +float a = 2e10 + .2e2 + 1.e3 * (0xFaBc09 + 3); +float b = 2e10 + (.2e2 - 1.e3 / (0xFaBc09 + 3)); +bool c = 1. && true && true; +bool d = 0. || false || true; ` diff --git a/test/basic.js b/test/basic.js index adfd86d..9a52d40 100644 --- a/test/basic.js +++ b/test/basic.js @@ -8,7 +8,7 @@ const fs = require("fs"); const path = require("path"); const through = require("through"); -const testGLSL = path.resolve(__dirname, "./test.glsl"); +const commutativeGLSL = path.resolve(__dirname, "./commutative-operators.glsl"); const workingGLSL = path.resolve(__dirname, "./working.glsl"); tap.test("basic", t => { @@ -81,10 +81,11 @@ tap.test("grouping removal test", t => { t.end(); }); - fs.createReadStream(testGLSL) + fs.createReadStream(commutativeGLSL) .pipe(tokenizer()) .pipe(parser()) .pipe(minify()) .pipe(deparser()) .pipe(endStream); }); + diff --git a/test/commutative-operators.glsl b/test/commutative-operators.glsl new file mode 100644 index 0000000..e48b55a --- /dev/null +++ b/test/commutative-operators.glsl @@ -0,0 +1,6 @@ +float x = 2e10 + (.2e2 + (1.e3 * (0xFaBc09 + 3))); +float y = 2e10 + (.2e2 - (1.e3 / (0xFaBc09 + 3))); + +bool a = 1. && (true && true); + +bool b = 0. || (false || true);