| Index: src/compiler/pipeline.cc
|
| diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
|
| index a9a6cc4767a734e104bcd00abcf9c6b7945db5c8..1752882779c78fe7b2f3baf11e6172a140e9083f 100644
|
| --- a/src/compiler/pipeline.cc
|
| +++ b/src/compiler/pipeline.cc
|
| @@ -9,6 +9,7 @@
|
| #include "src/compiler/code-generator.h"
|
| #include "src/compiler/graph-replay.h"
|
| #include "src/compiler/graph-visualizer.h"
|
| +#include "src/compiler/instruction.h"
|
| #include "src/compiler/instruction-selector.h"
|
| #include "src/compiler/js-context-specialization.h"
|
| #include "src/compiler/js-generic-lowering.h"
|
| @@ -288,6 +289,16 @@ Handle<Code> Pipeline::GenerateCode(Linkage* linkage, Graph* graph,
|
| return generator.GenerateCode();
|
| }
|
|
|
| +
|
| +void Pipeline::SetUp() {
|
| + InstructionOperand::SetUpCaches();
|
| +}
|
| +
|
| +
|
| +void Pipeline::TearDown() {
|
| + InstructionOperand::TearDownCaches();
|
| +}
|
| +
|
| } // namespace compiler
|
| } // namespace internal
|
| } // namespace v8
|
|
|