| 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 10 matching lines...) Expand all Loading... |
| 21 null_type_(Type::null()), | 21 null_type_(Type::null()), |
| 22 function_type_(Type::null()), | 22 function_type_(Type::null()), |
| 23 function_impl_type_(Type::null()), | 23 function_impl_type_(Type::null()), |
| 24 library_prefix_class_(Class::null()), | 24 library_prefix_class_(Class::null()), |
| 25 type_class_(Class::null()), | 25 type_class_(Class::null()), |
| 26 number_type_(Type::null()), | 26 number_type_(Type::null()), |
| 27 int_type_(Type::null()), | 27 int_type_(Type::null()), |
| 28 integer_implementation_class_(Class::null()), | 28 integer_implementation_class_(Class::null()), |
| 29 smi_class_(Class::null()), | 29 smi_class_(Class::null()), |
| 30 mint_class_(Class::null()), | 30 mint_class_(Class::null()), |
| 31 bigint_class_(Class::null()), | |
| 32 double_class_(Class::null()), | 31 double_class_(Class::null()), |
| 33 float32x4_type_(Type::null()), | 32 float32x4_type_(Type::null()), |
| 34 int32x4_type_(Type::null()), | 33 int32x4_type_(Type::null()), |
| 35 float64x2_type_(Type::null()), | 34 float64x2_type_(Type::null()), |
| 36 string_type_(Type::null()), | 35 string_type_(Type::null()), |
| 37 one_byte_string_class_(Class::null()), | 36 one_byte_string_class_(Class::null()), |
| 38 two_byte_string_class_(Class::null()), | 37 two_byte_string_class_(Class::null()), |
| 39 external_one_byte_string_class_(Class::null()), | 38 external_one_byte_string_class_(Class::null()), |
| 40 external_two_byte_string_class_(Class::null()), | 39 external_two_byte_string_class_(Class::null()), |
| 41 bool_type_(Type::null()), | 40 bool_type_(Type::null()), |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 Stacktrace::Handle(Stacktrace::New(code_array, pc_offset_array)); | 150 Stacktrace::Handle(Stacktrace::New(code_array, pc_offset_array)); |
| 152 // Expansion of inlined functions requires additional memory at run time, | 151 // Expansion of inlined functions requires additional memory at run time, |
| 153 // avoid it. | 152 // avoid it. |
| 154 stack_trace.set_expand_inlined(false); | 153 stack_trace.set_expand_inlined(false); |
| 155 set_preallocated_stack_trace(stack_trace); | 154 set_preallocated_stack_trace(stack_trace); |
| 156 | 155 |
| 157 return true; | 156 return true; |
| 158 } | 157 } |
| 159 | 158 |
| 160 } // namespace dart | 159 } // namespace dart |
| OLD | NEW |