Commit 93e53da4 authored by mtrofin's avatar mtrofin Committed by Commit bot

[wasm] simpler detection if we compiled asm-wasm

BUG=643595

Review-Url: https://codereview.chromium.org/2582583002
Cr-Original-Commit-Position: refs/heads/master@{#41738}
Committed: https://chromium.googlesource.com/v8/v8/+/cb433bed0b940a7073b5215e6684b940eec54edd
Review-Url: https://codereview.chromium.org/2582583002
Cr-Commit-Position: refs/heads/master@{#41743}
parent 7333663d
...@@ -1366,22 +1366,11 @@ bool CodeGenerationFromStringsAllowed(Isolate* isolate, ...@@ -1366,22 +1366,11 @@ bool CodeGenerationFromStringsAllowed(Isolate* isolate,
} }
} }
bool ContainsAsmModule(const Scope* scope, Zone* zone) { bool ContainsAsmModule(Handle<Script> script) {
DCHECK_NOT_NULL(scope); DisallowHeapAllocation no_gc;
DCHECK_NOT_NULL(zone); SharedFunctionInfo::ScriptIterator iter(script);
ZoneQueue<const Scope*> worklist(zone); while (SharedFunctionInfo* info = iter.Next()) {
// We assume scopes form a tree, so no need to check for cycles if (info->HasAsmWasmData()) return true;
worklist.push(scope);
while (!worklist.empty()) {
const Scope* s = worklist.front();
worklist.pop();
if (s->IsAsmModule()) {
return true;
}
for (const Scope* child = s->inner_scope(); child != nullptr;
child = child->sibling()) {
worklist.push(child);
}
} }
return false; return false;
} }
...@@ -1528,7 +1517,7 @@ Handle<SharedFunctionInfo> Compiler::GetSharedFunctionInfoForScript( ...@@ -1528,7 +1517,7 @@ Handle<SharedFunctionInfo> Compiler::GetSharedFunctionInfoForScript(
compilation_cache->PutScript(source, context, language_mode, result); compilation_cache->PutScript(source, context, language_mode, result);
if (FLAG_serialize_toplevel && if (FLAG_serialize_toplevel &&
compile_options == ScriptCompiler::kProduceCodeCache && compile_options == ScriptCompiler::kProduceCodeCache &&
!ContainsAsmModule(info.scope(), &zone)) { !ContainsAsmModule(script)) {
HistogramTimerScope histogram_timer( HistogramTimerScope histogram_timer(
isolate->counters()->compile_serialize()); isolate->counters()->compile_serialize());
RuntimeCallTimerScope runtimeTimer(isolate, RuntimeCallTimerScope runtimeTimer(isolate,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment