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

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

Issue 1373213003: Avoid eagerly enqueueing converted forms of selectors or eagerly creating their converted symbols. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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/precompiler.cc ('K') | « runtime/vm/precompiler.cc ('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 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 V(TwoNewlines, "\n\n") \ 320 V(TwoNewlines, "\n\n") \
321 V(TwoSpaces, " ") \ 321 V(TwoSpaces, " ") \
322 V(_instanceOf, "_instanceOf") \ 322 V(_instanceOf, "_instanceOf") \
323 V(_instanceOfSmi, "_instanceOfSmi") \ 323 V(_instanceOfSmi, "_instanceOfSmi") \
324 V(_instanceOfNum, "_instanceOfNum") \ 324 V(_instanceOfNum, "_instanceOfNum") \
325 V(_instanceOfInt, "_instanceOfInt") \ 325 V(_instanceOfInt, "_instanceOfInt") \
326 V(_instanceOfDouble, "_instanceOfDouble") \ 326 V(_instanceOfDouble, "_instanceOfDouble") \
327 V(_instanceOfString, "_instanceOfString") \ 327 V(_instanceOfString, "_instanceOfString") \
328 V(_as, "_as") \ 328 V(_as, "_as") \
329 V(GetterPrefix, "get:") \ 329 V(GetterPrefix, "get:") \
330 V(ClosurizePrefix, "get:#") \
330 V(SetterPrefix, "set:") \ 331 V(SetterPrefix, "set:") \
331 V(InitPrefix, "init:") \ 332 V(InitPrefix, "init:") \
332 V(_New, "_new") \ 333 V(_New, "_new") \
333 V(Index, "index") \ 334 V(Index, "index") \
334 V(DartScheme, "dart:") \ 335 V(DartScheme, "dart:") \
335 V(DartSchemePrivate, "dart:_") \ 336 V(DartSchemePrivate, "dart:_") \
336 V(DartNativeWrappers, "dart:nativewrappers") \ 337 V(DartNativeWrappers, "dart:nativewrappers") \
337 V(DartNativeWrappersLibName, "dart.nativewrappers") \ 338 V(DartNativeWrappersLibName, "dart.nativewrappers") \
338 V(DartCore, "dart:core") \ 339 V(DartCore, "dart:core") \
339 V(DartCollection, "dart:collection") \ 340 V(DartCollection, "dart:collection") \
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 friend class SnapshotReader; 656 friend class SnapshotReader;
656 friend class SnapshotWriter; 657 friend class SnapshotWriter;
657 friend class ApiMessageReader; 658 friend class ApiMessageReader;
658 659
659 DISALLOW_COPY_AND_ASSIGN(Symbols); 660 DISALLOW_COPY_AND_ASSIGN(Symbols);
660 }; 661 };
661 662
662 } // namespace dart 663 } // namespace dart
663 664
664 #endif // VM_SYMBOLS_H_ 665 #endif // VM_SYMBOLS_H_
OLDNEW
« runtime/vm/precompiler.cc ('K') | « runtime/vm/precompiler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698