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 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 V(_Uint8ClampedArray, "_Uint8ClampedArray") \ | 156 V(_Uint8ClampedArray, "_Uint8ClampedArray") \ |
157 V(_Int16Array, "_Int16Array") \ | 157 V(_Int16Array, "_Int16Array") \ |
158 V(_Uint16Array, "_Uint16Array") \ | 158 V(_Uint16Array, "_Uint16Array") \ |
159 V(_Int32Array, "_Int32Array") \ | 159 V(_Int32Array, "_Int32Array") \ |
160 V(_Uint32Array, "_Uint32Array") \ | 160 V(_Uint32Array, "_Uint32Array") \ |
161 V(_Int64Array, "_Int64Array") \ | 161 V(_Int64Array, "_Int64Array") \ |
162 V(_Uint64Array, "_Uint64Array") \ | 162 V(_Uint64Array, "_Uint64Array") \ |
163 V(_Float32x4Array, "_Float32x4Array") \ | 163 V(_Float32x4Array, "_Float32x4Array") \ |
164 V(_Float32Array, "_Float32Array") \ | 164 V(_Float32Array, "_Float32Array") \ |
165 V(_Float64Array, "_Float64Array") \ | 165 V(_Float64Array, "_Float64Array") \ |
| 166 V(_Int8ArrayView, "_Int8ArrayView") \ |
| 167 V(_Uint8ArrayView, "_Uint8ArrayView") \ |
| 168 V(_Uint8ClampedArrayView, "_Uint8ClampedArrayView") \ |
| 169 V(_Int16ArrayView, "_Int16ArrayView") \ |
| 170 V(_Uint16ArrayView, "_Uint16ArrayView") \ |
| 171 V(_Int32ArrayView, "_Int32ArrayView") \ |
| 172 V(_Uint32ArrayView, "_Uint32ArrayView") \ |
| 173 V(_Int64ArrayView, "_Int64ArrayView") \ |
| 174 V(_Uint64ArrayView, "_Uint64ArrayView") \ |
| 175 V(_Float32ArrayView, "_Float32ArrayView") \ |
| 176 V(_Float64ArrayView, "_Float64ArrayView") \ |
166 V(_ExternalInt8Array, "_ExternalInt8Array") \ | 177 V(_ExternalInt8Array, "_ExternalInt8Array") \ |
167 V(_ExternalUint8Array, "_ExternalUint8Array") \ | 178 V(_ExternalUint8Array, "_ExternalUint8Array") \ |
168 V(_ExternalUint8ClampedArray, "_ExternalUint8ClampedArray") \ | 179 V(_ExternalUint8ClampedArray, "_ExternalUint8ClampedArray") \ |
169 V(_ExternalInt16Array, "_ExternalInt16Array") \ | 180 V(_ExternalInt16Array, "_ExternalInt16Array") \ |
170 V(_ExternalUint16Array, "_ExternalUint16Array") \ | 181 V(_ExternalUint16Array, "_ExternalUint16Array") \ |
171 V(_ExternalInt32Array, "_ExternalInt32Array") \ | 182 V(_ExternalInt32Array, "_ExternalInt32Array") \ |
172 V(_ExternalUint32Array, "_ExternalUint32Array") \ | 183 V(_ExternalUint32Array, "_ExternalUint32Array") \ |
173 V(_ExternalInt64Array, "_ExternalInt64Array") \ | 184 V(_ExternalInt64Array, "_ExternalInt64Array") \ |
174 V(_ExternalUint64Array, "_ExternalUint64Array") \ | 185 V(_ExternalUint64Array, "_ExternalUint64Array") \ |
175 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ | 186 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 friend class SnapshotReader; | 432 friend class SnapshotReader; |
422 friend class SnapshotWriter; | 433 friend class SnapshotWriter; |
423 friend class ApiMessageReader; | 434 friend class ApiMessageReader; |
424 | 435 |
425 DISALLOW_COPY_AND_ASSIGN(Symbols); | 436 DISALLOW_COPY_AND_ASSIGN(Symbols); |
426 }; | 437 }; |
427 | 438 |
428 } // namespace dart | 439 } // namespace dart |
429 | 440 |
430 #endif // VM_SYMBOLS_H_ | 441 #endif // VM_SYMBOLS_H_ |
OLD | NEW |