| 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/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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 V(_CapabilityImpl, "_CapabilityImpl") \ | 199 V(_CapabilityImpl, "_CapabilityImpl") \ |
| 200 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ | 200 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ |
| 201 V(_SendPortImpl, "_SendPortImpl") \ | 201 V(_SendPortImpl, "_SendPortImpl") \ |
| 202 V(_StackTrace, "_StackTrace") \ | 202 V(_StackTrace, "_StackTrace") \ |
| 203 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ | 203 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ |
| 204 V(RegExp, "RegExp") \ | 204 V(RegExp, "RegExp") \ |
| 205 V(Irregexp, ":irregexp") \ | 205 V(Irregexp, ":irregexp") \ |
| 206 V(Object, "Object") \ | 206 V(Object, "Object") \ |
| 207 V(Int, "int") \ | 207 V(Int, "int") \ |
| 208 V(Double, "double") \ | 208 V(Double, "double") \ |
| 209 V(_Float32x4, "_Float32x4") \ | |
| 210 V(_Float64x2, "_Float64x2") \ | |
| 211 V(_Int32x4, "_Int32x4") \ | |
| 212 V(Float32x4, "Float32x4") \ | 209 V(Float32x4, "Float32x4") \ |
| 213 V(Float64x2, "Float64x2") \ | 210 V(Float64x2, "Float64x2") \ |
| 214 V(Int32x4, "Int32x4") \ | 211 V(Int32x4, "Int32x4") \ |
| 215 V(Int8List, "Int8List") \ | 212 V(Int8List, "Int8List") \ |
| 216 V(Uint8List, "Uint8List") \ | 213 V(Uint8List, "Uint8List") \ |
| 217 V(Uint8ClampedList, "Uint8ClampedList") \ | 214 V(Uint8ClampedList, "Uint8ClampedList") \ |
| 218 V(Int16List, "Int16List") \ | 215 V(Int16List, "Int16List") \ |
| 219 V(Uint16List, "Uint16List") \ | 216 V(Uint16List, "Uint16List") \ |
| 220 V(Int32List, "Int32List") \ | 217 V(Int32List, "Int32List") \ |
| 221 V(Uint32List, "Uint32List") \ | 218 V(Uint32List, "Uint32List") \ |
| 222 V(Int64List, "Int64List") \ | 219 V(Int64List, "Int64List") \ |
| 223 V(Uint64List, "Uint64List") \ | 220 V(Uint64List, "Uint64List") \ |
| 224 V(Float32x4List, "Float32x4List") \ | 221 V(Float32x4List, "Float32x4List") \ |
| 225 V(Int32x4List, "Int32x4List") \ | 222 V(Int32x4List, "Int32x4List") \ |
| 226 V(Float64x2List, "Float64x2List") \ | 223 V(Float64x2List, "Float64x2List") \ |
| 227 V(Float32List, "Float32List") \ | 224 V(Float32List, "Float32List") \ |
| 228 V(Float64List, "Float64List") \ | 225 V(Float64List, "Float64List") \ |
| 229 V(_Int8Array, "_Int8Array") \ | 226 V(_Int8ArrayFactory, "Int8List.") \ |
| 230 V(_Int8ArrayFactory, "_Int8Array.") \ | 227 V(_Uint8ArrayFactory, "Uint8List.") \ |
| 231 V(_Uint8Array, "_Uint8Array") \ | 228 V(_Uint8ClampedArrayFactory, "Uint8ClampedList.") \ |
| 232 V(_Uint8ArrayFactory, "_Uint8Array.") \ | 229 V(_Int16ArrayFactory, "Int16List.") \ |
| 233 V(_Uint8ClampedArray, "_Uint8ClampedArray") \ | 230 V(_Uint16ArrayFactory, "Uint16List.") \ |
| 234 V(_Uint8ClampedArrayFactory, "_Uint8ClampedArray.") \ | 231 V(_Int32ArrayFactory, "Int32List.") \ |
| 235 V(_Int16Array, "_Int16Array") \ | 232 V(_Uint32ArrayFactory, "Uint32List.") \ |
| 236 V(_Int16ArrayFactory, "_Int16Array.") \ | 233 V(_Int64ArrayFactory, "Int64List.") \ |
| 237 V(_Uint16Array, "_Uint16Array") \ | 234 V(_Uint64ArrayFactory, "Uint64List.") \ |
| 238 V(_Uint16ArrayFactory, "_Uint16Array.") \ | 235 V(_Float32x4ArrayFactory, "Float32x4List.") \ |
| 239 V(_Int32Array, "_Int32Array") \ | 236 V(_Int32x4ArrayFactory, "Int32x4List.") \ |
| 240 V(_Int32ArrayFactory, "_Int32Array.") \ | 237 V(_Float64x2ArrayFactory, "Float64x2List.") \ |
| 241 V(_Uint32Array, "_Uint32Array") \ | 238 V(_Float32ArrayFactory, "Float32List.") \ |
| 242 V(_Uint32ArrayFactory, "_Uint32Array.") \ | 239 V(_Float64ArrayFactory, "Float64List.") \ |
| 243 V(_Int64Array, "_Int64Array") \ | |
| 244 V(_Int64ArrayFactory, "_Int64Array.") \ | |
| 245 V(_Uint64Array, "_Uint64Array") \ | |
| 246 V(_Uint64ArrayFactory, "_Uint64Array.") \ | |
| 247 V(_Float32x4Array, "_Float32x4Array") \ | |
| 248 V(_Float32x4ArrayFactory, "_Float32x4Array.") \ | |
| 249 V(_Int32x4Array, "_Int32x4Array") \ | |
| 250 V(_Int32x4ArrayFactory, "_Int32x4Array.") \ | |
| 251 V(_Float64x2Array, "_Float64x2Array") \ | |
| 252 V(_Float64x2ArrayFactory, "_Float64x2Array.") \ | |
| 253 V(_Float32Array, "_Float32Array") \ | |
| 254 V(_Float32ArrayFactory, "_Float32Array.") \ | |
| 255 V(_Float64Array, "_Float64Array") \ | |
| 256 V(_Float64ArrayFactory, "_Float64Array.") \ | |
| 257 V(_Int8ArrayView, "_Int8ArrayView") \ | 240 V(_Int8ArrayView, "_Int8ArrayView") \ |
| 258 V(_Uint8ArrayView, "_Uint8ArrayView") \ | 241 V(_Uint8ArrayView, "_Uint8ArrayView") \ |
| 259 V(_Uint8ClampedArrayView, "_Uint8ClampedArrayView") \ | 242 V(_Uint8ClampedArrayView, "_Uint8ClampedArrayView") \ |
| 260 V(_Int16ArrayView, "_Int16ArrayView") \ | 243 V(_Int16ArrayView, "_Int16ArrayView") \ |
| 261 V(_Uint16ArrayView, "_Uint16ArrayView") \ | 244 V(_Uint16ArrayView, "_Uint16ArrayView") \ |
| 262 V(_Int32ArrayView, "_Int32ArrayView") \ | 245 V(_Int32ArrayView, "_Int32ArrayView") \ |
| 263 V(_Uint32ArrayView, "_Uint32ArrayView") \ | 246 V(_Uint32ArrayView, "_Uint32ArrayView") \ |
| 264 V(_Int64ArrayView, "_Int64ArrayView") \ | 247 V(_Int64ArrayView, "_Int64ArrayView") \ |
| 265 V(_Uint64ArrayView, "_Uint64ArrayView") \ | 248 V(_Uint64ArrayView, "_Uint64ArrayView") \ |
| 266 V(_Float32ArrayView, "_Float32ArrayView") \ | 249 V(_Float32ArrayView, "_Float32ArrayView") \ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 279 V(_ExternalUint64Array, "_ExternalUint64Array") \ | 262 V(_ExternalUint64Array, "_ExternalUint64Array") \ |
| 280 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ | 263 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ |
| 281 V(_ExternalInt32x4Array, "_ExternalInt32x4Array") \ | 264 V(_ExternalInt32x4Array, "_ExternalInt32x4Array") \ |
| 282 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ | 265 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ |
| 283 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ | 266 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ |
| 284 V(_ExternalFloat64x2Array, "_ExternalFloat64x2Array") \ | 267 V(_ExternalFloat64x2Array, "_ExternalFloat64x2Array") \ |
| 285 V(ByteData, "ByteData") \ | 268 V(ByteData, "ByteData") \ |
| 286 V(ByteDataDot, "ByteData.") \ | 269 V(ByteDataDot, "ByteData.") \ |
| 287 V(ByteDataDot_view, "ByteData._view") \ | 270 V(ByteDataDot_view, "ByteData._view") \ |
| 288 V(_ByteDataView, "_ByteDataView") \ | 271 V(_ByteDataView, "_ByteDataView") \ |
| 289 V(_ByteBuffer, "_ByteBuffer") \ | 272 V(ByteBuffer, "ByteBuffer") \ |
| 290 V(_ByteBufferDot_New, "_ByteBuffer._New") \ | 273 V(ByteBufferDot_New, "ByteBuffer._New") \ |
| 291 V(_WeakProperty, "_WeakProperty") \ | 274 V(_WeakProperty, "_WeakProperty") \ |
| 292 V(_MirrorReference, "_MirrorReference") \ | 275 V(_MirrorReference, "_MirrorReference") \ |
| 293 V(InvocationMirror, "_InvocationMirror") \ | 276 V(InvocationMirror, "_InvocationMirror") \ |
| 294 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ | 277 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ |
| 295 V(toString, "toString") \ | 278 V(toString, "toString") \ |
| 296 V(_lookupHandler, "_lookupHandler") \ | 279 V(_lookupHandler, "_lookupHandler") \ |
| 297 V(_handleMessage, "_handleMessage") \ | 280 V(_handleMessage, "_handleMessage") \ |
| 298 V(DotCreate, "._create") \ | 281 V(DotCreate, "._create") \ |
| 299 V(DotWithType, "._withType") \ | 282 V(DotWithType, "._withType") \ |
| 300 V(_get, "_get") \ | 283 V(_get, "_get") \ |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 friend class SnapshotReader; | 652 friend class SnapshotReader; |
| 670 friend class SnapshotWriter; | 653 friend class SnapshotWriter; |
| 671 friend class ApiMessageReader; | 654 friend class ApiMessageReader; |
| 672 | 655 |
| 673 DISALLOW_COPY_AND_ASSIGN(Symbols); | 656 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 674 }; | 657 }; |
| 675 | 658 |
| 676 } // namespace dart | 659 } // namespace dart |
| 677 | 660 |
| 678 #endif // VM_SYMBOLS_H_ | 661 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |