| 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 #include "vm/object_store.h" | 5 #include "vm/object_store.h" |
| 6 | 6 |
| 7 #include "vm/exceptions.h" | 7 #include "vm/exceptions.h" |
| 8 #include "vm/dart_entry.h" | 8 #include "vm/dart_entry.h" |
| 9 #include "vm/isolate.h" | 9 #include "vm/isolate.h" |
| 10 #include "vm/object.h" | 10 #include "vm/object.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 one_byte_string_class_(Class::null()), | 37 one_byte_string_class_(Class::null()), |
| 38 two_byte_string_class_(Class::null()), | 38 two_byte_string_class_(Class::null()), |
| 39 external_one_byte_string_class_(Class::null()), | 39 external_one_byte_string_class_(Class::null()), |
| 40 external_two_byte_string_class_(Class::null()), | 40 external_two_byte_string_class_(Class::null()), |
| 41 bool_type_(Type::null()), | 41 bool_type_(Type::null()), |
| 42 bool_class_(Class::null()), | 42 bool_class_(Class::null()), |
| 43 array_class_(Class::null()), | 43 array_class_(Class::null()), |
| 44 array_type_(Type::null()), | 44 array_type_(Type::null()), |
| 45 immutable_array_class_(Class::null()), | 45 immutable_array_class_(Class::null()), |
| 46 growable_object_array_class_(Class::null()), | 46 growable_object_array_class_(Class::null()), |
| 47 linked_hash_map_class_(Class::null()), |
| 47 float32x4_class_(Class::null()), | 48 float32x4_class_(Class::null()), |
| 48 int32x4_class_(Class::null()), | 49 int32x4_class_(Class::null()), |
| 49 float64x2_class_(Class::null()), | 50 float64x2_class_(Class::null()), |
| 50 typed_data_classes_(Array::null()), | 51 typed_data_classes_(Array::null()), |
| 51 error_class_(Class::null()), | 52 error_class_(Class::null()), |
| 52 stacktrace_class_(Class::null()), | 53 stacktrace_class_(Class::null()), |
| 53 weak_property_class_(Class::null()), | 54 weak_property_class_(Class::null()), |
| 54 symbol_table_(Array::null()), | 55 symbol_table_(Array::null()), |
| 55 canonical_type_arguments_(Array::null()), | 56 canonical_type_arguments_(Array::null()), |
| 56 async_library_(Library::null()), | 57 async_library_(Library::null()), |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 Stacktrace::Handle(Stacktrace::New(code_array, pc_offset_array)); | 150 Stacktrace::Handle(Stacktrace::New(code_array, pc_offset_array)); |
| 150 // Expansion of inlined functions requires additional memory at run time, | 151 // Expansion of inlined functions requires additional memory at run time, |
| 151 // avoid it. | 152 // avoid it. |
| 152 stack_trace.set_expand_inlined(false); | 153 stack_trace.set_expand_inlined(false); |
| 153 set_preallocated_stack_trace(stack_trace); | 154 set_preallocated_stack_trace(stack_trace); |
| 154 | 155 |
| 155 return true; | 156 return true; |
| 156 } | 157 } |
| 157 | 158 |
| 158 } // namespace dart | 159 } // namespace dart |
| OLD | NEW |