| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 intptr_t deopt_id, | 181 intptr_t deopt_id, |
| 182 intptr_t token_pos, | 182 intptr_t token_pos, |
| 183 intptr_t try_index); | 183 intptr_t try_index); |
| 184 | 184 |
| 185 void RecordSafepoint(LocationSummary* locs); | 185 void RecordSafepoint(LocationSummary* locs); |
| 186 | 186 |
| 187 Label* AddDeoptStub(intptr_t deopt_id, | 187 Label* AddDeoptStub(intptr_t deopt_id, |
| 188 intptr_t try_index_, | 188 intptr_t try_index_, |
| 189 DeoptReasonId reason); | 189 DeoptReasonId reason); |
| 190 | 190 |
| 191 void AddDeoptIndexAtCall(intptr_t deopt_id, intptr_t token_pos); |
| 192 |
| 191 void AddSlowPathCode(SlowPathCode* slow_path); | 193 void AddSlowPathCode(SlowPathCode* slow_path); |
| 192 | 194 |
| 193 void FinalizeExceptionHandlers(const Code& code); | 195 void FinalizeExceptionHandlers(const Code& code); |
| 194 void FinalizePcDescriptors(const Code& code); | 196 void FinalizePcDescriptors(const Code& code); |
| 195 void FinalizeDeoptInfo(const Code& code); | 197 void FinalizeDeoptInfo(const Code& code); |
| 196 void FinalizeStackmaps(const Code& code); | 198 void FinalizeStackmaps(const Code& code); |
| 197 void FinalizeVarDescriptors(const Code& code); | 199 void FinalizeVarDescriptors(const Code& code); |
| 198 void FinalizeComments(const Code& code); | 200 void FinalizeComments(const Code& code); |
| 199 | 201 |
| 200 const Bool& bool_true() const { return bool_true_; } | 202 const Bool& bool_true() const { return bool_true_; } |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 // that should be used when deoptimizing we store it in this variable. | 326 // that should be used when deoptimizing we store it in this variable. |
| 325 // In future AddDeoptStub should be moved out of the instruction template. | 327 // In future AddDeoptStub should be moved out of the instruction template. |
| 326 Environment* pending_deoptimization_env_; | 328 Environment* pending_deoptimization_env_; |
| 327 | 329 |
| 328 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); | 330 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); |
| 329 }; | 331 }; |
| 330 | 332 |
| 331 } // namespace dart | 333 } // namespace dart |
| 332 | 334 |
| 333 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_ | 335 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_ |
| OLD | NEW |