summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJérôme Vouillon <jerome.vouillon@gmail.com>2024-04-11 17:15:59 -0400
committerGitHub <noreply@github.com>2024-04-11 14:15:59 -0700
commitd662d732ff471ea40eacc68cf62391acf27eec4e (patch)
treea129f4d274e16f9ef7f3aacc2d9d5676afb9cac4 /src
parent729f64c4212c338a9e7324cc55414ecc62a78893 (diff)
downloadbinaryen-d662d732ff471ea40eacc68cf62391acf27eec4e.tar.gz
binaryen-d662d732ff471ea40eacc68cf62391acf27eec4e.tar.bz2
binaryen-d662d732ff471ea40eacc68cf62391acf27eec4e.zip
Fixes regarding explicit names (#6466)
- Only write explicit function names. - When merging modules, the name of types, globals and tags in all modules but the first were lost. - Set name as explicit when copying a function with a new name.
Diffstat (limited to 'src')
-rw-r--r--src/ir/module-splitting.cpp7
-rw-r--r--src/ir/module-utils.cpp13
-rw-r--r--src/wasm/wasm-binary.cpp32
-rw-r--r--src/wasm/wasm-s-parser.cpp1
4 files changed, 37 insertions, 16 deletions
diff --git a/src/ir/module-splitting.cpp b/src/ir/module-splitting.cpp
index 3d876bf7a..8ef0e7b8c 100644
--- a/src/ir/module-splitting.cpp
+++ b/src/ir/module-splitting.cpp
@@ -395,8 +395,9 @@ void ModuleSplitter::exportImportFunction(Name funcName) {
// Import the function if it is not already imported into the secondary
// module.
if (secondary.getFunctionOrNull(funcName) == nullptr) {
- auto func =
- Builder::makeFunction(funcName, primary.getFunction(funcName)->type, {});
+ auto primaryFunc = primary.getFunction(funcName);
+ auto func = Builder::makeFunction(funcName, primaryFunc->type, {});
+ func->hasExplicitName = primaryFunc->hasExplicitName;
func->module = config.importNamespace;
func->base = exportName;
secondary.addFunction(std::move(func));
@@ -542,7 +543,7 @@ void ModuleSplitter::setupTablePatching() {
placeholder->base = std::to_string(index);
placeholder->name = Names::getValidFunctionName(
primary, std::string("placeholder_") + placeholder->base.toString());
- placeholder->hasExplicitName = false;
+ placeholder->hasExplicitName = true;
placeholder->type = secondaryFunc->type;
elem = placeholder->name;
primary.addFunction(std::move(placeholder));
diff --git a/src/ir/module-utils.cpp b/src/ir/module-utils.cpp
index fdee4f869..8d9e88d18 100644
--- a/src/ir/module-utils.cpp
+++ b/src/ir/module-utils.cpp
@@ -48,6 +48,7 @@ Function* copyFunction(Function* func,
std::optional<std::vector<Index>> fileIndexMap) {
auto ret = std::make_unique<Function>();
ret->name = newName.is() ? newName : func->name;
+ ret->hasExplicitName = func->hasExplicitName;
ret->type = func->type;
ret->vars = func->vars;
ret->localNames = func->localNames;
@@ -77,6 +78,7 @@ Function* copyFunction(Function* func,
Global* copyGlobal(Global* global, Module& out) {
auto* ret = new Global();
ret->name = global->name;
+ ret->hasExplicitName = global->hasExplicitName;
ret->type = global->type;
ret->mutable_ = global->mutable_;
ret->module = global->module;
@@ -93,6 +95,7 @@ Global* copyGlobal(Global* global, Module& out) {
Tag* copyTag(Tag* tag, Module& out) {
auto* ret = new Tag();
ret->name = tag->name;
+ ret->hasExplicitName = tag->hasExplicitName;
ret->sig = tag->sig;
ret->module = tag->module;
ret->base = tag->base;
@@ -209,8 +212,17 @@ void copyModuleItems(const Module& in, Module& out) {
for (auto& curr : in.dataSegments) {
copyDataSegment(curr.get(), out);
}
+
+ for (auto& [type, names] : in.typeNames) {
+ if (!out.typeNames.count(type)) {
+ out.typeNames[type] = names;
+ }
+ }
}
+// TODO: merge this with copyModuleItems, and add options for copying
+// exports and other things that are currently different between them,
+// if we still need those differences.
void copyModule(const Module& in, Module& out) {
// we use names throughout, not raw pointers, so simple copying is fine
// for everything *but* expressions
@@ -222,7 +234,6 @@ void copyModule(const Module& in, Module& out) {
out.customSections = in.customSections;
out.debugInfoFileNames = in.debugInfoFileNames;
out.features = in.features;
- out.typeNames = in.typeNames;
}
void clearModule(Module& wasm) {
diff --git a/src/wasm/wasm-binary.cpp b/src/wasm/wasm-binary.cpp
index 869b44f2c..b45fe84c8 100644
--- a/src/wasm/wasm-binary.cpp
+++ b/src/wasm/wasm-binary.cpp
@@ -864,19 +864,27 @@ void WasmBinaryWriter::writeNames() {
// function names
{
- auto substart =
- startSubsection(BinaryConsts::CustomSections::Subsection::NameFunction);
- o << U32LEB(indexes.functionIndexes.size());
- Index emitted = 0;
- auto add = [&](Function* curr) {
- o << U32LEB(emitted);
- writeEscapedName(curr->name.str);
- emitted++;
+ std::vector<std::pair<Index, Function*>> functionsWithNames;
+ Index checked = 0;
+ auto check = [&](Function* curr) {
+ if (curr->hasExplicitName) {
+ functionsWithNames.push_back({checked, curr});
+ }
+ checked++;
};
- ModuleUtils::iterImportedFunctions(*wasm, add);
- ModuleUtils::iterDefinedFunctions(*wasm, add);
- assert(emitted == indexes.functionIndexes.size());
- finishSubsection(substart);
+ ModuleUtils::iterImportedFunctions(*wasm, check);
+ ModuleUtils::iterDefinedFunctions(*wasm, check);
+ assert(checked == indexes.functionIndexes.size());
+ if (functionsWithNames.size() > 0) {
+ auto substart =
+ startSubsection(BinaryConsts::CustomSections::Subsection::NameFunction);
+ o << U32LEB(functionsWithNames.size());
+ for (auto& [index, global] : functionsWithNames) {
+ o << U32LEB(index);
+ writeEscapedName(global->name.str);
+ }
+ finishSubsection(substart);
+ }
}
// local names
diff --git a/src/wasm/wasm-s-parser.cpp b/src/wasm/wasm-s-parser.cpp
index 5ac36fda7..eb31355c8 100644
--- a/src/wasm/wasm-s-parser.cpp
+++ b/src/wasm/wasm-s-parser.cpp
@@ -1181,6 +1181,7 @@ void SExpressionWasmBuilder::parseFunction(Element& s, bool preParseImport) {
// make a new function
currFunction = std::unique_ptr<Function>(
Builder(wasm).makeFunction(name, std::move(params), type, std::move(vars)));
+ currFunction->hasExplicitName = hasExplicitName;
currFunction->profile = profile;
// parse body