| Index: src/compiler/pipeline.h
|
| diff --git a/src/compiler/pipeline.h b/src/compiler/pipeline.h
|
| index ea8b7e9b4bd0ccc5b4467c3da094b23e71b856e2..4e3635d0f69c5b98009b1f3063c4a61c421a1958 100644
|
| --- a/src/compiler/pipeline.h
|
| +++ b/src/compiler/pipeline.h
|
| @@ -28,6 +28,12 @@ class Pipeline {
|
| // Run the entire pipeline and generate a handle to a code object.
|
| Handle<Code> GenerateCode();
|
|
|
| + // Run the pipeline on an interpreter bytecode handler machine graph and
|
| + // generate code.
|
| + static Handle<Code> GenerateCodeForInterpreter(
|
| + Isolate* isolate, CallDescriptor* call_descriptor, Graph* graph,
|
| + Schedule* schedule, const char* bytecode_name);
|
| +
|
| // Run the pipeline on a machine graph and generate code. If {schedule} is
|
| // {nullptr}, then compute a new schedule for code generation.
|
| static Handle<Code> GenerateCodeForTesting(CompilationInfo* info,
|
|
|