Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Side by Side Diff: runtime/vm/symbols.h

Issue 22640019: Fix for running with --throw_on_javascript_int_overflow: recognize pattern (a << b) & mask and test… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
275 V(_LocalClassMirrorImpl, "_LocalClassMirrorImpl") \ 275 V(_LocalClassMirrorImpl, "_LocalClassMirrorImpl") \
276 V(_LocalFunctionTypeMirrorImpl, "_LocalFunctionTypeMirrorImpl") \ 276 V(_LocalFunctionTypeMirrorImpl, "_LocalFunctionTypeMirrorImpl") \
277 V(_LocalLibraryMirrorImpl, "_LocalLibraryMirrorImpl") \ 277 V(_LocalLibraryMirrorImpl, "_LocalLibraryMirrorImpl") \
278 V(_LocalMethodMirrorImpl, "_LocalMethodMirrorImpl") \ 278 V(_LocalMethodMirrorImpl, "_LocalMethodMirrorImpl") \
279 V(_LocalVariableMirrorImpl, "_LocalVariableMirrorImpl") \ 279 V(_LocalVariableMirrorImpl, "_LocalVariableMirrorImpl") \
280 V(_LocalParameterMirrorImpl, "_LocalParameterMirrorImpl") \ 280 V(_LocalParameterMirrorImpl, "_LocalParameterMirrorImpl") \
281 V(_LocalIsolateMirrorImpl, "_LocalIsolateMirrorImpl") \ 281 V(_LocalIsolateMirrorImpl, "_LocalIsolateMirrorImpl") \
282 V(_LocalMirrorSystemImpl, "_LocalMirrorSystemImpl") \ 282 V(_LocalMirrorSystemImpl, "_LocalMirrorSystemImpl") \
283 V(_LocalTypedefMirrorImpl, "_LocalTypedefMirrorImpl") \ 283 V(_LocalTypedefMirrorImpl, "_LocalTypedefMirrorImpl") \
284 V(_LocalTypeVariableMirrorImpl, "_LocalTypeVariableMirrorImpl") \ 284 V(_LocalTypeVariableMirrorImpl, "_LocalTypeVariableMirrorImpl") \
285 V(_leftShiftWithMask32, "_leftShiftWithMask32") \
285 286
286 287
287 // Contains a list of frequently used strings in a canonicalized form. This 288 // Contains a list of frequently used strings in a canonicalized form. This
288 // list is kept in the vm_isolate in order to share the copy across isolates 289 // list is kept in the vm_isolate in order to share the copy across isolates
289 // without having to maintain copies in each isolate. 290 // without having to maintain copies in each isolate.
290 class Symbols : public AllStatic { 291 class Symbols : public AllStatic {
291 public: 292 public:
292 enum { kMaxOneCharCodeSymbol = 0xFF }; 293 enum { kMaxOneCharCodeSymbol = 0xFF };
293 294
294 // List of strings that are pre created in the vm isolate. 295 // List of strings that are pre created in the vm isolate.
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 friend class SnapshotReader; 481 friend class SnapshotReader;
481 friend class SnapshotWriter; 482 friend class SnapshotWriter;
482 friend class ApiMessageReader; 483 friend class ApiMessageReader;
483 484
484 DISALLOW_COPY_AND_ASSIGN(Symbols); 485 DISALLOW_COPY_AND_ASSIGN(Symbols);
485 }; 486 };
486 487
487 } // namespace dart 488 } // namespace dart
488 489
489 #endif // VM_SYMBOLS_H_ 490 #endif // VM_SYMBOLS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698