You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today I encountered a problem. I suddenly found that swc compression code was very slow. After investigation, I found that it was caused by the following code.
When minify.compress is enabled, swc will merge "a" + "b" into "ab", but if a is a variable, it will be repeated many times, which will cause it to be very slow. And after exceeding a certain threshold, memory overflows.
For example, in my example, the variable is in the current scope and does not need to be merged. It seems that this compression cooperation operation can be skipped?
Describe the bug
Today I encountered a problem. I suddenly found that swc compression code was very slow. After investigation, I found that it was caused by the following code.
When minify.compress is enabled, swc will merge
"a" + "b"
into"ab"
, but if a is a variable, it will be repeated many times, which will cause it to be very slow. And after exceeding a certain threshold, memory overflows.For example, in my example, the variable is in the current scope and does not need to be merged. It seems that this compression cooperation operation can be skipped?
case1:
${'a + "hello swc, minify" + '.repeat(len)} 'c'
case2:
${'"a" + "hello swc, minify" + '.repeat(len)} 'c'
case3:
${'a + b + '.repeat(len)} c;
Input code
Config
Playground link (or link to the minimal reproduction)
https://github.com/noyobo/swc-issues/tree/swc-minify
SWC Info output
Expected behavior
Compress code fast
Actual behavior
No response
Version
1.11.10
Additional context
No response
The text was updated successfully, but these errors were encountered: