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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 V(DartCollectionDev, "dart:_collection-dev") \ | 275 V(DartCollectionDev, "dart:_collection-dev") \ |
276 V(DartConvert, "dart:convert") \ | 276 V(DartConvert, "dart:convert") \ |
277 V(DartIsolate, "dart:isolate") \ | 277 V(DartIsolate, "dart:isolate") \ |
278 V(DartMath, "dart:math") \ | 278 V(DartMath, "dart:math") \ |
279 V(DartMirrors, "dart:mirrors") \ | 279 V(DartMirrors, "dart:mirrors") \ |
280 V(DartTypedData, "dart:typed_data") \ | 280 V(DartTypedData, "dart:typed_data") \ |
281 V(_Random, "_Random") \ | 281 V(_Random, "_Random") \ |
282 V(_state, "_state") \ | 282 V(_state, "_state") \ |
283 V(_A, "_A") \ | 283 V(_A, "_A") \ |
284 V(_stackTrace, "_stackTrace") \ | 284 V(_stackTrace, "_stackTrace") \ |
285 V(_SpecialTypeMirrorImpl, "_SpecialTypeMirrorImpl") \ | 285 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ |
286 V(_LocalClassMirrorImpl, "_LocalClassMirrorImpl") \ | 286 V(_LocalClassMirror, "_LocalClassMirror") \ |
287 V(_LocalFunctionTypeMirrorImpl, "_LocalFunctionTypeMirrorImpl") \ | 287 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \ |
288 V(_LocalLibraryMirrorImpl, "_LocalLibraryMirrorImpl") \ | 288 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ |
289 V(_LocalMethodMirrorImpl, "_LocalMethodMirrorImpl") \ | 289 V(_LocalMethodMirror, "_LocalMethodMirror") \ |
290 V(_LocalVariableMirrorImpl, "_LocalVariableMirrorImpl") \ | 290 V(_LocalVariableMirror, "_LocalVariableMirror") \ |
291 V(_LocalParameterMirrorImpl, "_LocalParameterMirrorImpl") \ | 291 V(_LocalParameterMirror, "_LocalParameterMirror") \ |
292 V(_LocalIsolateMirrorImpl, "_LocalIsolateMirrorImpl") \ | 292 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ |
293 V(_LocalMirrorSystemImpl, "_LocalMirrorSystemImpl") \ | 293 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ |
294 V(_LocalTypedefMirrorImpl, "_LocalTypedefMirrorImpl") \ | 294 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ |
295 V(_LocalTypeVariableMirrorImpl, "_LocalTypeVariableMirrorImpl") \ | 295 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ |
296 V(hashCode, "get:hashCode") \ | 296 V(hashCode, "get:hashCode") \ |
297 V(_leftShiftWithMask32, "_leftShiftWithMask32") \ | 297 V(_leftShiftWithMask32, "_leftShiftWithMask32") \ |
298 V(OptimizedOut, "<optimized out>") \ | 298 V(OptimizedOut, "<optimized out>") \ |
299 V(ClassId, "get:_classId") \ | 299 V(ClassId, "get:_classId") \ |
300 | 300 |
301 | 301 |
302 // Contains a list of frequently used strings in a canonicalized form. This | 302 // Contains a list of frequently used strings in a canonicalized form. This |
303 // list is kept in the vm_isolate in order to share the copy across isolates | 303 // list is kept in the vm_isolate in order to share the copy across isolates |
304 // without having to maintain copies in each isolate. | 304 // without having to maintain copies in each isolate. |
305 class Symbols : public AllStatic { | 305 class Symbols : public AllStatic { |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 friend class SnapshotReader; | 508 friend class SnapshotReader; |
509 friend class SnapshotWriter; | 509 friend class SnapshotWriter; |
510 friend class ApiMessageReader; | 510 friend class ApiMessageReader; |
511 | 511 |
512 DISALLOW_COPY_AND_ASSIGN(Symbols); | 512 DISALLOW_COPY_AND_ASSIGN(Symbols); |
513 }; | 513 }; |
514 | 514 |
515 } // namespace dart | 515 } // namespace dart |
516 | 516 |
517 #endif // VM_SYMBOLS_H_ | 517 #endif // VM_SYMBOLS_H_ |
OLD | NEW |