| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_FLOW_GRAPH_COMPILER_X64_H_ | 5 #ifndef VM_FLOW_GRAPH_COMPILER_X64_H_ |
| 6 #define VM_FLOW_GRAPH_COMPILER_X64_H_ | 6 #define VM_FLOW_GRAPH_COMPILER_X64_H_ |
| 7 | 7 |
| 8 #ifndef VM_FLOW_GRAPH_COMPILER_H_ | 8 #ifndef VM_FLOW_GRAPH_COMPILER_H_ |
| 9 #error Include flow_graph_compiler.h instead of flow_graph_compiler_x64.h. | 9 #error Include flow_graph_compiler.h instead of flow_graph_compiler_x64.h. |
| 10 #endif | 10 #endif |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 // Infrastructure copied from class CodeGenerator or stubbed out. | 36 // Infrastructure copied from class CodeGenerator or stubbed out. |
| 37 void FinalizePcDescriptors(const Code& code); | 37 void FinalizePcDescriptors(const Code& code); |
| 38 void FinalizeStackmaps(const Code& code); | 38 void FinalizeStackmaps(const Code& code); |
| 39 void FinalizeVarDescriptors(const Code& code); | 39 void FinalizeVarDescriptors(const Code& code); |
| 40 void FinalizeExceptionHandlers(const Code& code); | 40 void FinalizeExceptionHandlers(const Code& code); |
| 41 void FinalizeComments(const Code& code); | 41 void FinalizeComments(const Code& code); |
| 42 | 42 |
| 43 Assembler* assembler() const { return assembler_; } | 43 Assembler* assembler() const { return assembler_; } |
| 44 | 44 |
| 45 private: | 45 private: |
| 46 // TODO(fschneider): Clean up friend-class declarations once all code | |
| 47 // generator templates have been moved to intermediate_language_x64.cc. | |
| 48 #define DECLARE_FRIEND(ShortName, ClassName) friend class ClassName; | |
| 49 FOR_EACH_COMPUTATION(DECLARE_FRIEND) | |
| 50 #undef DECLARE_FRIEND | |
| 51 | |
| 52 static const int kLocalsOffsetFromFP = (-1 * kWordSize); | 46 static const int kLocalsOffsetFromFP = (-1 * kWordSize); |
| 53 | 47 |
| 54 // Constructor is lighweight, major initialization work should occur here. | 48 // Constructor is lighweight, major initialization work should occur here. |
| 55 // This makes it easier to measure time spent in the compiler. | 49 // This makes it easier to measure time spent in the compiler. |
| 56 void InitCompiler(); | 50 void InitCompiler(); |
| 57 | 51 |
| 58 struct BlockInfo : public ZoneAllocated { | 52 struct BlockInfo : public ZoneAllocated { |
| 59 public: | 53 public: |
| 60 BlockInfo() : label() { } | 54 BlockInfo() : label() { } |
| 61 | 55 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 79 #define DECLARE_VISIT_INSTRUCTION(ShortName) \ | 73 #define DECLARE_VISIT_INSTRUCTION(ShortName) \ |
| 80 virtual void Visit##ShortName(ShortName##Instr* instr); | 74 virtual void Visit##ShortName(ShortName##Instr* instr); |
| 81 | 75 |
| 82 FOR_EACH_COMPUTATION(DECLARE_VISIT_COMPUTATION) | 76 FOR_EACH_COMPUTATION(DECLARE_VISIT_COMPUTATION) |
| 83 FOR_EACH_INSTRUCTION(DECLARE_VISIT_INSTRUCTION) | 77 FOR_EACH_INSTRUCTION(DECLARE_VISIT_INSTRUCTION) |
| 84 | 78 |
| 85 #undef DECLARE_VISIT_COMPUTATION | 79 #undef DECLARE_VISIT_COMPUTATION |
| 86 #undef DECLARE_VISIT_INSTRUCTION | 80 #undef DECLARE_VISIT_INSTRUCTION |
| 87 | 81 |
| 88 void EmitInstructionPrologue(Instruction* instr); | 82 void EmitInstructionPrologue(Instruction* instr); |
| 83 void LoadInputs(LocationSummary* summary); |
| 89 | 84 |
| 90 // Emit code to load a Value into register 'dst'. | 85 // Emit code to load a Value into register 'dst'. |
| 91 void LoadValue(Register dst, Value* value); | 86 void LoadValue(Register dst, Value* value); |
| 92 | 87 |
| 93 void EmitComment(Instruction* instr); | 88 void EmitComment(Instruction* instr); |
| 94 | 89 |
| 95 // Emit an instance call. | 90 // Emit an instance call. |
| 96 void EmitInstanceCall(intptr_t cid, | 91 void EmitInstanceCall(intptr_t cid, |
| 97 intptr_t token_index, | 92 intptr_t token_index, |
| 98 intptr_t try_index, | 93 intptr_t try_index, |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 DescriptorList* pc_descriptors_list_; | 155 DescriptorList* pc_descriptors_list_; |
| 161 ExceptionHandlerList* exception_handlers_list_; | 156 ExceptionHandlerList* exception_handlers_list_; |
| 162 const bool is_optimizing_; | 157 const bool is_optimizing_; |
| 163 | 158 |
| 164 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); | 159 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); |
| 165 }; | 160 }; |
| 166 | 161 |
| 167 } // namespace dart | 162 } // namespace dart |
| 168 | 163 |
| 169 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_ | 164 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_ |
| OLD | NEW |