| 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(List_allocate, 2) { | 15 DEFINE_NATIVE_ENTRY(List_allocate, 2) { |
| 16 const AbstractTypeArguments& type_arguments = | 16 const TypeArguments& type_arguments = |
| 17 AbstractTypeArguments::CheckedHandle(isolate, arguments->NativeArgAt(0)); | 17 TypeArguments::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 Exceptions::ThrowArgumentError(error); | 24 Exceptions::ThrowArgumentError(error); |
| 25 } | 25 } |
| 26 intptr_t len = Smi::Cast(length).Value(); | 26 intptr_t len = Smi::Cast(length).Value(); |
| 27 if (len < 0 || len > Array::kMaxElements) { | 27 if (len < 0 || len > Array::kMaxElements) { |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 Object& temp = Object::Handle(); | 123 Object& temp = Object::Handle(); |
| 124 for (intptr_t i = 0; i < length; i++) { | 124 for (intptr_t i = 0; i < length; i++) { |
| 125 temp = from_array.At(i + offset); | 125 temp = from_array.At(i + offset); |
| 126 result.SetAt(i, temp); | 126 result.SetAt(i, temp); |
| 127 } | 127 } |
| 128 result.MakeImmutable(); | 128 result.MakeImmutable(); |
| 129 return result.raw(); | 129 return result.raw(); |
| 130 } | 130 } |
| 131 | 131 |
| 132 } // namespace dart | 132 } // namespace dart |
| OLD | NEW |