| 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 "platform/thread.h" | 10 #include "platform/thread.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 class Function; | 33 class Function; |
| 34 class GrowableObjectArray; | 34 class GrowableObjectArray; |
| 35 class HandleScope; | 35 class HandleScope; |
| 36 class HandleVisitor; | 36 class HandleVisitor; |
| 37 class Heap; | 37 class Heap; |
| 38 class ICData; | 38 class ICData; |
| 39 class Instance; | 39 class Instance; |
| 40 class IsolateProfilerData; | 40 class IsolateProfilerData; |
| 41 class IsolateSpawnState; | 41 class IsolateSpawnState; |
| 42 class InterruptableThreadState; | 42 class InterruptableThreadState; |
| 43 class Library; |
| 43 class LongJumpScope; | 44 class LongJumpScope; |
| 44 class MessageHandler; | 45 class MessageHandler; |
| 45 class Mutex; | 46 class Mutex; |
| 46 class Object; | 47 class Object; |
| 47 class ObjectIdRing; | 48 class ObjectIdRing; |
| 48 class ObjectPointerVisitor; | 49 class ObjectPointerVisitor; |
| 49 class ObjectStore; | 50 class ObjectStore; |
| 50 class RawInstance; | 51 class RawInstance; |
| 51 class RawArray; | 52 class RawArray; |
| 52 class RawContext; | 53 class RawContext; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 81 }; | 82 }; |
| 82 | 83 |
| 83 #define REUSABLE_HANDLE_LIST(V) \ | 84 #define REUSABLE_HANDLE_LIST(V) \ |
| 84 V(AbstractType) \ | 85 V(AbstractType) \ |
| 85 V(Array) \ | 86 V(Array) \ |
| 86 V(Class) \ | 87 V(Class) \ |
| 87 V(Code) \ | 88 V(Code) \ |
| 88 V(Error) \ | 89 V(Error) \ |
| 89 V(Field) \ | 90 V(Field) \ |
| 90 V(Function) \ | 91 V(Function) \ |
| 92 V(GrowableObjectArray) \ |
| 91 V(Instance) \ | 93 V(Instance) \ |
| 94 V(Library) \ |
| 92 V(Object) \ | 95 V(Object) \ |
| 93 V(String) \ | 96 V(String) \ |
| 94 V(TypeArguments) \ | 97 V(TypeArguments) \ |
| 95 V(TypeParameter) \ | 98 V(TypeParameter) \ |
| 96 | 99 |
| 97 class Isolate : public BaseIsolate { | 100 class Isolate : public BaseIsolate { |
| 98 public: | 101 public: |
| 99 ~Isolate(); | 102 ~Isolate(); |
| 100 | 103 |
| 101 static inline Isolate* Current() { | 104 static inline Isolate* Current() { |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 char* script_url_; | 722 char* script_url_; |
| 720 char* library_url_; | 723 char* library_url_; |
| 721 char* class_name_; | 724 char* class_name_; |
| 722 char* function_name_; | 725 char* function_name_; |
| 723 char* exception_callback_name_; | 726 char* exception_callback_name_; |
| 724 }; | 727 }; |
| 725 | 728 |
| 726 } // namespace dart | 729 } // namespace dart |
| 727 | 730 |
| 728 #endif // VM_ISOLATE_H_ | 731 #endif // VM_ISOLATE_H_ |
| OLD | NEW |