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

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

Issue 148043003: Add Float64x2, Float64x2List, etc... with runtime and dart2js implementations (Closed) Base URL: https://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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 V(OneByteString, "_OneByteString") \ 129 V(OneByteString, "_OneByteString") \
130 V(TwoByteString, "_TwoByteString") \ 130 V(TwoByteString, "_TwoByteString") \
131 V(ExternalOneByteString, "_ExternalOneByteString") \ 131 V(ExternalOneByteString, "_ExternalOneByteString") \
132 V(ExternalTwoByteString, "_ExternalTwoByteString") \ 132 V(ExternalTwoByteString, "_ExternalTwoByteString") \
133 V(StackTrace, "StackTrace") \ 133 V(StackTrace, "StackTrace") \
134 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ 134 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \
135 V(Object, "Object") \ 135 V(Object, "Object") \
136 V(Int, "int") \ 136 V(Int, "int") \
137 V(Double, "double") \ 137 V(Double, "double") \
138 V(_Float32x4, "_Float32x4") \ 138 V(_Float32x4, "_Float32x4") \
139 V(_Float64x2, "_Float64x2") \
139 V(_Int32x4, "_Int32x4") \ 140 V(_Int32x4, "_Int32x4") \
140 V(Float32x4, "Float32x4") \ 141 V(Float32x4, "Float32x4") \
142 V(Float64x2, "Float64x2") \
141 V(Int32x4, "Int32x4") \ 143 V(Int32x4, "Int32x4") \
142 V(Int8List, "Int8List") \ 144 V(Int8List, "Int8List") \
143 V(Int8ListFactory, "Int8List.") \ 145 V(Int8ListFactory, "Int8List.") \
144 V(Uint8List, "Uint8List") \ 146 V(Uint8List, "Uint8List") \
145 V(Uint8ListFactory, "Uint8List.") \ 147 V(Uint8ListFactory, "Uint8List.") \
146 V(Uint8ClampedList, "Uint8ClampedList") \ 148 V(Uint8ClampedList, "Uint8ClampedList") \
147 V(Uint8ClampedListFactory, "Uint8ClampedList.") \ 149 V(Uint8ClampedListFactory, "Uint8ClampedList.") \
148 V(Int16List, "Int16List") \ 150 V(Int16List, "Int16List") \
149 V(Int16ListFactory, "Int16List.") \ 151 V(Int16ListFactory, "Int16List.") \
150 V(Uint16List, "Uint16List") \ 152 V(Uint16List, "Uint16List") \
151 V(Uint16ListFactory, "Uint16List.") \ 153 V(Uint16ListFactory, "Uint16List.") \
152 V(Int32List, "Int32List") \ 154 V(Int32List, "Int32List") \
153 V(Int32ListFactory, "Int32List.") \ 155 V(Int32ListFactory, "Int32List.") \
154 V(Uint32List, "Uint32List") \ 156 V(Uint32List, "Uint32List") \
155 V(Uint32ListFactory, "Uint32List.") \ 157 V(Uint32ListFactory, "Uint32List.") \
156 V(Int64List, "Int64List") \ 158 V(Int64List, "Int64List") \
157 V(Int64ListFactory, "Int64List.") \ 159 V(Int64ListFactory, "Int64List.") \
158 V(Uint64List, "Uint64List") \ 160 V(Uint64List, "Uint64List") \
159 V(Uint64ListFactory, "Uint64List.") \ 161 V(Uint64ListFactory, "Uint64List.") \
160 V(Float32x4List, "Float32x4List") \ 162 V(Float32x4List, "Float32x4List") \
161 V(Float32x4ListFactory, "Float32x4List.") \ 163 V(Float32x4ListFactory, "Float32x4List.") \
162 V(Int32x4List, "Int32x4List") \ 164 V(Int32x4List, "Int32x4List") \
163 V(Int32x4ListFactory, "Int32x4List.") \ 165 V(Int32x4ListFactory, "Int32x4List.") \
166 V(Float64x2List, "Float64x2List") \
167 V(Float64x2ListFactory, "Float64x2List.") \
164 V(Float32List, "Float32List") \ 168 V(Float32List, "Float32List") \
165 V(Float32ListFactory, "Float32List.") \ 169 V(Float32ListFactory, "Float32List.") \
166 V(Float64List, "Float64List") \ 170 V(Float64List, "Float64List") \
167 V(Float64ListFactory, "Float64List.") \ 171 V(Float64ListFactory, "Float64List.") \
168 V(_Int8Array, "_Int8Array") \ 172 V(_Int8Array, "_Int8Array") \
169 V(_Int8ArrayFactory, "_Int8Array.") \ 173 V(_Int8ArrayFactory, "_Int8Array.") \
170 V(_Uint8Array, "_Uint8Array") \ 174 V(_Uint8Array, "_Uint8Array") \
171 V(_Uint8ArrayFactory, "_Uint8Array.") \ 175 V(_Uint8ArrayFactory, "_Uint8Array.") \
172 V(_Uint8ClampedArray, "_Uint8ClampedArray") \ 176 V(_Uint8ClampedArray, "_Uint8ClampedArray") \
173 V(_Uint8ClampedArrayFactory, "_Uint8ClampedArray.") \ 177 V(_Uint8ClampedArrayFactory, "_Uint8ClampedArray.") \
174 V(_Int16Array, "_Int16Array") \ 178 V(_Int16Array, "_Int16Array") \
175 V(_Int16ArrayFactory, "_Int16Array.") \ 179 V(_Int16ArrayFactory, "_Int16Array.") \
176 V(_Uint16Array, "_Uint16Array") \ 180 V(_Uint16Array, "_Uint16Array") \
177 V(_Uint16ArrayFactory, "_Uint16Array.") \ 181 V(_Uint16ArrayFactory, "_Uint16Array.") \
178 V(_Int32Array, "_Int32Array") \ 182 V(_Int32Array, "_Int32Array") \
179 V(_Int32ArrayFactory, "_Int32Array.") \ 183 V(_Int32ArrayFactory, "_Int32Array.") \
180 V(_Uint32Array, "_Uint32Array") \ 184 V(_Uint32Array, "_Uint32Array") \
181 V(_Uint32ArrayFactory, "_Uint32Array.") \ 185 V(_Uint32ArrayFactory, "_Uint32Array.") \
182 V(_Int64Array, "_Int64Array") \ 186 V(_Int64Array, "_Int64Array") \
183 V(_Int64ArrayFactory, "_Int64Array.") \ 187 V(_Int64ArrayFactory, "_Int64Array.") \
184 V(_Uint64Array, "_Uint64Array") \ 188 V(_Uint64Array, "_Uint64Array") \
185 V(_Uint64ArrayFactory, "_Uint64Array.") \ 189 V(_Uint64ArrayFactory, "_Uint64Array.") \
186 V(_Float32x4Array, "_Float32x4Array") \ 190 V(_Float32x4Array, "_Float32x4Array") \
187 V(_Float32x4ArrayFactory, "_Float32x4Array.") \ 191 V(_Float32x4ArrayFactory, "_Float32x4Array.") \
188 V(_Int32x4Array, "_Int32x4Array") \ 192 V(_Int32x4Array, "_Int32x4Array") \
189 V(_Int32x4ArrayFactory, "_Int32x4Array.") \ 193 V(_Int32x4ArrayFactory, "_Int32x4Array.") \
194 V(_Float64x2Array, "_Float64x2Array") \
195 V(_Float64x2ArrayFactory, "_Float64x2Array.") \
190 V(_Float32Array, "_Float32Array") \ 196 V(_Float32Array, "_Float32Array") \
191 V(_Float32ArrayFactory, "_Float32Array.") \ 197 V(_Float32ArrayFactory, "_Float32Array.") \
192 V(_Float64Array, "_Float64Array") \ 198 V(_Float64Array, "_Float64Array") \
193 V(_Float64ArrayFactory, "_Float64Array.") \ 199 V(_Float64ArrayFactory, "_Float64Array.") \
194 V(_Int8ArrayView, "_Int8ArrayView") \ 200 V(_Int8ArrayView, "_Int8ArrayView") \
195 V(_Uint8ArrayView, "_Uint8ArrayView") \ 201 V(_Uint8ArrayView, "_Uint8ArrayView") \
196 V(_Uint8ClampedArrayView, "_Uint8ClampedArrayView") \ 202 V(_Uint8ClampedArrayView, "_Uint8ClampedArrayView") \
197 V(_Int16ArrayView, "_Int16ArrayView") \ 203 V(_Int16ArrayView, "_Int16ArrayView") \
198 V(_Uint16ArrayView, "_Uint16ArrayView") \ 204 V(_Uint16ArrayView, "_Uint16ArrayView") \
199 V(_Int32ArrayView, "_Int32ArrayView") \ 205 V(_Int32ArrayView, "_Int32ArrayView") \
200 V(_Uint32ArrayView, "_Uint32ArrayView") \ 206 V(_Uint32ArrayView, "_Uint32ArrayView") \
201 V(_Int64ArrayView, "_Int64ArrayView") \ 207 V(_Int64ArrayView, "_Int64ArrayView") \
202 V(_Uint64ArrayView, "_Uint64ArrayView") \ 208 V(_Uint64ArrayView, "_Uint64ArrayView") \
203 V(_Float32ArrayView, "_Float32ArrayView") \ 209 V(_Float32ArrayView, "_Float32ArrayView") \
204 V(_Float64ArrayView, "_Float64ArrayView") \ 210 V(_Float64ArrayView, "_Float64ArrayView") \
205 V(_Float32x4ArrayView, "_Float32x4ArrayView") \ 211 V(_Float32x4ArrayView, "_Float32x4ArrayView") \
206 V(_Int32x4ArrayView, "_Int32x4ArrayView") \ 212 V(_Int32x4ArrayView, "_Int32x4ArrayView") \
213 V(_Float64x2ArrayView, "_Float64x2ArrayView") \
207 V(_ExternalInt8Array, "_ExternalInt8Array") \ 214 V(_ExternalInt8Array, "_ExternalInt8Array") \
208 V(_ExternalUint8Array, "_ExternalUint8Array") \ 215 V(_ExternalUint8Array, "_ExternalUint8Array") \
209 V(_ExternalUint8ClampedArray, "_ExternalUint8ClampedArray") \ 216 V(_ExternalUint8ClampedArray, "_ExternalUint8ClampedArray") \
210 V(_ExternalInt16Array, "_ExternalInt16Array") \ 217 V(_ExternalInt16Array, "_ExternalInt16Array") \
211 V(_ExternalUint16Array, "_ExternalUint16Array") \ 218 V(_ExternalUint16Array, "_ExternalUint16Array") \
212 V(_ExternalInt32Array, "_ExternalInt32Array") \ 219 V(_ExternalInt32Array, "_ExternalInt32Array") \
213 V(_ExternalUint32Array, "_ExternalUint32Array") \ 220 V(_ExternalUint32Array, "_ExternalUint32Array") \
214 V(_ExternalInt64Array, "_ExternalInt64Array") \ 221 V(_ExternalInt64Array, "_ExternalInt64Array") \
215 V(_ExternalUint64Array, "_ExternalUint64Array") \ 222 V(_ExternalUint64Array, "_ExternalUint64Array") \
216 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ 223 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \
217 V(_ExternalInt32x4Array, "_ExternalInt32x4Array") \ 224 V(_ExternalInt32x4Array, "_ExternalInt32x4Array") \
218 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ 225 V(_ExternalFloat32Array, "_ExternalFloat32Array") \
219 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ 226 V(_ExternalFloat64Array, "_ExternalFloat64Array") \
227 V(_ExternalFloat64x2Array, "_ExternalFloat64x2Array") \
220 V(ByteData, "ByteData") \ 228 V(ByteData, "ByteData") \
221 V(ByteDataDot, "ByteData.") \ 229 V(ByteDataDot, "ByteData.") \
222 V(ByteDataDotview, "ByteData.view") \ 230 V(ByteDataDotview, "ByteData.view") \
223 V(_ByteDataView, "_ByteDataView") \ 231 V(_ByteDataView, "_ByteDataView") \
224 V(_WeakProperty, "_WeakProperty") \ 232 V(_WeakProperty, "_WeakProperty") \
225 V(_MirrorReference, "_MirrorReference") \ 233 V(_MirrorReference, "_MirrorReference") \
226 V(InvocationMirror, "_InvocationMirror") \ 234 V(InvocationMirror, "_InvocationMirror") \
227 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ 235 V(AllocateInvocationMirror, "_allocateInvocationMirror") \
228 V(toString, "toString") \ 236 V(toString, "toString") \
229 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ 237 V(_RawReceivePortImpl, "_RawReceivePortImpl") \
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 friend class SnapshotReader; 520 friend class SnapshotReader;
513 friend class SnapshotWriter; 521 friend class SnapshotWriter;
514 friend class ApiMessageReader; 522 friend class ApiMessageReader;
515 523
516 DISALLOW_COPY_AND_ASSIGN(Symbols); 524 DISALLOW_COPY_AND_ASSIGN(Symbols);
517 }; 525 };
518 526
519 } // namespace dart 527 } // namespace dart
520 528
521 #endif // VM_SYMBOLS_H_ 529 #endif // VM_SYMBOLS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698