summaryrefslogtreecommitdiff
path: root/src/wasm/wasm-binary.cpp
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2016-11-10 16:45:27 -0800
committerGitHub <noreply@github.com>2016-11-10 16:45:27 -0800
commita3afc150c3768b351434c734448b7ab456d17f57 (patch)
tree8532f1d284164ee94e8606e2daaeebb387bbcbf1 /src/wasm/wasm-binary.cpp
parent3dac399ba503e05ee014e96a7ce9c82f29f6981c (diff)
parentf0c32b28cb01fe17cf86c0f48b56bb221407ad76 (diff)
downloadbinaryen-a3afc150c3768b351434c734448b7ab456d17f57.tar.gz
binaryen-a3afc150c3768b351434c734448b7ab456d17f57.tar.bz2
binaryen-a3afc150c3768b351434c734448b7ab456d17f57.zip
Merge pull request #831 from WebAssembly/symbol-map
Symbols fixes
Diffstat (limited to 'src/wasm/wasm-binary.cpp')
-rw-r--r--src/wasm/wasm-binary.cpp51
1 files changed, 48 insertions, 3 deletions
diff --git a/src/wasm/wasm-binary.cpp b/src/wasm/wasm-binary.cpp
index d2a648294..4a4c878e9 100644
--- a/src/wasm/wasm-binary.cpp
+++ b/src/wasm/wasm-binary.cpp
@@ -43,6 +43,7 @@ void WasmBinaryWriter::write() {
writeFunctions();
writeDataSegments();
if (debugInfo) writeNames();
+ if (symbolMap.size() > 0) writeSymbolMap();
finishUp();
}
@@ -368,18 +369,53 @@ void WasmBinaryWriter::writeTableElements() {
}
void WasmBinaryWriter::writeNames() {
- if (wasm->functions.size() == 0) return;
+ bool hasContents = false;
+ if (wasm->functions.size() > 0) {
+ hasContents = true;
+ getFunctionIndex(wasm->functions[0]->name); // generate mappedFunctions
+ } else {
+ for (auto& import : wasm->imports) {
+ if (import->kind == ExternalKind::Function) {
+ hasContents = true;
+ getFunctionIndex(import->name); // generate mappedFunctions
+ break;
+ }
+ }
+ }
+ if (!hasContents) return;
if (debug) std::cerr << "== writeNames" << std::endl;
auto start = startSection(BinaryConsts::Section::User);
writeInlineString(BinaryConsts::UserSections::Name);
- o << U32LEB(wasm->functions.size());
+ o << U32LEB(mappedFunctions.size());
+ Index emitted = 0;
+ for (auto& import : wasm->imports) {
+ if (import->kind == ExternalKind::Function) {
+ writeInlineString(import->name.str);
+ o << U32LEB(0); // TODO: locals
+ emitted++;
+ }
+ }
for (auto& curr : wasm->functions) {
writeInlineString(curr->name.str);
o << U32LEB(0); // TODO: locals
+ emitted++;
}
+ assert(emitted == mappedFunctions.size());
finishSection(start);
}
+void WasmBinaryWriter::writeSymbolMap() {
+ std::ofstream file(symbolMap);
+ for (auto& import : wasm->imports) {
+ if (import->kind == ExternalKind::Function) {
+ file << getFunctionIndex(import->name) << ":" << import->name.str << std::endl;
+ }
+ }
+ for (auto& func : wasm->functions) {
+ file << getFunctionIndex(func->name) << ":" << func->name.str << std::endl;
+ }
+ file.close();
+}
void WasmBinaryWriter::writeInlineString(const char* name) {
int32_t size = strlen(name);
@@ -1387,7 +1423,16 @@ void WasmBinaryBuilder::readTableElements() {
void WasmBinaryBuilder::readNames() {
if (debug) std::cerr << "== readNames" << std::endl;
auto num = getU32LEB();
- assert(num == functions.size());
+ if (num == 0) return;
+ for (auto& import : wasm.imports) {
+ if (import->kind == ExternalKind::Function) {
+ getInlineString(); // TODO: use this
+ auto numLocals = getU32LEB();
+ WASM_UNUSED(numLocals);
+ assert(numLocals == 0); // TODO
+ if (--num == 0) return;
+ }
+ }
for (size_t i = 0; i < num; i++) {
functions[i]->name = getInlineString();
auto numLocals = getU32LEB();