// Copyright 2014 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. #ifndef V8_COMPILER_JS_INLINING_H_ #define V8_COMPILER_JS_INLINING_H_ #include "src/compiler/graph-reducer.h" #include "src/compiler/js-graph.h" #include "src/compiler/node-origin-table.h" namespace v8 { namespace internal { class BytecodeOffset; class OptimizedCompilationInfo; namespace compiler { class SourcePositionTable; // The JSInliner provides the core graph inlining machinery. Note that this // class only deals with the mechanics of how to inline one graph into another, // heuristics that decide what and how much to inline are beyond its scope. class JSInliner final : public AdvancedReducer { … }; } // namespace compiler } // namespace internal } // namespace v8 #endif // V8_COMPILER_JS_INLINING_H_