v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
baseline.h
Go to the documentation of this file.
1// Copyright 2020 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef V8_BASELINE_BASELINE_H_
6#define V8_BASELINE_BASELINE_H_
7
9
10namespace v8 {
11namespace internal {
12
13class Code;
14class SharedFunctionInfo;
15class MacroAssembler;
16
17bool CanCompileWithBaseline(Isolate* isolate,
19
20MaybeDirectHandle<Code> GenerateBaselineCode(Isolate* isolate,
22
23void EmitReturnBaseline(MacroAssembler* masm);
24
25} // namespace internal
26} // namespace v8
27
28#endif // V8_BASELINE_BASELINE_H_
Tagged(T object) -> Tagged< T >
MaybeDirectHandle< Code > GenerateBaselineCode(Isolate *isolate, Handle< SharedFunctionInfo > shared)
Definition baseline.cc:87
void EmitReturnBaseline(MacroAssembler *masm)
Definition baseline.cc:92
bool CanCompileWithBaseline(Isolate *isolate, Tagged< SharedFunctionInfo > shared)
Definition baseline.cc:82
Local< T > Handle