Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(483)

Side by Side Diff: runtime/lib/array.cc

Issue 154393003: Implement eager instantiation and canonicalization of type arguments at run (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/lib/double.cc » ('j') | runtime/vm/code_generator.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | runtime/lib/double.cc » ('j') | runtime/vm/code_generator.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698