| 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_H_ | 5 #ifndef VM_FLOW_GRAPH_COMPILER_H_ |
| 6 #define VM_FLOW_GRAPH_COMPILER_H_ | 6 #define VM_FLOW_GRAPH_COMPILER_H_ |
| 7 | 7 |
| 8 #include "vm/allocation.h" | 8 #include "vm/allocation.h" |
| 9 #include "vm/assembler.h" | 9 #include "vm/assembler.h" |
| 10 #include "vm/code_descriptors.h" | 10 #include "vm/code_descriptors.h" |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 intptr_t token_pos, | 400 intptr_t token_pos, |
| 401 LocationSummary* locs); | 401 LocationSummary* locs); |
| 402 | 402 |
| 403 void EmitInstanceCall(ExternalLabel* target_label, | 403 void EmitInstanceCall(ExternalLabel* target_label, |
| 404 const ICData& ic_data, | 404 const ICData& ic_data, |
| 405 intptr_t argument_count, | 405 intptr_t argument_count, |
| 406 intptr_t deopt_id, | 406 intptr_t deopt_id, |
| 407 intptr_t token_pos, | 407 intptr_t token_pos, |
| 408 LocationSummary* locs); | 408 LocationSummary* locs); |
| 409 | 409 |
| 410 void EmitPolymorphicInstanceCall(const ICData& ic_data, |
| 411 intptr_t argument_count, |
| 412 const Array& argument_names, |
| 413 intptr_t deopt_id, |
| 414 intptr_t token_pos, |
| 415 LocationSummary* locs); |
| 416 |
| 410 void EmitMegamorphicInstanceCall(const ICData& ic_data, | 417 void EmitMegamorphicInstanceCall(const ICData& ic_data, |
| 411 intptr_t argument_count, | 418 intptr_t argument_count, |
| 412 intptr_t deopt_id, | 419 intptr_t deopt_id, |
| 413 intptr_t token_pos, | 420 intptr_t token_pos, |
| 414 LocationSummary* locs); | 421 LocationSummary* locs); |
| 415 | 422 |
| 416 void EmitTestAndCall(const ICData& ic_data, | 423 void EmitTestAndCall(const ICData& ic_data, |
| 417 intptr_t arg_count, | 424 intptr_t arg_count, |
| 418 const Array& arg_names, | 425 const Array& arg_names, |
| 419 Label* failed, | 426 Label* failed, |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 Array& inlined_code_intervals_; | 717 Array& inlined_code_intervals_; |
| 711 const GrowableArray<const Function*>& inline_id_to_function_; | 718 const GrowableArray<const Function*>& inline_id_to_function_; |
| 712 const GrowableArray<intptr_t>& caller_inline_id_; | 719 const GrowableArray<intptr_t>& caller_inline_id_; |
| 713 | 720 |
| 714 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); | 721 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); |
| 715 }; | 722 }; |
| 716 | 723 |
| 717 } // namespace dart | 724 } // namespace dart |
| 718 | 725 |
| 719 #endif // VM_FLOW_GRAPH_COMPILER_H_ | 726 #endif // VM_FLOW_GRAPH_COMPILER_H_ |
| OLD | NEW |