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

Side by Side Diff: runtime/vm/object_store.cc

Issue 12907023: Really remove SIMD types from dart:scalarlist. Fixes build. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Really remove SIMD types from dart:scalarlist. Created 7 years, 8 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 | « runtime/vm/object_store.h ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/isolate.h" 8 #include "vm/isolate.h"
9 #include "vm/object.h" 9 #include "vm/object.h"
10 #include "vm/raw_object.h" 10 #include "vm/raw_object.h"
(...skipping 21 matching lines...) Expand all
32 two_byte_string_class_(Class::null()), 32 two_byte_string_class_(Class::null()),
33 external_one_byte_string_class_(Class::null()), 33 external_one_byte_string_class_(Class::null()),
34 external_two_byte_string_class_(Class::null()), 34 external_two_byte_string_class_(Class::null()),
35 bool_type_(Type::null()), 35 bool_type_(Type::null()),
36 bool_class_(Class::null()), 36 bool_class_(Class::null()),
37 list_class_(Class::null()), 37 list_class_(Class::null()),
38 array_class_(Class::null()), 38 array_class_(Class::null()),
39 array_type_(Type::null()), 39 array_type_(Type::null()),
40 immutable_array_class_(Class::null()), 40 immutable_array_class_(Class::null()),
41 growable_object_array_class_(Class::null()), 41 growable_object_array_class_(Class::null()),
42 float32x4_class_(Class::null()),
43 uint32x4_class_(Class::null()),
42 int8_array_class_(Class::null()), 44 int8_array_class_(Class::null()),
43 uint8_array_class_(Class::null()), 45 uint8_array_class_(Class::null()),
44 uint8_clamped_array_class_(Class::null()), 46 uint8_clamped_array_class_(Class::null()),
45 int16_array_class_(Class::null()), 47 int16_array_class_(Class::null()),
46 uint16_array_class_(Class::null()), 48 uint16_array_class_(Class::null()),
47 int32_array_class_(Class::null()), 49 int32_array_class_(Class::null()),
48 uint32_array_class_(Class::null()), 50 uint32_array_class_(Class::null()),
49 int64_array_class_(Class::null()), 51 int64_array_class_(Class::null()),
50 uint64_array_class_(Class::null()), 52 uint64_array_class_(Class::null()),
51 float32_array_class_(Class::null()), 53 float32_array_class_(Class::null()),
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 void ObjectStore::InitKeywordTable() { 162 void ObjectStore::InitKeywordTable() {
161 // Set up the keywords symbol array so that we can access it while scanning. 163 // Set up the keywords symbol array so that we can access it while scanning.
162 Array& keywords = Array::Handle(keyword_symbols()); 164 Array& keywords = Array::Handle(keyword_symbols());
163 ASSERT(keywords.IsNull()); 165 ASSERT(keywords.IsNull());
164 keywords = Array::New(Token::numKeywords, Heap::kOld); 166 keywords = Array::New(Token::numKeywords, Heap::kOld);
165 ASSERT(!keywords.IsError() && !keywords.IsNull()); 167 ASSERT(!keywords.IsError() && !keywords.IsNull());
166 set_keyword_symbols(keywords); 168 set_keyword_symbols(keywords);
167 } 169 }
168 170
169 } // namespace dart 171 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/object_store.h ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698