| Index: src/compiler/pipeline.h
|
| diff --git a/src/compiler/pipeline.h b/src/compiler/pipeline.h
|
| index 4e3635d0f69c5b98009b1f3063c4a61c421a1958..90c223f67ea6ef0529f934d264d1cd706a40cb9a 100644
|
| --- a/src/compiler/pipeline.h
|
| +++ b/src/compiler/pipeline.h
|
| @@ -40,23 +40,19 @@ class Pipeline {
|
| Graph* graph,
|
| Schedule* schedule = nullptr);
|
|
|
| - // 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(Isolate* isolate,
|
| - CallDescriptor* call_descriptor,
|
| - Graph* graph,
|
| - Schedule* schedule = nullptr);
|
| -
|
| // Run just the register allocator phases.
|
| static bool AllocateRegistersForTesting(const RegisterConfiguration* config,
|
| InstructionSequence* sequence,
|
| bool run_verifier);
|
|
|
| - private:
|
| + // 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,
|
| CallDescriptor* call_descriptor,
|
| - Graph* graph, Schedule* schedule);
|
| + Graph* graph,
|
| + Schedule* schedule = nullptr);
|
|
|
| + private:
|
| CompilationInfo* info_;
|
| PipelineData* data_;
|
|
|
|
|