Home | History | Annotate | Download | only in src

Lines Matching refs:Globals

1497   LOG(out << "  number of globals:       " << Module->globals.size() << "\n");
1578 unique_ptr<VariableDeclarationList> Globals =
1582 auto *WasmMemory = VariableDeclaration::createExternal(Globals.get());
1591 Globals.get(), Seg.dest_addr - WritePtr));
1597 Globals.get(), reinterpret_cast<const char *>(Module->module_start) +
1606 auto *GlobalDataSize = VariableDeclaration::createExternal(Globals.get());
1609 Globals.get(), reinterpret_cast<const char *>(&WritePtr),
1613 auto *GlobalNumPages = VariableDeclaration::createExternal(Globals.get());
1616 Globals.get(), reinterpret_cast<const char *>(&Module->min_mem_pages),
1619 Globals->push_back(WasmMemory);
1620 Globals->push_back(GlobalDataSize);
1621 Globals->push_back(GlobalNumPages);
1623 lowerGlobals(std::move(Globals));