OLD | NEW |
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 RUNTIME_VM_SYMBOLS_H_ | 5 #ifndef RUNTIME_VM_SYMBOLS_H_ |
6 #define RUNTIME_VM_SYMBOLS_H_ | 6 #define RUNTIME_VM_SYMBOLS_H_ |
7 | 7 |
8 #include "vm/growable_array.h" | 8 #include "vm/growable_array.h" |
9 #include "vm/object.h" | 9 #include "vm/object.h" |
10 #include "vm/snapshot_ids.h" | 10 #include "vm/snapshot_ids.h" |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 V(_StackTrace, "_StackTrace") \ | 211 V(_StackTrace, "_StackTrace") \ |
212 V(_RegExp, "_RegExp") \ | 212 V(_RegExp, "_RegExp") \ |
213 V(RegExp, "RegExp") \ | 213 V(RegExp, "RegExp") \ |
214 V(ColonMatcher, ":matcher") \ | 214 V(ColonMatcher, ":matcher") \ |
215 V(Object, "Object") \ | 215 V(Object, "Object") \ |
216 V(Int, "int") \ | 216 V(Int, "int") \ |
217 V(Double, "double") \ | 217 V(Double, "double") \ |
218 V(Float32x4, "Float32x4") \ | 218 V(Float32x4, "Float32x4") \ |
219 V(Float64x2, "Float64x2") \ | 219 V(Float64x2, "Float64x2") \ |
220 V(Int32x4, "Int32x4") \ | 220 V(Int32x4, "Int32x4") \ |
221 V(Int8List, "Int8List") \ | 221 V(_Float32x4, "_Float32x4") \ |
222 V(Uint8List, "Uint8List") \ | 222 V(_Float64x2, "_Float64x2") \ |
223 V(Uint8ClampedList, "Uint8ClampedList") \ | 223 V(_Int32x4, "_Int32x4") \ |
224 V(Int16List, "Int16List") \ | 224 V(Int8List, "_Int8List") \ |
225 V(Uint16List, "Uint16List") \ | 225 V(Uint8List, "_Uint8List") \ |
226 V(Int32List, "Int32List") \ | 226 V(Uint8ClampedList, "_Uint8ClampedList") \ |
227 V(Uint32List, "Uint32List") \ | 227 V(Int16List, "_Int16List") \ |
228 V(Int64List, "Int64List") \ | 228 V(Uint16List, "_Uint16List") \ |
229 V(Uint64List, "Uint64List") \ | 229 V(Int32List, "_Int32List") \ |
230 V(Float32x4List, "Float32x4List") \ | 230 V(Uint32List, "_Uint32List") \ |
231 V(Int32x4List, "Int32x4List") \ | 231 V(Int64List, "_Int64List") \ |
232 V(Float64x2List, "Float64x2List") \ | 232 V(Uint64List, "_Uint64List") \ |
233 V(Float32List, "Float32List") \ | 233 V(Float32x4List, "_Float32x4List") \ |
234 V(Float64List, "Float64List") \ | 234 V(Int32x4List, "_Int32x4List") \ |
| 235 V(Float64x2List, "_Float64x2List") \ |
| 236 V(Float32List, "_Float32List") \ |
| 237 V(Float64List, "_Float64List") \ |
235 V(_Int8ArrayFactory, "Int8List.") \ | 238 V(_Int8ArrayFactory, "Int8List.") \ |
236 V(_Uint8ArrayFactory, "Uint8List.") \ | 239 V(_Uint8ArrayFactory, "Uint8List.") \ |
237 V(_Uint8ClampedArrayFactory, "Uint8ClampedList.") \ | 240 V(_Uint8ClampedArrayFactory, "Uint8ClampedList.") \ |
238 V(_Int16ArrayFactory, "Int16List.") \ | 241 V(_Int16ArrayFactory, "Int16List.") \ |
239 V(_Uint16ArrayFactory, "Uint16List.") \ | 242 V(_Uint16ArrayFactory, "Uint16List.") \ |
240 V(_Int32ArrayFactory, "Int32List.") \ | 243 V(_Int32ArrayFactory, "Int32List.") \ |
241 V(_Uint32ArrayFactory, "Uint32List.") \ | 244 V(_Uint32ArrayFactory, "Uint32List.") \ |
242 V(_Int64ArrayFactory, "Int64List.") \ | 245 V(_Int64ArrayFactory, "Int64List.") \ |
243 V(_Uint64ArrayFactory, "Uint64List.") \ | 246 V(_Uint64ArrayFactory, "Uint64List.") \ |
244 V(_Float32x4ArrayFactory, "Float32x4List.") \ | 247 V(_Float32x4ArrayFactory, "Float32x4List.") \ |
(...skipping 26 matching lines...) Expand all Loading... |
271 V(_ExternalUint64Array, "_ExternalUint64Array") \ | 274 V(_ExternalUint64Array, "_ExternalUint64Array") \ |
272 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ | 275 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ |
273 V(_ExternalInt32x4Array, "_ExternalInt32x4Array") \ | 276 V(_ExternalInt32x4Array, "_ExternalInt32x4Array") \ |
274 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ | 277 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ |
275 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ | 278 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ |
276 V(_ExternalFloat64x2Array, "_ExternalFloat64x2Array") \ | 279 V(_ExternalFloat64x2Array, "_ExternalFloat64x2Array") \ |
277 V(ByteData, "ByteData") \ | 280 V(ByteData, "ByteData") \ |
278 V(ByteDataDot, "ByteData.") \ | 281 V(ByteDataDot, "ByteData.") \ |
279 V(ByteDataDot_view, "ByteData._view") \ | 282 V(ByteDataDot_view, "ByteData._view") \ |
280 V(_ByteDataView, "_ByteDataView") \ | 283 V(_ByteDataView, "_ByteDataView") \ |
281 V(ByteBuffer, "ByteBuffer") \ | 284 V(_ByteBuffer, "_ByteBuffer") \ |
282 V(ByteBufferDot_New, "ByteBuffer._New") \ | 285 V(_ByteBufferDot_New, "_ByteBuffer._New") \ |
283 V(_WeakProperty, "_WeakProperty") \ | 286 V(_WeakProperty, "_WeakProperty") \ |
284 V(_MirrorReference, "_MirrorReference") \ | 287 V(_MirrorReference, "_MirrorReference") \ |
285 V(FreeListElement, "FreeListElement") \ | 288 V(FreeListElement, "FreeListElement") \ |
286 V(ForwardingCorpse, "ForwardingCorpse") \ | 289 V(ForwardingCorpse, "ForwardingCorpse") \ |
287 V(InvocationMirror, "_InvocationMirror") \ | 290 V(InvocationMirror, "_InvocationMirror") \ |
288 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ | 291 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ |
289 V(toString, "toString") \ | 292 V(toString, "toString") \ |
290 V(_lookupHandler, "_lookupHandler") \ | 293 V(_lookupHandler, "_lookupHandler") \ |
291 V(_handleMessage, "_handleMessage") \ | 294 V(_handleMessage, "_handleMessage") \ |
292 V(DotCreate, "._create") \ | 295 V(DotCreate, "._create") \ |
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
665 friend class Serializer; | 668 friend class Serializer; |
666 friend class Deserializer; | 669 friend class Deserializer; |
667 friend class ApiMessageReader; | 670 friend class ApiMessageReader; |
668 | 671 |
669 DISALLOW_COPY_AND_ASSIGN(Symbols); | 672 DISALLOW_COPY_AND_ASSIGN(Symbols); |
670 }; | 673 }; |
671 | 674 |
672 } // namespace dart | 675 } // namespace dart |
673 | 676 |
674 #endif // RUNTIME_VM_SYMBOLS_H_ | 677 #endif // RUNTIME_VM_SYMBOLS_H_ |
OLD | NEW |