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

  /external/v8/src/wasm/
wasm-objects.h 21 class WasmCompiledModule;
52 WasmCompiledModule* compiled_module();
55 Isolate* isolate, Handle<WasmCompiledModule> compiled_module);
123 DECLARE_ACCESSORS(compiled_module, WasmCompiledModule);
139 Isolate* isolate, Handle<WasmCompiledModule> compiled_module);
159 // Information shared by all WasmCompiledModule objects for the same module.
197 class WasmCompiledModule : public FixedArray {
201 static WasmCompiledModule* cast(Object* fixed_array) {
203 return reinterpret_cast<WasmCompiledModule*>(fixed_array);
268 MACRO(WEAK_LINK, WasmCompiledModule, next_instance)
    [all...]
wasm-objects.cc 98 Handle<WasmCompiledModule>> {
101 Handle<WasmCompiledModule> start_module, bool at_end)
104 current_(at_end ? Handle<WasmCompiledModule>::null() : start_module) {}
106 Handle<WasmCompiledModule> operator*() const {
126 handle(WasmCompiledModule::cast(weak_next->value()), isolate_);
138 handle(WasmCompiledModule::cast(weak_prev->value()), isolate_);
142 current_ = Handle<WasmCompiledModule>::null();
147 Handle<WasmCompiledModule> start_module_;
148 Handle<WasmCompiledModule> current_;
159 Handle<WasmCompiledModule> start_module
    [all...]
wasm-module.cc 507 Handle<WasmCompiledModule> compiled_module =
508 WasmCompiledModule::New(isolate_, shared);
548 WasmCompiledModule* compiled_module) {
666 WasmCompiledModule* compiled_module = owner->compiled_module();
676 WasmCompiledModule* current_template =
677 WasmCompiledModule::cast(wasm_module->GetInternalField(0));
694 WasmCompiledModule::cast(next->value())->reset_weak_prev_instance();
704 WasmCompiledModule::cast(prev->value())->reset_weak_next_instance();
706 WasmCompiledModule::cast(prev->value())
713 WasmCompiledModule::cast(next->value())->reset_weak_prev_instance()
    [all...]
wasm-code-specialization.cc 48 WasmCompiledModule* comp_mod = instance->compiled_module();
110 WasmCompiledModule* compiled_module = instance->compiled_module();
wasm-module.h 23 class WasmCompiledModule;
383 int GetFunctionCodeOffset(Handle<WasmCompiledModule> compiled_module,
wasm-debug.cc 202 Handle<WasmCompiledModule> compiled_module(
240 int GetTopPosition(Handle<WasmCompiledModule> compiled_module) {
  /external/v8/src/snapshot/
code-serializer.cc 244 Handle<WasmCompiledModule> compiled_module =
245 Handle<WasmCompiledModule>::cast(input);
289 Handle<WasmCompiledModule> compiled_module(
290 static_cast<WasmCompiledModule*>(*obj.ToHandleChecked()), isolate);
292 WasmCompiledModule::ReinitializeAfterDeserialization(isolate,
294 DCHECK(WasmCompiledModule::IsWasmCompiledModule(*compiled_module));
  /external/v8/src/runtime/
runtime-test.cc 55 v8::Local<v8::WasmCompiledModule> module =
56 v8::Local<v8::WasmCompiledModule>::Cast(module_or_bytes);
834 Handle<WasmCompiledModule> orig(module_obj->compiled_module());
878 isolate, Handle<WasmCompiledModule>::cast(compiled_module));
runtime-debug.cc     [all...]
  /external/v8/src/
messages.cc 658 Handle<WasmCompiledModule> compiled_module(
661 if (!WasmCompiledModule::GetFunctionNameOrNull(isolate_, compiled_module,
748 Handle<WasmCompiledModule> compiled_module(
751 return WasmCompiledModule::GetAsmJsSourcePosition(
    [all...]
api.cc     [all...]
frames.cc     [all...]
value-serializer.cc 806 Handle<WasmCompiledModule> compiled_part(
807 WasmCompiledModule::cast(object->GetInternalField(0)), isolate_);
    [all...]
isolate.cc 717 Handle<WasmCompiledModule> compiled_module(
719 Handle<String> name = WasmCompiledModule::GetFunctionName(
    [all...]
objects.cc     [all...]
  /external/v8/include/
v8.h     [all...]
  /external/v8/src/debug/
debug.cc 674 Handle<WasmCompiledModule> compiled_module(
675 WasmCompiledModule::cast(script->wasm_compiled_module()), isolate_);
676 return WasmCompiledModule::SetBreakPoint(compiled_module, source_position,
    [all...]

Completed in 138 milliseconds