| 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 11 matching lines...) Expand all Loading... |
| 22 function_type_(Type::null()), | 22 function_type_(Type::null()), |
| 23 function_impl_type_(Type::null()), | 23 function_impl_type_(Type::null()), |
| 24 type_class_(Class::null()), | 24 type_class_(Class::null()), |
| 25 number_type_(Type::null()), | 25 number_type_(Type::null()), |
| 26 int_type_(Type::null()), | 26 int_type_(Type::null()), |
| 27 integer_implementation_class_(Class::null()), | 27 integer_implementation_class_(Class::null()), |
| 28 smi_class_(Class::null()), | 28 smi_class_(Class::null()), |
| 29 mint_class_(Class::null()), | 29 mint_class_(Class::null()), |
| 30 bigint_class_(Class::null()), | 30 bigint_class_(Class::null()), |
| 31 double_class_(Class::null()), | 31 double_class_(Class::null()), |
| 32 float32x4_type_(Type::null()), |
| 33 int32x4_type_(Type::null()), |
| 34 float64x2_type_(Type::null()), |
| 32 string_type_(Type::null()), | 35 string_type_(Type::null()), |
| 33 one_byte_string_class_(Class::null()), | 36 one_byte_string_class_(Class::null()), |
| 34 two_byte_string_class_(Class::null()), | 37 two_byte_string_class_(Class::null()), |
| 35 external_one_byte_string_class_(Class::null()), | 38 external_one_byte_string_class_(Class::null()), |
| 36 external_two_byte_string_class_(Class::null()), | 39 external_two_byte_string_class_(Class::null()), |
| 37 bool_type_(Type::null()), | 40 bool_type_(Type::null()), |
| 38 bool_class_(Class::null()), | 41 bool_class_(Class::null()), |
| 39 array_class_(Class::null()), | 42 array_class_(Class::null()), |
| 40 array_type_(Type::null()), | 43 array_type_(Type::null()), |
| 41 immutable_array_class_(Class::null()), | 44 immutable_array_class_(Class::null()), |
| 42 growable_object_array_class_(Class::null()), | 45 growable_object_array_class_(Class::null()), |
| 43 float32x4_class_(Class::null()), | 46 float32x4_class_(Class::null()), |
| 44 int32x4_class_(Class::null()), | 47 int32x4_class_(Class::null()), |
| 48 float64x2_class_(Class::null()), |
| 45 typed_data_classes_(Array::null()), | 49 typed_data_classes_(Array::null()), |
| 46 error_class_(Class::null()), | 50 error_class_(Class::null()), |
| 47 stacktrace_class_(Class::null()), | 51 stacktrace_class_(Class::null()), |
| 48 jsregexp_class_(Class::null()), | 52 jsregexp_class_(Class::null()), |
| 49 weak_property_class_(Class::null()), | 53 weak_property_class_(Class::null()), |
| 50 mirror_reference_class_(Class::null()), | 54 mirror_reference_class_(Class::null()), |
| 51 symbol_table_(Array::null()), | 55 symbol_table_(Array::null()), |
| 52 canonical_type_arguments_(Array::null()), | 56 canonical_type_arguments_(Array::null()), |
| 53 async_library_(Library::null()), | 57 async_library_(Library::null()), |
| 54 builtin_library_(Library::null()), | 58 builtin_library_(Library::null()), |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 Stacktrace::Handle(Stacktrace::New(code_array, pc_offset_array)); | 140 Stacktrace::Handle(Stacktrace::New(code_array, pc_offset_array)); |
| 137 // Expansion of inlined functions requires additional memory at run time, | 141 // Expansion of inlined functions requires additional memory at run time, |
| 138 // avoid it. | 142 // avoid it. |
| 139 stack_trace.set_expand_inlined(false); | 143 stack_trace.set_expand_inlined(false); |
| 140 set_preallocated_stack_trace(stack_trace); | 144 set_preallocated_stack_trace(stack_trace); |
| 141 | 145 |
| 142 return true; | 146 return true; |
| 143 } | 147 } |
| 144 | 148 |
| 145 } // namespace dart | 149 } // namespace dart |
| OLD | NEW |