| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 V(_Uint8ArrayView, "_Uint8ArrayView") \ | 167 V(_Uint8ArrayView, "_Uint8ArrayView") \ |
| 168 V(_Uint8ClampedArrayView, "_Uint8ClampedArrayView") \ | 168 V(_Uint8ClampedArrayView, "_Uint8ClampedArrayView") \ |
| 169 V(_Int16ArrayView, "_Int16ArrayView") \ | 169 V(_Int16ArrayView, "_Int16ArrayView") \ |
| 170 V(_Uint16ArrayView, "_Uint16ArrayView") \ | 170 V(_Uint16ArrayView, "_Uint16ArrayView") \ |
| 171 V(_Int32ArrayView, "_Int32ArrayView") \ | 171 V(_Int32ArrayView, "_Int32ArrayView") \ |
| 172 V(_Uint32ArrayView, "_Uint32ArrayView") \ | 172 V(_Uint32ArrayView, "_Uint32ArrayView") \ |
| 173 V(_Int64ArrayView, "_Int64ArrayView") \ | 173 V(_Int64ArrayView, "_Int64ArrayView") \ |
| 174 V(_Uint64ArrayView, "_Uint64ArrayView") \ | 174 V(_Uint64ArrayView, "_Uint64ArrayView") \ |
| 175 V(_Float32ArrayView, "_Float32ArrayView") \ | 175 V(_Float32ArrayView, "_Float32ArrayView") \ |
| 176 V(_Float64ArrayView, "_Float64ArrayView") \ | 176 V(_Float64ArrayView, "_Float64ArrayView") \ |
| 177 V(_Float32x4ArrayView, "_Float32x4ArrayView") \ |
| 177 V(_ExternalInt8Array, "_ExternalInt8Array") \ | 178 V(_ExternalInt8Array, "_ExternalInt8Array") \ |
| 178 V(_ExternalUint8Array, "_ExternalUint8Array") \ | 179 V(_ExternalUint8Array, "_ExternalUint8Array") \ |
| 179 V(_ExternalUint8ClampedArray, "_ExternalUint8ClampedArray") \ | 180 V(_ExternalUint8ClampedArray, "_ExternalUint8ClampedArray") \ |
| 180 V(_ExternalInt16Array, "_ExternalInt16Array") \ | 181 V(_ExternalInt16Array, "_ExternalInt16Array") \ |
| 181 V(_ExternalUint16Array, "_ExternalUint16Array") \ | 182 V(_ExternalUint16Array, "_ExternalUint16Array") \ |
| 182 V(_ExternalInt32Array, "_ExternalInt32Array") \ | 183 V(_ExternalInt32Array, "_ExternalInt32Array") \ |
| 183 V(_ExternalUint32Array, "_ExternalUint32Array") \ | 184 V(_ExternalUint32Array, "_ExternalUint32Array") \ |
| 184 V(_ExternalInt64Array, "_ExternalInt64Array") \ | 185 V(_ExternalInt64Array, "_ExternalInt64Array") \ |
| 185 V(_ExternalUint64Array, "_ExternalUint64Array") \ | 186 V(_ExternalUint64Array, "_ExternalUint64Array") \ |
| 186 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ | 187 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 friend class SnapshotReader; | 437 friend class SnapshotReader; |
| 437 friend class SnapshotWriter; | 438 friend class SnapshotWriter; |
| 438 friend class ApiMessageReader; | 439 friend class ApiMessageReader; |
| 439 | 440 |
| 440 DISALLOW_COPY_AND_ASSIGN(Symbols); | 441 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 441 }; | 442 }; |
| 442 | 443 |
| 443 } // namespace dart | 444 } // namespace dart |
| 444 | 445 |
| 445 #endif // VM_SYMBOLS_H_ | 446 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |