| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_COMPILER_PIPELINE_H_ | 5 #ifndef V8_COMPILER_PIPELINE_H_ |
| 6 #define V8_COMPILER_PIPELINE_H_ | 6 #define V8_COMPILER_PIPELINE_H_ |
| 7 | 7 |
| 8 // Clients of this interface shouldn't depend on lots of compiler internals. | 8 // Clients of this interface shouldn't depend on lots of compiler internals. |
| 9 // Do not include anything from src/compiler here! | 9 // Do not include anything from src/compiler here! |
| 10 #include "src/compiler.h" | 10 #include "src/compiler.h" |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 void Run(Arg0 arg_0); | 67 void Run(Arg0 arg_0); |
| 68 | 68 |
| 69 CompilationInfo* info() const { return info_; } | 69 CompilationInfo* info() const { return info_; } |
| 70 Isolate* isolate() { return info_->isolate(); } | 70 Isolate* isolate() { return info_->isolate(); } |
| 71 | 71 |
| 72 void BeginPhaseKind(const char* phase_kind); | 72 void BeginPhaseKind(const char* phase_kind); |
| 73 void RunPrintAndVerify(const char* phase, bool untyped = false); | 73 void RunPrintAndVerify(const char* phase, bool untyped = false); |
| 74 Handle<Code> ScheduleAndGenerateCode(CallDescriptor* call_descriptor); | 74 Handle<Code> ScheduleAndGenerateCode(CallDescriptor* call_descriptor); |
| 75 void AllocateRegisters(const RegisterConfiguration* config, | 75 void AllocateRegisters(const RegisterConfiguration* config, |
| 76 CallDescriptor* descriptor, bool run_verifier); | 76 CallDescriptor* descriptor, bool run_verifier); |
| 77 |
| 78 void InitializeFrame(CallDescriptor* descriptor); |
| 77 }; | 79 }; |
| 78 | 80 |
| 79 } // namespace compiler | 81 } // namespace compiler |
| 80 } // namespace internal | 82 } // namespace internal |
| 81 } // namespace v8 | 83 } // namespace v8 |
| 82 | 84 |
| 83 #endif // V8_COMPILER_PIPELINE_H_ | 85 #endif // V8_COMPILER_PIPELINE_H_ |
| OLD | NEW |