| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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_KERNEL_BINARY_FLOWGRAPH_H_ | 5 #ifndef RUNTIME_VM_KERNEL_BINARY_FLOWGRAPH_H_ |
| 6 #define RUNTIME_VM_KERNEL_BINARY_FLOWGRAPH_H_ | 6 #define RUNTIME_VM_KERNEL_BINARY_FLOWGRAPH_H_ |
| 7 | 7 |
| 8 #if !defined(DART_PRECOMPILED_RUNTIME) | 8 #if !defined(DART_PRECOMPILED_RUNTIME) |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 892 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 903 const dart::String& name, | 903 const dart::String& name, |
| 904 Token::Kind kind, | 904 Token::Kind kind, |
| 905 intptr_t argument_count, | 905 intptr_t argument_count, |
| 906 intptr_t checked_argument_count = 1); | 906 intptr_t checked_argument_count = 1); |
| 907 Fragment InstanceCall(TokenPosition position, | 907 Fragment InstanceCall(TokenPosition position, |
| 908 const dart::String& name, | 908 const dart::String& name, |
| 909 Token::Kind kind, | 909 Token::Kind kind, |
| 910 intptr_t type_args_len, | 910 intptr_t type_args_len, |
| 911 intptr_t argument_count, | 911 intptr_t argument_count, |
| 912 const Array& argument_names, | 912 const Array& argument_names, |
| 913 intptr_t checked_argument_count); | 913 intptr_t checked_argument_count, |
| 914 const Function& interface_target); |
| 914 Fragment ThrowException(TokenPosition position); | 915 Fragment ThrowException(TokenPosition position); |
| 915 Fragment BooleanNegate(); | 916 Fragment BooleanNegate(); |
| 916 Fragment TranslateInstantiatedTypeArguments( | 917 Fragment TranslateInstantiatedTypeArguments( |
| 917 const TypeArguments& type_arguments); | 918 const TypeArguments& type_arguments); |
| 918 Fragment StrictCompare(Token::Kind kind, bool number_check = false); | 919 Fragment StrictCompare(Token::Kind kind, bool number_check = false); |
| 919 Fragment AllocateObject(TokenPosition position, | 920 Fragment AllocateObject(TokenPosition position, |
| 920 const dart::Class& klass, | 921 const dart::Class& klass, |
| 921 intptr_t argument_count); | 922 intptr_t argument_count); |
| 922 Fragment AllocateObject(const dart::Class& klass, | 923 Fragment AllocateObject(const dart::Class& klass, |
| 923 const Function& closure_function); | 924 const Function& closure_function); |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1122 const uint8_t* saved_raw_buffer_; | 1123 const uint8_t* saved_raw_buffer_; |
| 1123 const TypedData* saved_typed_data_; | 1124 const TypedData* saved_typed_data_; |
| 1124 intptr_t saved_offset_; | 1125 intptr_t saved_offset_; |
| 1125 }; | 1126 }; |
| 1126 | 1127 |
| 1127 } // namespace kernel | 1128 } // namespace kernel |
| 1128 } // namespace dart | 1129 } // namespace dart |
| 1129 | 1130 |
| 1130 #endif // !defined(DART_PRECOMPILED_RUNTIME) | 1131 #endif // !defined(DART_PRECOMPILED_RUNTIME) |
| 1131 #endif // RUNTIME_VM_KERNEL_BINARY_FLOWGRAPH_H_ | 1132 #endif // RUNTIME_VM_KERNEL_BINARY_FLOWGRAPH_H_ |
| OLD | NEW |