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 #include "platform/assert.h" | 5 #include "platform/assert.h" |
6 #include "vm/bootstrap_natives.h" | 6 #include "vm/bootstrap_natives.h" |
7 #include "vm/assembler.h" | 7 #include "vm/assembler.h" |
8 #include "vm/bigint_operations.h" | 8 #include "vm/bigint_operations.h" |
9 #include "vm/exceptions.h" | 9 #include "vm/exceptions.h" |
10 #include "vm/native_entry.h" | 10 #include "vm/native_entry.h" |
11 #include "vm/object.h" | 11 #include "vm/object.h" |
12 | 12 |
13 namespace dart { | 13 namespace dart { |
14 | 14 |
15 DEFINE_NATIVE_ENTRY(ObjectArray_allocate, 2) { | 15 DEFINE_NATIVE_ENTRY(ObjectArray_allocate, 2) { |
16 const AbstractTypeArguments& type_arguments = | 16 const AbstractTypeArguments& type_arguments = |
17 AbstractTypeArguments::CheckedHandle(isolate, arguments->NativeArgAt(0)); | 17 AbstractTypeArguments::CheckedHandle(isolate, arguments->NativeArgAt(0)); |
18 const Instance& length = Instance::CheckedHandle( | 18 const Instance& length = Instance::CheckedHandle( |
19 isolate, arguments->NativeArgAt(1)); | 19 isolate, arguments->NativeArgAt(1)); |
20 if (!length.IsSmi()) { | 20 if (!length.IsSmi()) { |
21 const String& error = String::Handle(String::NewFormatted( | 21 const String& error = String::Handle(String::NewFormatted( |
22 "Length must be an integer in the range [0..%"Pd"].", | 22 "Length must be an integer in the range [0..%" Pd "].", |
23 Array::kMaxElements)); | 23 Array::kMaxElements)); |
24 const Array& args = Array::Handle(Array::New(1)); | 24 const Array& args = Array::Handle(Array::New(1)); |
25 args.SetAt(0, error); | 25 args.SetAt(0, error); |
26 Exceptions::ThrowByType(Exceptions::kArgument, args); | 26 Exceptions::ThrowByType(Exceptions::kArgument, args); |
27 } | 27 } |
28 intptr_t len = Smi::Cast(length).Value(); | 28 intptr_t len = Smi::Cast(length).Value(); |
29 if (len < 0 || len > Array::kMaxElements) { | 29 if (len < 0 || len > Array::kMaxElements) { |
30 const String& error = String::Handle(String::NewFormatted( | 30 const String& error = String::Handle(String::NewFormatted( |
31 "Length (%"Pd") must be an integer in the range [0..%"Pd"].", | 31 "Length (%" Pd ") must be an integer in the range [0..%" Pd "].", |
32 len, Array::kMaxElements)); | 32 len, Array::kMaxElements)); |
33 const Array& args = Array::Handle(Array::New(1)); | 33 const Array& args = Array::Handle(Array::New(1)); |
34 args.SetAt(0, error); | 34 args.SetAt(0, error); |
35 Exceptions::ThrowByType(Exceptions::kArgument, args); | 35 Exceptions::ThrowByType(Exceptions::kArgument, args); |
36 } | 36 } |
37 const Array& new_array = Array::Handle(Array::New(len)); | 37 const Array& new_array = Array::Handle(Array::New(len)); |
38 new_array.SetTypeArguments(type_arguments); | 38 new_array.SetTypeArguments(type_arguments); |
39 return new_array.raw(); | 39 return new_array.raw(); |
40 } | 40 } |
41 | 41 |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 } else { | 108 } else { |
109 for (intptr_t i = 0; i < icount; i++) { | 109 for (intptr_t i = 0; i < icount; i++) { |
110 src_obj = source.At(isrc_start + i); | 110 src_obj = source.At(isrc_start + i); |
111 dest.SetAt(idst_start + i, src_obj); | 111 dest.SetAt(idst_start + i, src_obj); |
112 } | 112 } |
113 } | 113 } |
114 return Object::null(); | 114 return Object::null(); |
115 } | 115 } |
116 | 116 |
117 } // namespace dart | 117 } // namespace dart |
OLD | NEW |