HomeSort by relevance Sort by last modified time
    Searched refs:WasmModule (Results 1 - 17 of 17) sorted by null

  /external/v8/src/wasm/
wasm-text.h 23 struct WasmModule;
30 const WasmModule *module, const ModuleWireBytes &wire_bytes,
wasm-module.h 143 struct V8_EXPORT_PRIVATE WasmModule {
180 WasmModule() : WasmModule(nullptr) {}
181 WasmModule(Zone* owned_zone);
182 ~WasmModule() {
187 typedef Managed<WasmModule> WasmModuleWrapper;
191 const WasmModule* module; // static representation of the module.
204 explicit WasmInstance(const WasmModule* m)
273 ModuleEnv(const WasmModule* module, WasmInstance* instance)
276 const WasmModule* module
    [all...]
function-body-decoder.h 30 struct WasmModule; // forward declaration of module interface.
54 const wasm::WasmModule* module,
59 const wasm::WasmModule* module);
65 const WasmModule* module, FunctionSig* sig,
module-decoder.h 45 typedef Result<const WasmModule*> ModuleResult;
module-decoder.cc 71 ValueType TypeOf(const WasmModule* module, const WasmInitExpr& expr) {
258 WasmModule* module = new WasmModule(module_zone);
686 const WasmModule* finished_module = module;
732 bool AddTable(WasmModule* module) {
741 bool AddMemory(WasmModule* module) {
752 void DecodeGlobalInModule(WasmModule* module, uint32_t index,
792 void DecodeDataSegmentInModule(WasmModule* module, WasmDataSegment* segment) {
810 void CalculateGlobalOffsets(WasmModule* module) {
    [all...]
wasm-objects.h 18 struct WasmModule;
131 wasm::WasmModule* module();
173 DECLARE_GETTER(module, wasm::WasmModule);
318 FORWARD_SHARED(wasm::WasmModule*, module)
wasm-module.cc 171 const wasm::WasmModule* module,
211 CompilationHelper(Isolate* isolate, WasmModule* module)
229 WasmModule* module_;
320 const WasmModule* module = module_env->module_env.module;
378 const WasmModule* module = module_env->module_env.module;
404 // The {module_wrapper} will take ownership of the {WasmModule} object,
410 temp_instance.mem_size = WasmModule::kPageSize * module_->min_mem_pages;
486 // {WasmModule}. E.g. function bodies could be omitted.
731 WasmModule* module = compiled_module->module();
766 if (size > (FLAG_wasm_max_mem_pages * WasmModule::kPageSize))
    [all...]
wasm-text.cc 35 void wasm::PrintWasmText(const WasmModule *module,
wasm-objects.cc 356 return SafeUint32(buffer()->byte_length()) / wasm::WasmModule::kPageSize;
409 WasmModule* WasmInstanceObject::module() { return compiled_module()->module(); }
533 wasm::WasmModule* WasmSharedModuleData::module() {
535 // address to the address of a WasmModule. This is because we can
536 // handle both cases when the WasmModule's lifetime is managed through
537 // a Managed<WasmModule> object, as well as cases when it's managed
539 return *(reinterpret_cast<wasm::WasmModule**>(
594 WasmModule* module = nullptr;
609 module = const_cast<WasmModule*>(result.val);
834 return min_mem_pages() * WasmModule::kPageSize
    [all...]
wasm-interpreter.cc 627 new_size = delta_pages * wasm::WasmModule::kPageSize;
634 new_size = old_size + delta_pages * wasm::WasmModule::kPageSize;
635 if (new_size / wasm::WasmModule::kPageSize > FLAG_wasm_max_mem_pages ||
636 new_size / wasm::WasmModule::kPageSize >
649 return static_cast<int32_t>(old_size / WasmModule::kPageSize);
844 const WasmModule* module_;
847 CodeMap(const WasmModule* module, const uint8_t* module_start, Zone* zone)
    [all...]
wasm-code-specialization.cc 112 WasmModule* module = compiled_module->module();
function-body-decoder.cc 160 WasmDecoder(const WasmModule* module, FunctionSig* sig, const byte* start,
166 const WasmModule* module_;
517 WasmFullDecoder(Zone* zone, const wasm::WasmModule* module,
583 WasmFullDecoder(Zone* zone, const wasm::WasmModule* module,
    [all...]
wasm-debug.cc 66 const WasmModule* module() { return instance_.module; }
wasm-js.cc 489 size_t size = static_cast<size_t>(i::wasm::WasmModule::kPageSize) *
    [all...]
  /external/v8/src/compiler/
wasm-compiler.h 37 struct WasmModule;
104 const wasm::WasmModule* module,
wasm-compiler.cc     [all...]
  /external/swiftshader/third_party/subzero/src/
WasmTranslator.cpp 132 std::string getFunctionName(const WasmModule *Module, uint32_t func_index) {
    [all...]

Completed in 153 milliseconds