Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(minifier): port esbuild's mangleStmts #8770

Merged
merged 1 commit into from
Jan 31, 2025

Conversation

Boshen
Copy link
Member

@Boshen Boshen commented Jan 28, 2025

No description provided.

Copy link

graphite-app bot commented Jan 28, 2025

How to use the Graphite Merge Queue

Add either label to this PR to merge it via the merge queue:

  • 0-merge - adds this PR to the back of the merge queue
  • hotfix - for urgent hot fixes, skip the queue and merge this PR next

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

@github-actions github-actions bot added A-minifier Area - Minifier C-cleanup Category - technical debt or refactoring. Solution not expected to change behavior labels Jan 28, 2025
Copy link

codspeed-hq bot commented Jan 28, 2025

CodSpeed Performance Report

Merging #8770 will improve performances by 13.09%

Comparing 01-28-refactor_minifier_port_esbuild_s_manglestmts_ (033b55f) with main (249895f)

Summary

⚡ 2 improvements
✅ 31 untouched benchmarks

Benchmarks breakdown

Benchmark BASE HEAD Change
minifier[antd.js] 160.7 ms 155.6 ms +3.27%
minifier[typescript.js] 305.9 ms 270.5 ms +13.09%

@Boshen Boshen force-pushed the 01-28-refactor_minifier_port_esbuild_s_manglestmts_ branch 2 times, most recently from d1d66e6 to 3dd592d Compare January 29, 2025 13:59
@github-actions github-actions bot added the A-ast Area - AST label Jan 29, 2025
@Boshen Boshen force-pushed the 01-28-refactor_minifier_port_esbuild_s_manglestmts_ branch 4 times, most recently from 1581606 to 0b160b8 Compare January 31, 2025 04:31
@Boshen Boshen marked this pull request as ready for review January 31, 2025 04:58
@Boshen Boshen force-pushed the 01-28-refactor_minifier_port_esbuild_s_manglestmts_ branch from 0b160b8 to ac47e52 Compare January 31, 2025 05:06
@Boshen Boshen force-pushed the 01-28-refactor_minifier_port_esbuild_s_manglestmts_ branch from ac47e52 to 033b55f Compare January 31, 2025 05:32
@Boshen Boshen requested a review from sapphi-red January 31, 2025 05:34
@Boshen
Copy link
Member Author

Boshen commented Jan 31, 2025

@sapphi-red Please take a look, The previous google closure compiler architecture is not holding up well :-/

The current direction for performance is 1 AST pass with lots of small "minimize expression" calls when new expressions are created ... we'll get there!

@Boshen Boshen merged commit a861d93 into main Jan 31, 2025
26 checks passed
@Boshen Boshen deleted the 01-28-refactor_minifier_port_esbuild_s_manglestmts_ branch January 31, 2025 05:43
Copy link
Member

@sapphi-red sapphi-red left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great! I left some comments

Comment on lines +73 to +95
Statement::ExpressionStatement(_) => {
if let Some(Statement::ReturnStatement(last_return)) = result.last() {
if last_return.argument.is_none() {
break 'return_loop;
}
}
self.mark_current_function_as_changed();
// "a(); return b;" => "return a(), b;"
let last_stmt = result.pop().unwrap();
let Statement::ReturnStatement(mut last_return) = last_stmt else {
unreachable!()
};
let prev_stmt = result.pop().unwrap();
let Statement::ExpressionStatement(mut expr_stmt) = prev_stmt else {
unreachable!()
};
let b = last_return.argument.as_mut().unwrap();
let argument = Self::join_sequence(&mut expr_stmt.expression, b, ctx);
let right_span = last_return.span;
let last_return_stmt =
ctx.ast.statement_return(right_span, Some(argument));
result.push(last_return_stmt);
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess this case is mostly handled by

Statement::ReturnStatement(mut ret_stmt) => {
if let Some(Statement::ExpressionStatement(prev_expr_stmt)) = result.last_mut() {
if let Some(argument) = &mut ret_stmt.argument {
let a = &mut prev_expr_stmt.expression;
*argument = Self::join_sequence(a, argument, ctx);
result.pop();
self.mark_current_function_as_changed();
}
}
result.push(Statement::ReturnStatement(ret_stmt));
*is_control_flow_dead = true;
}

When is this code needed?

Comment on lines +96 to +97
// Merge the last two statements
Statement::IfStatement(if_stmt) => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar to the previous question, I wonder if this can be done inside self.minimize_statement by running self.minimize_statement when the last item of result changed.

_ => {}
}
result.push(Statement::ForStatement(for_stmt));
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(I guess you're aware of it, but in case) I think ForInStatement, LabeledStatement, BlockStatement is missing here.

// Avoid cases where we have for(var x = foo() in a) { ....
Statement::ForInStatement(for_in_stmt) => {
!matches!(&for_in_stmt.left, ForStatementLeft::VariableDeclaration(_))
}
Statement::LabeledStatement(labeled_stmt) => {
Self::is_fusable_control_statement(&labeled_stmt.body)
}
Statement::BlockStatement(block) => {
can_merge_block_stmt(block)
&& block.body.first().is_some_and(Self::is_fusable_control_statement)
}

Statement::ForInStatement(for_stmt) => &mut for_stmt.right,
Statement::LabeledStatement(labeled_stmt) => {
Self::fuse_expression_into_control_flow_statement(
&mut labeled_stmt.body,
exprs,
ctx,
);
return;
}
Statement::BlockStatement(block) => {
Self::fuse_expression_into_control_flow_statement(
block.body.first_mut().unwrap(),
exprs,
ctx,
);
return;
}

Maybe BlockStatement should be handled in a different place though.

_ => {}
}
result.push(Statement::ForStatement(for_stmt));
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(I guess you're aware of it, but in case) I think merging VariableDeclaration + ForInStatement/ForOfStatement is missing too.

fn collapse_var_into_for_in_or_for_of(
&mut self,
i: usize,
stmts: &mut Vec<'a, Statement<'a>>,
ctx: Ctx<'a, '_>,
) {
if let Statement::VariableDeclaration(decl) = &stmts[i] {
if decl.kind.is_var()
&& decl.declarations.len() == 1
&& decl.declarations[0].init.is_none()
{
if let BindingPatternKind::BindingIdentifier(binding) =
&decl.declarations[0].id.kind
{
if let ForStatementLeft::AssignmentTargetIdentifier(target) =
match &stmts[i + 1] {
Statement::ForInStatement(stmt) => &stmt.left,
Statement::ForOfStatement(stmt) => &stmt.left,
_ => unreachable!(),
}
{
if binding.name == target.name {
let var_stmt = ctx.ast.move_statement(&mut stmts[i]);
let Statement::VariableDeclaration(var) = var_stmt else {
unreachable!()
};
let left = match &mut stmts[i + 1] {
Statement::ForInStatement(stmt) => &mut stmt.left,
Statement::ForOfStatement(stmt) => &mut stmt.left,
_ => unreachable!(),
};
*left = ForStatementLeft::VariableDeclaration(var);
self.mark_current_function_as_changed();
}
}
}
}
}
}

@oxc-bot oxc-bot mentioned this pull request Feb 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-ast Area - AST A-minifier Area - Minifier C-cleanup Category - technical debt or refactoring. Solution not expected to change behavior
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants