OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_LITHIUM_CODEGEN_H_ | 5 #ifndef V8_LITHIUM_CODEGEN_H_ |
6 #define V8_LITHIUM_CODEGEN_H_ | 6 #define V8_LITHIUM_CODEGEN_H_ |
7 | 7 |
8 #include "src/v8.h" | 8 #include "src/v8.h" |
9 | 9 |
10 #include "src/bailout-reason.h" | 10 #include "src/bailout-reason.h" |
(...skipping 17 matching lines...) Loading... |
28 MacroAssembler* masm() const { return masm_; } | 28 MacroAssembler* masm() const { return masm_; } |
29 CompilationInfo* info() const { return info_; } | 29 CompilationInfo* info() const { return info_; } |
30 Isolate* isolate() const { return info_->isolate(); } | 30 Isolate* isolate() const { return info_->isolate(); } |
31 Factory* factory() const { return isolate()->factory(); } | 31 Factory* factory() const { return isolate()->factory(); } |
32 Heap* heap() const { return isolate()->heap(); } | 32 Heap* heap() const { return isolate()->heap(); } |
33 Zone* zone() const { return zone_; } | 33 Zone* zone() const { return zone_; } |
34 LPlatformChunk* chunk() const { return chunk_; } | 34 LPlatformChunk* chunk() const { return chunk_; } |
35 HGraph* graph() const; | 35 HGraph* graph() const; |
36 | 36 |
37 void FPRINTF_CHECKING Comment(const char* format, ...); | 37 void FPRINTF_CHECKING Comment(const char* format, ...); |
| 38 void Comment(bool force, const char* string); |
38 void DeoptComment(const Deoptimizer::Reason& reason); | 39 void DeoptComment(const Deoptimizer::Reason& reason); |
39 | 40 |
40 bool GenerateBody(); | 41 bool GenerateBody(); |
41 virtual void GenerateBodyInstructionPre(LInstruction* instr) {} | 42 virtual void GenerateBodyInstructionPre(LInstruction* instr) {} |
42 virtual void GenerateBodyInstructionPost(LInstruction* instr) {} | 43 virtual void GenerateBodyInstructionPost(LInstruction* instr) {} |
43 | 44 |
44 virtual void EnsureSpaceForLazyDeopt(int space_needed) = 0; | 45 virtual void EnsureSpaceForLazyDeopt(int space_needed) = 0; |
45 virtual void RecordAndWritePosition(int position) = 0; | 46 virtual void RecordAndWritePosition(int position) = 0; |
46 | 47 |
47 int GetNextEmittedBlock() const; | 48 int GetNextEmittedBlock() const; |
(...skipping 33 matching lines...) Loading... |
81 | 82 |
82 // Methods for code dependencies. | 83 // Methods for code dependencies. |
83 void AddDeprecationDependency(Handle<Map> map); | 84 void AddDeprecationDependency(Handle<Map> map); |
84 void AddStabilityDependency(Handle<Map> map); | 85 void AddStabilityDependency(Handle<Map> map); |
85 }; | 86 }; |
86 | 87 |
87 | 88 |
88 } } // namespace v8::internal | 89 } } // namespace v8::internal |
89 | 90 |
90 #endif // V8_LITHIUM_CODEGEN_H_ | 91 #endif // V8_LITHIUM_CODEGEN_H_ |
OLD | NEW |