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

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

Issue 2805903004: Working implementation of #29153 range check in as-casts. (Closed)
Patch Set: Incorporate @rmacnak's feedback: ZoneHandle, position, symbol null. Created 3 years, 8 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
« runtime/vm/aot_optimizer.cc ('K') | « runtime/vm/method_recognizer.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 RUNTIME_VM_SYMBOLS_H_ 5 #ifndef RUNTIME_VM_SYMBOLS_H_
6 #define RUNTIME_VM_SYMBOLS_H_ 6 #define RUNTIME_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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 V(removeLast, "removeLast") \ 421 V(removeLast, "removeLast") \
422 V(add, "add") \ 422 V(add, "add") \
423 V(ConstructorClosurePrefix, "new#") \ 423 V(ConstructorClosurePrefix, "new#") \
424 V(_runExtension, "_runExtension") \ 424 V(_runExtension, "_runExtension") \
425 V(_runPendingImmediateCallback, "_runPendingImmediateCallback") \ 425 V(_runPendingImmediateCallback, "_runPendingImmediateCallback") \
426 V(DartLibrary, "dart.library.") \ 426 V(DartLibrary, "dart.library.") \
427 V(DartLibraryMirrors, "dart.library.mirrors") \ 427 V(DartLibraryMirrors, "dart.library.mirrors") \
428 V(_name, "_name") \ 428 V(_name, "_name") \
429 V(_classRangeCheck, "_classRangeCheck") \ 429 V(_classRangeCheck, "_classRangeCheck") \
430 V(_classRangeCheckNegative, "_classRangeCheckNegative") \ 430 V(_classRangeCheckNegative, "_classRangeCheckNegative") \
431 V(_classRangeAssert, "_classRangeAssert") \
432 V(_classIdEqualsAssert, "_classIdEqualsAssert") \
431 V(GetRuntimeType, "get:runtimeType") \ 433 V(GetRuntimeType, "get:runtimeType") \
432 V(HaveSameRuntimeType, "_haveSameRuntimeType") \ 434 V(HaveSameRuntimeType, "_haveSameRuntimeType") \
433 V(DartDeveloperCausalAsyncStacks, "dart.developer.causal_async_stacks") \ 435 V(DartDeveloperCausalAsyncStacks, "dart.developer.causal_async_stacks") \
434 V(_AsyncStarListenHelper, "_asyncStarListenHelper") 436 V(_AsyncStarListenHelper, "_asyncStarListenHelper")
435 437
436 438
437 // Contains a list of frequently used strings in a canonicalized form. This 439 // Contains a list of frequently used strings in a canonicalized form. This
438 // list is kept in the vm_isolate in order to share the copy across isolates 440 // list is kept in the vm_isolate in order to share the copy across isolates
439 // without having to maintain copies in each isolate. 441 // without having to maintain copies in each isolate.
440 class Symbols : public AllStatic { 442 class Symbols : public AllStatic {
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
690 friend class Serializer; 692 friend class Serializer;
691 friend class Deserializer; 693 friend class Deserializer;
692 friend class ApiMessageReader; 694 friend class ApiMessageReader;
693 695
694 DISALLOW_COPY_AND_ASSIGN(Symbols); 696 DISALLOW_COPY_AND_ASSIGN(Symbols);
695 }; 697 };
696 698
697 } // namespace dart 699 } // namespace dart
698 700
699 #endif // RUNTIME_VM_SYMBOLS_H_ 701 #endif // RUNTIME_VM_SYMBOLS_H_
OLDNEW
« runtime/vm/aot_optimizer.cc ('K') | « runtime/vm/method_recognizer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698