| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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_ISOLATE_H_ | 5 #ifndef VM_ISOLATE_H_ |
| 6 #define VM_ISOLATE_H_ | 6 #define VM_ISOLATE_H_ |
| 7 | 7 |
| 8 #include "include/dart_api.h" | 8 #include "include/dart_api.h" |
| 9 #include "platform/assert.h" | 9 #include "platform/assert.h" |
| 10 #include "vm/base_isolate.h" | 10 #include "vm/base_isolate.h" |
| (...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 uword user_tag_; | 761 uword user_tag_; |
| 762 RawGrowableObjectArray* tag_table_; | 762 RawGrowableObjectArray* tag_table_; |
| 763 RawUserTag* current_tag_; | 763 RawUserTag* current_tag_; |
| 764 RawUserTag* default_tag_; | 764 RawUserTag* default_tag_; |
| 765 RawGrowableObjectArray* deoptimized_code_array_; | 765 RawGrowableObjectArray* deoptimized_code_array_; |
| 766 | 766 |
| 767 Metric* metrics_list_head_; | 767 Metric* metrics_list_head_; |
| 768 | 768 |
| 769 Counters counters_; | 769 Counters counters_; |
| 770 | 770 |
| 771 // TODO(23153): Move this out of Isolate/Thread. |
| 772 CHA* cha_; |
| 773 |
| 771 // Isolate list next pointer. | 774 // Isolate list next pointer. |
| 772 Isolate* next_; | 775 Isolate* next_; |
| 773 | 776 |
| 774 // Reusable handles support. | 777 // Reusable handles support. |
| 775 #define REUSABLE_HANDLE_FIELDS(object) \ | 778 #define REUSABLE_HANDLE_FIELDS(object) \ |
| 776 object* object##_handle_; | 779 object* object##_handle_; |
| 777 REUSABLE_HANDLE_LIST(REUSABLE_HANDLE_FIELDS) | 780 REUSABLE_HANDLE_LIST(REUSABLE_HANDLE_FIELDS) |
| 778 #undef REUSABLE_HANDLE_FIELDS | 781 #undef REUSABLE_HANDLE_FIELDS |
| 779 | 782 |
| 780 #if defined(DEBUG) | 783 #if defined(DEBUG) |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 947 uint8_t* serialized_args_; | 950 uint8_t* serialized_args_; |
| 948 intptr_t serialized_args_len_; | 951 intptr_t serialized_args_len_; |
| 949 uint8_t* serialized_message_; | 952 uint8_t* serialized_message_; |
| 950 intptr_t serialized_message_len_; | 953 intptr_t serialized_message_len_; |
| 951 bool paused_; | 954 bool paused_; |
| 952 }; | 955 }; |
| 953 | 956 |
| 954 } // namespace dart | 957 } // namespace dart |
| 955 | 958 |
| 956 #endif // VM_ISOLATE_H_ | 959 #endif // VM_ISOLATE_H_ |
| OLD | NEW |