// Copyright 2022 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "src/maglev/maglev.h" #include "src/common/globals.h" #include "src/maglev/maglev-compilation-info.h" #include "src/maglev/maglev-compiler.h" namespace v8 { namespace internal { MaybeHandle Maglev::Compile(Isolate* isolate, Handle function) { DCHECK(FLAG_maglev); auto info = maglev::MaglevCompilationInfo::New(isolate, function); maglev::MaglevCompilationUnit* const unit = info->toplevel_compilation_unit(); maglev::MaglevCompiler::Compile(isolate->main_thread_local_isolate(), unit); return maglev::MaglevCompiler::GenerateCode(unit); } } // namespace internal } // namespace v8