4
4
*
5
5
* GPU Accelerated JavaScript
6
6
*
7
- * @version 2.10.6
8
- * @date Wed Dec 02 2020 15:14:25 GMT-0500 (Eastern Standard Time)
7
+ * @version 2.11.0
8
+ * @date Tue Jan 05 2021 15:55:59 GMT-0500 (Eastern Standard Time)
9
9
*
10
10
* @license MIT
11
11
* The MIT License
12
12
*
13
- * Copyright (c) 2020 gpu.js Team
13
+ * Copyright (c) 2021 gpu.js Team
14
14
*/ ( function ( f ) { if ( typeof exports === "object" && typeof module !== "undefined" ) { module . exports = f ( ) } else if ( typeof define === "function" && define . amd ) { define ( [ ] , f ) } else { var g ; if ( typeof window !== "undefined" ) { g = window } else if ( typeof global !== "undefined" ) { g = global } else if ( typeof self !== "undefined" ) { g = self } else { g = this } g . GPU = f ( ) } } ) ( function ( ) { var define , module , exports ; return ( function ( ) { function r ( e , n , t ) { function o ( i , f ) { if ( ! n [ i ] ) { if ( ! e [ i ] ) { var c = "function" == typeof require && require ; if ( ! f && c ) return c ( i , ! 0 ) ; if ( u ) return u ( i , ! 0 ) ; var a = new Error ( "Cannot find module '" + i + "'" ) ; throw a . code = "MODULE_NOT_FOUND" , a } var p = n [ i ] = { exports :{ } } ; e [ i ] [ 0 ] . call ( p . exports , function ( r ) { var n = e [ i ] [ 1 ] [ r ] ; return o ( n || r ) } , p , p . exports , r , e , n , t ) } return n [ i ] . exports } for ( var u = "function" == typeof require && require , i = 0 ; i < t . length ; i ++ ) o ( t [ i ] ) ; return o } return r } ) ( ) ( { 1 :[ function ( require , module , exports ) {
15
15
16
16
} , { } ] , 2 :[ function ( require , module , exports ) {
@@ -1020,18 +1020,6 @@ class CPUFunctionNode extends FunctionNode {
1020
1020
return retArr ;
1021
1021
}
1022
1022
break ;
1023
- case 'value.value[]' :
1024
- if ( this . removeIstanbulCoverage ) {
1025
- return retArr ;
1026
- }
1027
- retArr . push ( `${ mNode . object . object . name } .${ mNode . object . property . name } [${ mNode . property . value } ]` ) ;
1028
- return retArr ;
1029
- case 'value.value[][]' :
1030
- if ( this . removeIstanbulCoverage ) {
1031
- return retArr ;
1032
- }
1033
- retArr . push ( `${ mNode . object . object . object . name } .${ mNode . object . object . property . name } [${ mNode . object . property . value } ][${ mNode . property . value } ]` ) ;
1034
- return retArr ;
1035
1023
case 'this.constants.value' :
1036
1024
case 'this.constants.value[]' :
1037
1025
case 'this.constants.value[][]' :
@@ -2039,8 +2027,6 @@ class FunctionBuilder {
2039
2027
followingReturnStatement,
2040
2028
dynamicArguments,
2041
2029
dynamicOutput,
2042
- onIstanbulCoverageVariable,
2043
- removeIstanbulCoverage,
2044
2030
} = kernel ;
2045
2031
2046
2032
const argumentTypes = new Array ( kernelArguments . length ) ;
@@ -2127,8 +2113,6 @@ class FunctionBuilder {
2127
2113
triggerImplyArgumentType,
2128
2114
triggerImplyArgumentBitRatio,
2129
2115
onFunctionCall,
2130
- onIstanbulCoverageVariable : onIstanbulCoverageVariable ? ( name ) => onIstanbulCoverageVariable ( name , kernel ) : null ,
2131
- removeIstanbulCoverage,
2132
2116
optimizeFloatMemory,
2133
2117
precision,
2134
2118
constants,
@@ -2181,8 +2165,6 @@ class FunctionBuilder {
2181
2165
triggerImplyArgumentBitRatio,
2182
2166
onFunctionCall,
2183
2167
onNestedFunction,
2184
- onIstanbulCoverageVariable : onIstanbulCoverageVariable ? ( name ) => onIstanbulCoverageVariable ( name , kernel ) : null ,
2185
- removeIstanbulCoverage,
2186
2168
} ) ) ;
2187
2169
}
2188
2170
@@ -2608,8 +2590,6 @@ class FunctionNode {
2608
2590
this . dynamicArguments = null ;
2609
2591
this . strictTypingChecking = false ;
2610
2592
this . fixIntegerDivisionAccuracy = null ;
2611
- this . onIstanbulCoverageVariable = null ;
2612
- this . removeIstanbulCoverage = false ;
2613
2593
2614
2594
if ( settings ) {
2615
2595
for ( const p in settings ) {
@@ -2685,7 +2665,7 @@ class FunctionNode {
2685
2665
2686
2666
if ( ast . type === 'MemberExpression' ) {
2687
2667
if ( ast . object && ast . property ) {
2688
- if ( ast . object . hasOwnProperty ( 'name' ) && ast . object . name [ 0 ] === '_ ') {
2668
+ if ( ast . object . hasOwnProperty ( 'name' ) && ast . object . name !== 'Math ') {
2689
2669
return this . astMemberExpressionUnroll ( ast . property ) ;
2690
2670
}
2691
2671
@@ -2905,6 +2885,11 @@ class FunctionNode {
2905
2885
if ( this . getVariableSignature ( ast . callee , true ) === 'this.color' ) {
2906
2886
return null ;
2907
2887
}
2888
+ if ( ast . callee . type === 'MemberExpression' && ast . callee . object && ast . callee . property && ast . callee . property . name && ast . arguments ) {
2889
+ const functionName = ast . callee . property . name ;
2890
+ this . inferArgumentTypesIfNeeded ( functionName , ast . arguments ) ;
2891
+ return this . lookupReturnType ( functionName , ast , this ) ;
2892
+ }
2908
2893
throw this . astErrorOutput ( 'Unknown call expression' , ast ) ;
2909
2894
}
2910
2895
if ( ast . callee && ast . callee . name ) {
@@ -3345,8 +3330,6 @@ class FunctionNode {
3345
3330
'value[][][]' ,
3346
3331
'value[][][][]' ,
3347
3332
'value.value' ,
3348
- 'value.value[]' ,
3349
- 'value.value[][]' ,
3350
3333
'value.thread.value' ,
3351
3334
'this.thread.value' ,
3352
3335
'this.output.value' ,
@@ -3560,20 +3543,11 @@ class FunctionNode {
3560
3543
astThisExpression ( ast , retArr ) {
3561
3544
return retArr ;
3562
3545
}
3563
- isIstanbulAST ( ast ) {
3564
- const variableSignature = this . getVariableSignature ( ast ) ;
3565
- return variableSignature === 'value.value[]' || variableSignature === 'value.value[][]' ;
3566
- }
3567
3546
astSequenceExpression ( sNode , retArr ) {
3568
3547
const { expressions } = sNode ;
3569
3548
const sequenceResult = [ ] ;
3570
3549
for ( let i = 0 ; i < expressions . length ; i ++ ) {
3571
3550
const expression = expressions [ i ] ;
3572
- if ( this . removeIstanbulCoverage ) {
3573
- if ( expression . type === 'UpdateExpression' && this . isIstanbulAST ( expression . argument ) ) {
3574
- continue ;
3575
- }
3576
- }
3577
3551
const expressionResult = [ ] ;
3578
3552
this . astGeneric ( expression , expressionResult ) ;
3579
3553
sequenceResult . push ( expressionResult . join ( '' ) ) ;
@@ -3605,12 +3579,6 @@ class FunctionNode {
3605
3579
checkAndUpconvertBitwiseUnary ( uNode , retArr ) { }
3606
3580
3607
3581
astUpdateExpression ( uNode , retArr ) {
3608
- if ( this . removeIstanbulCoverage ) {
3609
- const signature = this . getVariableSignature ( uNode . argument ) ;
3610
- if ( this . isIstanbulAST ( uNode . argument ) ) {
3611
- return retArr ;
3612
- }
3613
- }
3614
3582
if ( uNode . prefix ) {
3615
3583
retArr . push ( uNode . operator ) ;
3616
3584
this . astGeneric ( uNode . argument , retArr ) ;
@@ -3814,28 +3782,8 @@ class FunctionNode {
3814
3782
signature : variableSignature ,
3815
3783
property : ast . property ,
3816
3784
} ;
3817
- case 'value.value[]' :
3818
- if ( this . removeIstanbulCoverage ) {
3819
- return { signature : variableSignature } ;
3820
- }
3821
- if ( this . onIstanbulCoverageVariable ) {
3822
- this . onIstanbulCoverageVariable ( ast . object . object . name ) ;
3823
- return {
3824
- signature : variableSignature
3825
- } ;
3826
- }
3827
- case 'value.value[][]' :
3828
- if ( this . removeIstanbulCoverage ) {
3829
- return { signature : variableSignature } ;
3830
- }
3831
- if ( this . onIstanbulCoverageVariable ) {
3832
- this . onIstanbulCoverageVariable ( ast . object . object . object . name ) ;
3833
- return {
3834
- signature : variableSignature
3835
- } ;
3836
- }
3837
- default :
3838
- throw this . astErrorOutput ( 'Unexpected expression' , ast ) ;
3785
+ default :
3786
+ throw this . astErrorOutput ( 'Unexpected expression' , ast ) ;
3839
3787
}
3840
3788
}
3841
3789
@@ -6311,8 +6259,6 @@ class Kernel {
6311
6259
this . optimizeFloatMemory = null ;
6312
6260
this . strictIntegers = false ;
6313
6261
this . fixIntegerDivisionAccuracy = null ;
6314
- this . onIstanbulCoverageVariable = null ;
6315
- this . removeIstanbulCoverage = false ;
6316
6262
this . built = false ;
6317
6263
this . signature = null ;
6318
6264
}
@@ -6339,11 +6285,6 @@ class Kernel {
6339
6285
}
6340
6286
this [ p ] = settings [ p ] ;
6341
6287
continue ;
6342
- case 'removeIstanbulCoverage' :
6343
- if ( settings [ p ] !== null ) {
6344
- this [ p ] = settings [ p ] ;
6345
- }
6346
- continue ;
6347
6288
case 'nativeFunctions' :
6348
6289
if ( ! settings . nativeFunctions ) continue ;
6349
6290
this . nativeFunctions = [ ] ;
@@ -8338,13 +8279,8 @@ class WebGLFunctionNode extends FunctionNode {
8338
8279
retArr . push ( this . memberExpressionPropertyMarkup ( property ) ) ;
8339
8280
retArr . push ( ']' ) ;
8340
8281
return retArr ;
8341
- case 'value.value[]' :
8342
- case 'value.value[][]' :
8343
- if ( this . removeIstanbulCoverage ) {
8344
- return retArr ;
8345
- }
8346
- default :
8347
- throw this . astErrorOutput ( 'Unexpected expression' , mNode ) ;
8282
+ default :
8283
+ throw this . astErrorOutput ( 'Unexpected expression' , mNode ) ;
8348
8284
}
8349
8285
8350
8286
if ( mNode . computed === false ) {
@@ -10183,7 +10119,6 @@ class WebGLKernel extends GLKernel {
10183
10119
10184
10120
this . maxTexSize = null ;
10185
10121
this . onRequestSwitchKernel = null ;
10186
- this . removeIstanbulCoverage = true ;
10187
10122
10188
10123
this . texture = null ;
10189
10124
this . mappedTextures = null ;
@@ -13538,8 +13473,6 @@ class GPU {
13538
13473
this . functions = [ ] ;
13539
13474
this . nativeFunctions = [ ] ;
13540
13475
this . injectedNative = null ;
13541
- this . onIstanbulCoverageVariable = settings . onIstanbulCoverageVariable || null ;
13542
- this . removeIstanbulCoverage = settings . hasOwnProperty ( 'removeIstanbulCoverage' ) ? settings . removeIstanbulCoverage : null ;
13543
13476
if ( this . mode === 'dev' ) return ;
13544
13477
this . chooseKernel ( ) ;
13545
13478
if ( settings . functions ) {
@@ -13715,8 +13648,6 @@ class GPU {
13715
13648
gpu : _kernel . gpu ,
13716
13649
validate,
13717
13650
returnType : _kernel . returnType ,
13718
- onIstanbulCoverageVariable : _kernel . onIstanbulCoverageVariable ,
13719
- removeIstanbulCoverage : _kernel . removeIstanbulCoverage ,
13720
13651
tactic : _kernel . tactic ,
13721
13652
onRequestFallback,
13722
13653
onRequestSwitchKernel,
@@ -13735,8 +13666,6 @@ class GPU {
13735
13666
functions : this . functions ,
13736
13667
nativeFunctions : this . nativeFunctions ,
13737
13668
injectedNative : this . injectedNative ,
13738
- onIstanbulCoverageVariable : this . onIstanbulCoverageVariable ,
13739
- removeIstanbulCoverage : this . removeIstanbulCoverage ,
13740
13669
gpu : this ,
13741
13670
validate,
13742
13671
onRequestFallback,
0 commit comments