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

Side by Side Diff: runtime/vm/symbols.h

Issue 172293004: Explicit conversions for Float32 array loads/stores. (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
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 #ifndef VM_SYMBOLS_H_ 5 #ifndef VM_SYMBOLS_H_
6 #define VM_SYMBOLS_H_ 6 #define VM_SYMBOLS_H_
7 7
8 #include "vm/object.h" 8 #include "vm/object.h"
9 #include "vm/snapshot_ids.h" 9 #include "vm/snapshot_ids.h"
10 10
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 V(Object, "Object") \ 134 V(Object, "Object") \
135 V(Int, "int") \ 135 V(Int, "int") \
136 V(Double, "double") \ 136 V(Double, "double") \
137 V(_Float32x4, "_Float32x4") \ 137 V(_Float32x4, "_Float32x4") \
138 V(_Float64x2, "_Float64x2") \ 138 V(_Float64x2, "_Float64x2") \
139 V(_Int32x4, "_Int32x4") \ 139 V(_Int32x4, "_Int32x4") \
140 V(Float32x4, "Float32x4") \ 140 V(Float32x4, "Float32x4") \
141 V(Float64x2, "Float64x2") \ 141 V(Float64x2, "Float64x2") \
142 V(Int32x4, "Int32x4") \ 142 V(Int32x4, "Int32x4") \
143 V(Int8List, "Int8List") \ 143 V(Int8List, "Int8List") \
144 V(Int8ListFactory, "Int8List.") \
145 V(Uint8List, "Uint8List") \ 144 V(Uint8List, "Uint8List") \
146 V(Uint8ListFactory, "Uint8List.") \
147 V(Uint8ClampedList, "Uint8ClampedList") \ 145 V(Uint8ClampedList, "Uint8ClampedList") \
148 V(Uint8ClampedListFactory, "Uint8ClampedList.") \
149 V(Int16List, "Int16List") \ 146 V(Int16List, "Int16List") \
150 V(Int16ListFactory, "Int16List.") \
151 V(Uint16List, "Uint16List") \ 147 V(Uint16List, "Uint16List") \
152 V(Uint16ListFactory, "Uint16List.") \
153 V(Int32List, "Int32List") \ 148 V(Int32List, "Int32List") \
154 V(Int32ListFactory, "Int32List.") \
155 V(Uint32List, "Uint32List") \ 149 V(Uint32List, "Uint32List") \
156 V(Uint32ListFactory, "Uint32List.") \
157 V(Int64List, "Int64List") \ 150 V(Int64List, "Int64List") \
158 V(Int64ListFactory, "Int64List.") \
159 V(Uint64List, "Uint64List") \ 151 V(Uint64List, "Uint64List") \
160 V(Uint64ListFactory, "Uint64List.") \
161 V(Float32x4List, "Float32x4List") \ 152 V(Float32x4List, "Float32x4List") \
162 V(Float32x4ListFactory, "Float32x4List.") \
163 V(Int32x4List, "Int32x4List") \ 153 V(Int32x4List, "Int32x4List") \
164 V(Int32x4ListFactory, "Int32x4List.") \
165 V(Float64x2List, "Float64x2List") \ 154 V(Float64x2List, "Float64x2List") \
166 V(Float64x2ListFactory, "Float64x2List.") \
167 V(Float32List, "Float32List") \ 155 V(Float32List, "Float32List") \
168 V(Float32ListFactory, "Float32List.") \
169 V(Float64List, "Float64List") \ 156 V(Float64List, "Float64List") \
170 V(Float64ListFactory, "Float64List.") \
171 V(_Int8Array, "_Int8Array") \ 157 V(_Int8Array, "_Int8Array") \
172 V(_Int8ArrayFactory, "_Int8Array.") \ 158 V(_Int8ArrayFactory, "_Int8Array.") \
173 V(_Uint8Array, "_Uint8Array") \ 159 V(_Uint8Array, "_Uint8Array") \
174 V(_Uint8ArrayFactory, "_Uint8Array.") \ 160 V(_Uint8ArrayFactory, "_Uint8Array.") \
175 V(_Uint8ClampedArray, "_Uint8ClampedArray") \ 161 V(_Uint8ClampedArray, "_Uint8ClampedArray") \
176 V(_Uint8ClampedArrayFactory, "_Uint8ClampedArray.") \ 162 V(_Uint8ClampedArrayFactory, "_Uint8ClampedArray.") \
177 V(_Int16Array, "_Int16Array") \ 163 V(_Int16Array, "_Int16Array") \
178 V(_Int16ArrayFactory, "_Int16Array.") \ 164 V(_Int16ArrayFactory, "_Int16Array.") \
179 V(_Uint16Array, "_Uint16Array") \ 165 V(_Uint16Array, "_Uint16Array") \
180 V(_Uint16ArrayFactory, "_Uint16Array.") \ 166 V(_Uint16ArrayFactory, "_Uint16Array.") \
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 friend class SnapshotReader; 505 friend class SnapshotReader;
520 friend class SnapshotWriter; 506 friend class SnapshotWriter;
521 friend class ApiMessageReader; 507 friend class ApiMessageReader;
522 508
523 DISALLOW_COPY_AND_ASSIGN(Symbols); 509 DISALLOW_COPY_AND_ASSIGN(Symbols);
524 }; 510 };
525 511
526 } // namespace dart 512 } // namespace dart
527 513
528 #endif // VM_SYMBOLS_H_ 514 #endif // VM_SYMBOLS_H_
OLDNEW
« runtime/vm/intermediate_language.h ('K') | « runtime/vm/intermediate_language_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698