| 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 VM_RAW_OBJECT_H_ | 5 #ifndef VM_RAW_OBJECT_H_ |
| 6 #define VM_RAW_OBJECT_H_ | 6 #define VM_RAW_OBJECT_H_ |
| 7 | 7 |
| 8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
| 9 #include "vm/globals.h" | 9 #include "vm/globals.h" |
| 10 #include "vm/token.h" | 10 #include "vm/token.h" |
| (...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 RawArray* dictionary_; // Top-level names in this library. | 666 RawArray* dictionary_; // Top-level names in this library. |
| 667 RawArray* anonymous_classes_; // Classes containing top-level elements. | 667 RawArray* anonymous_classes_; // Classes containing top-level elements. |
| 668 RawArray* imports_; // List of libraries imported without prefix. | 668 RawArray* imports_; // List of libraries imported without prefix. |
| 669 RawArray* imported_into_; // List of libraries where this library | 669 RawArray* imported_into_; // List of libraries where this library |
| 670 // is imported into without a prefix. | 670 // is imported into without a prefix. |
| 671 RawArray* loaded_scripts_; // Array of scripts loaded in this library. | 671 RawArray* loaded_scripts_; // Array of scripts loaded in this library. |
| 672 RawObject** to() { | 672 RawObject** to() { |
| 673 return reinterpret_cast<RawObject**>(&ptr()->loaded_scripts_); | 673 return reinterpret_cast<RawObject**>(&ptr()->loaded_scripts_); |
| 674 } | 674 } |
| 675 | 675 |
| 676 intptr_t index_; // Library id number. |
| 676 intptr_t num_imports_; // Number of entries in imports_. | 677 intptr_t num_imports_; // Number of entries in imports_. |
| 677 intptr_t num_imported_into_; // Number of entries in imported_into_. | 678 intptr_t num_imported_into_; // Number of entries in imported_into_. |
| 678 intptr_t num_anonymous_; // Number of entries in anonymous_classes_. | 679 intptr_t num_anonymous_; // Number of entries in anonymous_classes_. |
| 679 Dart_NativeEntryResolver native_entry_resolver_; // Resolves natives. | 680 Dart_NativeEntryResolver native_entry_resolver_; // Resolves natives. |
| 680 bool corelib_imported_; | 681 bool corelib_imported_; |
| 681 int8_t load_state_; // Of type LibraryState. | 682 int8_t load_state_; // Of type LibraryState. |
| 682 | 683 |
| 683 friend class Isolate; | 684 friend class Isolate; |
| 684 }; | 685 }; |
| 685 | 686 |
| (...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1494 kExternalUint64Array == kByteArray + 18 && | 1495 kExternalUint64Array == kByteArray + 18 && |
| 1495 kExternalFloat32Array == kByteArray + 19 && | 1496 kExternalFloat32Array == kByteArray + 19 && |
| 1496 kExternalFloat64Array == kByteArray + 20 && | 1497 kExternalFloat64Array == kByteArray + 20 && |
| 1497 kClosure == kByteArray + 21); | 1498 kClosure == kByteArray + 21); |
| 1498 return (index >= kByteArray && index <= kClosure); | 1499 return (index >= kByteArray && index <= kClosure); |
| 1499 } | 1500 } |
| 1500 | 1501 |
| 1501 } // namespace dart | 1502 } // namespace dart |
| 1502 | 1503 |
| 1503 #endif // VM_RAW_OBJECT_H_ | 1504 #endif // VM_RAW_OBJECT_H_ |
| OLD | NEW |