v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
interpreter-generator.h
Go to the documentation of this file.
1// Copyright 2017 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_INTERPRETER_INTERPRETER_GENERATOR_H_
6#define V8_INTERPRETER_INTERPRETER_GENERATOR_H_
7
10
11namespace v8 {
12namespace internal {
13
14namespace compiler {
16}
17
18struct AssemblerOptions;
19enum class Builtin;
20
21namespace interpreter {
22
23extern void GenerateBytecodeHandler(compiler::CodeAssemblerState* state,
24 Bytecode bytecode,
25 OperandScale operand_scale);
26
27} // namespace interpreter
28} // namespace internal
29} // namespace v8
30
31#endif // V8_INTERPRETER_INTERPRETER_GENERATOR_H_
void GenerateBytecodeHandler(compiler::CodeAssemblerState *state, Bytecode bytecode, OperandScale operand_scale)
compiler::CodeAssemblerState CodeAssemblerState