Chromium Code Reviews| Index: src/compiler/pipeline.h |
| diff --git a/src/compiler/pipeline.h b/src/compiler/pipeline.h |
| index 6a0253611b73ab6985f8b90e80061ede4167f0ec..8e601ec4d2f4089d690125c4c7a37acf1b7cfcf2 100644 |
| --- a/src/compiler/pipeline.h |
| +++ b/src/compiler/pipeline.h |
| @@ -83,6 +83,9 @@ class Pipeline { |
| // TODO(mstarzinger, bmeurer): This shouldn't be public! |
| bool ScheduleAndSelectInstructions(Linkage* linkage); |
| + // TODO(mstarzinger, bmeurer): This shouldn't be public! |
| + void RunPrintAndVerify(const char* phase, bool untyped = false); |
|
titzer
2016/04/28 08:39:58
I think it'd be better to make PipelineWasmCompila
Clemens Hammacher
2016/04/28 15:30:09
Yes, I think this is nicer, even though the Pipeli
|
| + |
| private: |
| // Helpers for executing pipeline phases. |
| template <typename Phase> |
| @@ -94,7 +97,6 @@ class Pipeline { |
| void BeginPhaseKind(const char* phase_kind); |
| void EndPhaseKind(); |
| - void RunPrintAndVerify(const char* phase, bool untyped = false); |
| Handle<Code> ScheduleAndGenerateCode(CallDescriptor* call_descriptor); |
| void AllocateRegisters(const RegisterConfiguration* config, |
| CallDescriptor* descriptor, bool run_verifier); |