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

Set an absolute maximum inlining limit #3959

Merged
merged 2 commits into from
Jul 1, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/ir/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,17 @@ struct Measurer

void visitExpression(Expression* curr) { size++; }

// Measure the number of expressions.
static Index measure(Expression* tree) {
Measurer measurer;
measurer.walk(tree);
return measurer.size;
}

// A rough estimate of average binary size per expression. The number here is
// based on measurements on real-world (MVP) wasm files, on which observed
// ratios were 2.2 - 2.8.
static constexpr double BytesPerExpr = 2.5;
};

struct ExpressionAnalyzer {
Expand Down
17 changes: 17 additions & 0 deletions src/passes/Inlining.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,9 @@ struct Inlining : public Pass {
continue;
}
Name inlinedName = inlinedFunction->name;
if (!canInlineInto(func->name, inlinedName)) {
continue;
}
#ifdef INLINING_DEBUG
std::cout << "inline " << inlinedName << " into " << func->name << '\n';
#endif
Expand All @@ -446,6 +449,20 @@ struct Inlining : public Pass {
// return whether we did any work
return inlinedUses.size() > 0;
}

// Checks if we are allowed to inline source into target.
bool canInlineInto(Name target, Name source) {
Copy link
Member

Choose a reason for hiding this comment

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

Nit: How about isProfitableToInline or something..? It is not that technically we cannot inline but we choose not to because of performance reasons..

Copy link
Member

Choose a reason for hiding this comment

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

Maybe isUnderSizeLimit to be precise?

// We wish to avoid certain extremely-large sizes after inlining, as they
// may hit limits in VMs and/or slow down startup (measurements there
// indicate something like ~1 second to optimize a 100K function). See e.g.
// https://github.com/WebAssembly/binaryen/pull/3730#issuecomment-867939138
// https://github.com/emscripten-core/emscripten/issues/13899#issuecomment-825073344
auto combinedSize = infos[target].size + infos[source].size;
// Estimate the binary size from the number of instructions.
auto estimatedBinarySize = Measurer::BytesPerExpr * combinedSize;
const Index MaxCombinedBinarySize = 400 * 1024;
Copy link
Member

Choose a reason for hiding this comment

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

Is this an arbitrary limit? Maybe good to add a single-line comment on what this is. If this is an arbitrary limit, stating that will help readers too, in case they think this number has a specific meaning.

return estimatedBinarySize < MaxCombinedBinarySize;
}
};

Pass* createInliningPass() { return new Inlining(); }
Expand Down