| 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 RUNTIME_VM_FLOW_GRAPH_COMPILER_H_ | 5 #ifndef RUNTIME_VM_FLOW_GRAPH_COMPILER_H_ |
| 6 #define RUNTIME_VM_FLOW_GRAPH_COMPILER_H_ | 6 #define RUNTIME_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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 void GenerateStaticDartCall(intptr_t deopt_id, | 381 void GenerateStaticDartCall(intptr_t deopt_id, |
| 382 TokenPosition token_pos, | 382 TokenPosition token_pos, |
| 383 const StubEntry& stub_entry, | 383 const StubEntry& stub_entry, |
| 384 RawPcDescriptors::Kind kind, | 384 RawPcDescriptors::Kind kind, |
| 385 LocationSummary* locs, | 385 LocationSummary* locs, |
| 386 const Function& target); | 386 const Function& target); |
| 387 | 387 |
| 388 void GenerateInstanceOf(TokenPosition token_pos, | 388 void GenerateInstanceOf(TokenPosition token_pos, |
| 389 intptr_t deopt_id, | 389 intptr_t deopt_id, |
| 390 const AbstractType& type, | 390 const AbstractType& type, |
| 391 bool negate_result, |
| 391 LocationSummary* locs); | 392 LocationSummary* locs); |
| 392 | 393 |
| 393 void GenerateInstanceCall(intptr_t deopt_id, | 394 void GenerateInstanceCall(intptr_t deopt_id, |
| 394 TokenPosition token_pos, | 395 TokenPosition token_pos, |
| 395 intptr_t argument_count, | 396 intptr_t argument_count, |
| 396 LocationSummary* locs, | 397 LocationSummary* locs, |
| 397 const ICData& ic_data); | 398 const ICData& ic_data); |
| 398 | 399 |
| 399 void GenerateStaticCall(intptr_t deopt_id, | 400 void GenerateStaticCall(intptr_t deopt_id, |
| 400 TokenPosition token_pos, | 401 TokenPosition token_pos, |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 ZoneGrowableArray<const ICData*>* deopt_id_to_ic_data_; | 820 ZoneGrowableArray<const ICData*>* deopt_id_to_ic_data_; |
| 820 | 821 |
| 821 Array& edge_counters_array_; | 822 Array& edge_counters_array_; |
| 822 | 823 |
| 823 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); | 824 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); |
| 824 }; | 825 }; |
| 825 | 826 |
| 826 } // namespace dart | 827 } // namespace dart |
| 827 | 828 |
| 828 #endif // RUNTIME_VM_FLOW_GRAPH_COMPILER_H_ | 829 #endif // RUNTIME_VM_FLOW_GRAPH_COMPILER_H_ |
| OLD | NEW |