| 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_OBJECT_STORE_H_ | 5 #ifndef VM_OBJECT_STORE_H_ |
| 6 #define VM_OBJECT_STORE_H_ | 6 #define VM_OBJECT_STORE_H_ |
| 7 | 7 |
| 8 #include "vm/object.h" | 8 #include "vm/object.h" |
| 9 | 9 |
| 10 namespace dart { | 10 namespace dart { |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 RawClass* int32x4_class() const { | 201 RawClass* int32x4_class() const { |
| 202 return int32x4_class_; | 202 return int32x4_class_; |
| 203 } | 203 } |
| 204 void set_int32x4_class(const Class& value) { | 204 void set_int32x4_class(const Class& value) { |
| 205 int32x4_class_ = value.raw(); | 205 int32x4_class_ = value.raw(); |
| 206 } | 206 } |
| 207 | 207 |
| 208 RawType* int32x4_type() const { return int32x4_type_; } | 208 RawType* int32x4_type() const { return int32x4_type_; } |
| 209 void set_int32x4_type(const Type& value) { int32x4_type_ = value.raw(); } | 209 void set_int32x4_type(const Type& value) { int32x4_type_ = value.raw(); } |
| 210 | 210 |
| 211 RawClass* float64x2_class() const { |
| 212 return float64x2_class_; |
| 213 } |
| 214 void set_float64x2_class(const Class& value) { |
| 215 float64x2_class_ = value.raw(); |
| 216 } |
| 217 |
| 218 RawType* float64x2_type() const { return float64x2_type_; } |
| 219 void set_float64x2_type(const Type& value) { float64x2_type_ = value.raw(); } |
| 220 |
| 211 RawArray* typed_data_classes() const { | 221 RawArray* typed_data_classes() const { |
| 212 return typed_data_classes_; | 222 return typed_data_classes_; |
| 213 } | 223 } |
| 214 void set_typed_data_classes(const Array& value) { | 224 void set_typed_data_classes(const Array& value) { |
| 215 typed_data_classes_ = value.raw(); | 225 typed_data_classes_ = value.raw(); |
| 216 } | 226 } |
| 217 | 227 |
| 218 RawClass* error_class() const { | 228 RawClass* error_class() const { |
| 219 return error_class_; | 229 return error_class_; |
| 220 } | 230 } |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 RawClass* integer_implementation_class_; | 441 RawClass* integer_implementation_class_; |
| 432 RawClass* smi_class_; | 442 RawClass* smi_class_; |
| 433 RawType* smi_type_; | 443 RawType* smi_type_; |
| 434 RawClass* mint_class_; | 444 RawClass* mint_class_; |
| 435 RawType* mint_type_; | 445 RawType* mint_type_; |
| 436 RawClass* bigint_class_; | 446 RawClass* bigint_class_; |
| 437 RawClass* double_class_; | 447 RawClass* double_class_; |
| 438 RawType* double_type_; | 448 RawType* double_type_; |
| 439 RawType* float32x4_type_; | 449 RawType* float32x4_type_; |
| 440 RawType* int32x4_type_; | 450 RawType* int32x4_type_; |
| 451 RawType* float64x2_type_; |
| 441 RawType* string_type_; | 452 RawType* string_type_; |
| 442 RawClass* one_byte_string_class_; | 453 RawClass* one_byte_string_class_; |
| 443 RawClass* two_byte_string_class_; | 454 RawClass* two_byte_string_class_; |
| 444 RawClass* external_one_byte_string_class_; | 455 RawClass* external_one_byte_string_class_; |
| 445 RawClass* external_two_byte_string_class_; | 456 RawClass* external_two_byte_string_class_; |
| 446 RawType* bool_type_; | 457 RawType* bool_type_; |
| 447 RawClass* bool_class_; | 458 RawClass* bool_class_; |
| 448 RawClass* array_class_; | 459 RawClass* array_class_; |
| 449 RawType* array_type_; | 460 RawType* array_type_; |
| 450 RawClass* immutable_array_class_; | 461 RawClass* immutable_array_class_; |
| 451 RawClass* growable_object_array_class_; | 462 RawClass* growable_object_array_class_; |
| 452 RawClass* float32x4_class_; | 463 RawClass* float32x4_class_; |
| 453 RawClass* int32x4_class_; | 464 RawClass* int32x4_class_; |
| 465 RawClass* float64x2_class_; |
| 454 RawArray* typed_data_classes_; | 466 RawArray* typed_data_classes_; |
| 455 RawClass* error_class_; | 467 RawClass* error_class_; |
| 456 RawClass* stacktrace_class_; | 468 RawClass* stacktrace_class_; |
| 457 RawClass* jsregexp_class_; | 469 RawClass* jsregexp_class_; |
| 458 RawClass* weak_property_class_; | 470 RawClass* weak_property_class_; |
| 459 RawClass* mirror_reference_class_; | 471 RawClass* mirror_reference_class_; |
| 460 RawArray* symbol_table_; | 472 RawArray* symbol_table_; |
| 461 RawArray* canonical_type_arguments_; | 473 RawArray* canonical_type_arguments_; |
| 462 RawLibrary* async_library_; | 474 RawLibrary* async_library_; |
| 463 RawLibrary* builtin_library_; | 475 RawLibrary* builtin_library_; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 488 } | 500 } |
| 489 | 501 |
| 490 friend class SnapshotReader; | 502 friend class SnapshotReader; |
| 491 | 503 |
| 492 DISALLOW_COPY_AND_ASSIGN(ObjectStore); | 504 DISALLOW_COPY_AND_ASSIGN(ObjectStore); |
| 493 }; | 505 }; |
| 494 | 506 |
| 495 } // namespace dart | 507 } // namespace dart |
| 496 | 508 |
| 497 #endif // VM_OBJECT_STORE_H_ | 509 #endif // VM_OBJECT_STORE_H_ |
| OLD | NEW |