summaryrefslogtreecommitdiff
path: root/src/ir/import-utils.h
diff options
context:
space:
mode:
authorAbbas Mashayekh <martianboy2005@gmail.com>2021-02-10 01:17:28 +0330
committerGitHub <noreply@github.com>2021-02-09 13:47:28 -0800
commit3da8b08ecd57f5662bebc69ea73bf59e1928341e (patch)
tree2902eedc161579eaf37a1aed463de95916eee703 /src/ir/import-utils.h
parenta12a8250da24aa5b5787bf89562b243fdc514302 (diff)
downloadbinaryen-3da8b08ecd57f5662bebc69ea73bf59e1928341e.tar.gz
binaryen-3da8b08ecd57f5662bebc69ea73bf59e1928341e.tar.bz2
binaryen-3da8b08ecd57f5662bebc69ea73bf59e1928341e.zip
[reference-types] remove single table restriction in IR (#3517)
Adds support for modules with multiple tables. Adds a field for the table name to `CallIndirect` and updates the C/JS APIs accordingly.
Diffstat (limited to 'src/ir/import-utils.h')
-rw-r--r--src/ir/import-utils.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/ir/import-utils.h b/src/ir/import-utils.h
index 3f3d27f1b..e4a656379 100644
--- a/src/ir/import-utils.h
+++ b/src/ir/import-utils.h
@@ -29,6 +29,7 @@ struct ImportInfo {
std::vector<Global*> importedGlobals;
std::vector<Function*> importedFunctions;
+ std::vector<Table*> importedTables;
std::vector<Event*> importedEvents;
ImportInfo(Module& wasm) : wasm(wasm) {
@@ -42,6 +43,11 @@ struct ImportInfo {
importedFunctions.push_back(import.get());
}
}
+ for (auto& import : wasm.tables) {
+ if (import->imported()) {
+ importedTables.push_back(import.get());
+ }
+ }
for (auto& import : wasm.events) {
if (import->imported()) {
importedEvents.push_back(import.get());
@@ -80,12 +86,14 @@ struct ImportInfo {
Index getNumImportedFunctions() { return importedFunctions.size(); }
+ Index getNumImportedTables() { return importedTables.size(); }
+
Index getNumImportedEvents() { return importedEvents.size(); }
Index getNumImports() {
return getNumImportedGlobals() + getNumImportedFunctions() +
getNumImportedEvents() + (wasm.memory.imported() ? 1 : 0) +
- (wasm.table.imported() ? 1 : 0);
+ getNumImportedTables();
}
Index getNumDefinedGlobals() {
@@ -96,6 +104,10 @@ struct ImportInfo {
return wasm.functions.size() - getNumImportedFunctions();
}
+ Index getNumDefinedTables() {
+ return wasm.tables.size() - getNumImportedTables();
+ }
+
Index getNumDefinedEvents() {
return wasm.events.size() - getNumImportedEvents();
}