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, | |
392 LocationSummary* locs); | 391 LocationSummary* locs); |
393 | 392 |
394 void GenerateInstanceCall(intptr_t deopt_id, | 393 void GenerateInstanceCall(intptr_t deopt_id, |
395 TokenPosition token_pos, | 394 TokenPosition token_pos, |
396 intptr_t argument_count, | 395 intptr_t argument_count, |
397 LocationSummary* locs, | 396 LocationSummary* locs, |
398 const ICData& ic_data); | 397 const ICData& ic_data); |
399 | 398 |
400 void GenerateStaticCall(intptr_t deopt_id, | 399 void GenerateStaticCall(intptr_t deopt_id, |
401 TokenPosition token_pos, | 400 TokenPosition token_pos, |
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
820 ZoneGrowableArray<const ICData*>* deopt_id_to_ic_data_; | 819 ZoneGrowableArray<const ICData*>* deopt_id_to_ic_data_; |
821 | 820 |
822 Array& edge_counters_array_; | 821 Array& edge_counters_array_; |
823 | 822 |
824 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); | 823 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); |
825 }; | 824 }; |
826 | 825 |
827 } // namespace dart | 826 } // namespace dart |
828 | 827 |
829 #endif // RUNTIME_VM_FLOW_GRAPH_COMPILER_H_ | 828 #endif // RUNTIME_VM_FLOW_GRAPH_COMPILER_H_ |
OLD | NEW |