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

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

Issue 12303013: Simd128Float32, Simd128Mask, and Simd128Float32List additions for dart:scalarlist (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix strict aliasing warning Created 7 years, 9 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/snapshot.cc ('k') | sdk/lib/scalarlist/byte_arrays.dart » ('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) 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 V(ImmutableArray, "_ImmutableArray") \ 115 V(ImmutableArray, "_ImmutableArray") \
116 V(OneByteString, "_OneByteString") \ 116 V(OneByteString, "_OneByteString") \
117 V(TwoByteString, "_TwoByteString") \ 117 V(TwoByteString, "_TwoByteString") \
118 V(ExternalOneByteString, "_ExternalOneByteString") \ 118 V(ExternalOneByteString, "_ExternalOneByteString") \
119 V(ExternalTwoByteString, "_ExternalTwoByteString") \ 119 V(ExternalTwoByteString, "_ExternalTwoByteString") \
120 V(Stacktrace, "Stacktrace") \ 120 V(Stacktrace, "Stacktrace") \
121 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ 121 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \
122 V(Object, "Object") \ 122 V(Object, "Object") \
123 V(Int, "int") \ 123 V(Int, "int") \
124 V(Double, "double") \ 124 V(Double, "double") \
125 V(_Float32x4, "_Float32x4") \
126 V(_Uint32x4, "_Uint32x4") \
127 V(Float32x4, "Float32x4") \
128 V(Uint32x4, "Uint32x4") \
125 V(Int8List, "Int8List") \ 129 V(Int8List, "Int8List") \
126 V(Uint8List, "Uint8List") \ 130 V(Uint8List, "Uint8List") \
127 V(Uint8ClampedList, "Uint8ClampedList") \ 131 V(Uint8ClampedList, "Uint8ClampedList") \
128 V(Int16List, "Int16List") \ 132 V(Int16List, "Int16List") \
129 V(Uint16List, "Uint16List") \ 133 V(Uint16List, "Uint16List") \
130 V(Int32List, "Int32List") \ 134 V(Int32List, "Int32List") \
131 V(Uint32List, "Uint32List") \ 135 V(Uint32List, "Uint32List") \
132 V(Int64List, "Int64List") \ 136 V(Int64List, "Int64List") \
133 V(Uint64List, "Uint64List") \ 137 V(Uint64List, "Uint64List") \
138 V(Float32x4List, "Float32x4List") \
134 V(Float32List, "Float32List") \ 139 V(Float32List, "Float32List") \
135 V(Float64List, "Float64List") \ 140 V(Float64List, "Float64List") \
136 V(_Int8Array, "_Int8Array") \ 141 V(_Int8Array, "_Int8Array") \
137 V(_Uint8Array, "_Uint8Array") \ 142 V(_Uint8Array, "_Uint8Array") \
138 V(_Uint8ClampedArray, "_Uint8ClampedArray") \ 143 V(_Uint8ClampedArray, "_Uint8ClampedArray") \
139 V(_Int16Array, "_Int16Array") \ 144 V(_Int16Array, "_Int16Array") \
140 V(_Uint16Array, "_Uint16Array") \ 145 V(_Uint16Array, "_Uint16Array") \
141 V(_Int32Array, "_Int32Array") \ 146 V(_Int32Array, "_Int32Array") \
142 V(_Uint32Array, "_Uint32Array") \ 147 V(_Uint32Array, "_Uint32Array") \
143 V(_Int64Array, "_Int64Array") \ 148 V(_Int64Array, "_Int64Array") \
144 V(_Uint64Array, "_Uint64Array") \ 149 V(_Uint64Array, "_Uint64Array") \
150 V(_Float32x4Array, "_Float32x4Array") \
145 V(_Float32Array, "_Float32Array") \ 151 V(_Float32Array, "_Float32Array") \
146 V(_Float64Array, "_Float64Array") \ 152 V(_Float64Array, "_Float64Array") \
147 V(_ExternalInt8Array, "_ExternalInt8Array") \ 153 V(_ExternalInt8Array, "_ExternalInt8Array") \
148 V(_ExternalUint8Array, "_ExternalUint8Array") \ 154 V(_ExternalUint8Array, "_ExternalUint8Array") \
149 V(_ExternalUint8ClampedArray, "_ExternalUint8ClampedArray") \ 155 V(_ExternalUint8ClampedArray, "_ExternalUint8ClampedArray") \
150 V(_ExternalInt16Array, "_ExternalInt16Array") \ 156 V(_ExternalInt16Array, "_ExternalInt16Array") \
151 V(_ExternalUint16Array, "_ExternalUint16Array") \ 157 V(_ExternalUint16Array, "_ExternalUint16Array") \
152 V(_ExternalInt32Array, "_ExternalInt32Array") \ 158 V(_ExternalInt32Array, "_ExternalInt32Array") \
153 V(_ExternalUint32Array, "_ExternalUint32Array") \ 159 V(_ExternalUint32Array, "_ExternalUint32Array") \
154 V(_ExternalInt64Array, "_ExternalInt64Array") \ 160 V(_ExternalInt64Array, "_ExternalInt64Array") \
155 V(_ExternalUint64Array, "_ExternalUint64Array") \ 161 V(_ExternalUint64Array, "_ExternalUint64Array") \
162 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \
156 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ 163 V(_ExternalFloat32Array, "_ExternalFloat32Array") \
157 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ 164 V(_ExternalFloat64Array, "_ExternalFloat64Array") \
158 V(_WeakProperty, "_WeakProperty") \ 165 V(_WeakProperty, "_WeakProperty") \
159 V(InvocationMirror, "_InvocationMirror") \ 166 V(InvocationMirror, "_InvocationMirror") \
160 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ 167 V(AllocateInvocationMirror, "_allocateInvocationMirror") \
161 V(toString, "toString") \ 168 V(toString, "toString") \
162 V(_ReceivePortImpl, "_ReceivePortImpl") \ 169 V(_ReceivePortImpl, "_ReceivePortImpl") \
163 V(_lookupReceivePort, "_lookupReceivePort") \ 170 V(_lookupReceivePort, "_lookupReceivePort") \
164 V(_handleMessage, "_handleMessage") \ 171 V(_handleMessage, "_handleMessage") \
165 V(_SendPortImpl, "_SendPortImpl") \ 172 V(_SendPortImpl, "_SendPortImpl") \
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 friend class SnapshotReader; 404 friend class SnapshotReader;
398 friend class SnapshotWriter; 405 friend class SnapshotWriter;
399 friend class ApiMessageReader; 406 friend class ApiMessageReader;
400 407
401 DISALLOW_COPY_AND_ASSIGN(Symbols); 408 DISALLOW_COPY_AND_ASSIGN(Symbols);
402 }; 409 };
403 410
404 } // namespace dart 411 } // namespace dart
405 412
406 #endif // VM_SYMBOLS_H_ 413 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/snapshot.cc ('k') | sdk/lib/scalarlist/byte_arrays.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698