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

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

Issue 678763004: Make CTX allocatable by the register allocator. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: incorporated latest comments Created 6 years, 1 month 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 V(ListFactory, "List.") \ 51 V(ListFactory, "List.") \
52 V(Map, "Map") \ 52 V(Map, "Map") \
53 V(MapLiteralFactory, "Map._fromLiteral") \ 53 V(MapLiteralFactory, "Map._fromLiteral") \
54 V(ImmutableMap, "ImmutableMap") \ 54 V(ImmutableMap, "ImmutableMap") \
55 V(ImmutableMapConstructor, "ImmutableMap._create") \ 55 V(ImmutableMapConstructor, "ImmutableMap._create") \
56 V(StringBase, "_StringBase") \ 56 V(StringBase, "_StringBase") \
57 V(Interpolate, "_interpolate") \ 57 V(Interpolate, "_interpolate") \
58 V(InterpolateSingle, "_interpolateSingle") \ 58 V(InterpolateSingle, "_interpolateSingle") \
59 V(GetIterator, "iterator") \ 59 V(GetIterator, "iterator") \
60 V(NoSuchMethod, "noSuchMethod") \ 60 V(NoSuchMethod, "noSuchMethod") \
61 V(SavedCurrentContextVar, ":saved_current_context_var") \ 61 V(CurrentContextVar, ":current_context_var") \
62 V(SavedEntryContextVar, ":saved_entry_context_var") \ 62 V(SavedEntryContextVar, ":saved_entry_context_var") \
63 V(SavedTryContextVar, ":saved_try_context_var") \ 63 V(SavedTryContextVar, ":saved_try_context_var") \
64 V(ExceptionParameter, ":exception") \ 64 V(ExceptionParameter, ":exception") \
65 V(StackTraceParameter, ":stack_trace") \ 65 V(StackTraceParameter, ":stack_trace") \
66 V(ExceptionVar, ":exception_var") \ 66 V(ExceptionVar, ":exception_var") \
67 V(StackTraceVar, ":stack_trace_var") \ 67 V(StackTraceVar, ":stack_trace_var") \
68 V(ListLiteralElement, "list literal element") \ 68 V(ListLiteralElement, "list literal element") \
69 V(ForInIter, ":for-in-iter") \ 69 V(ForInIter, ":for-in-iter") \
70 V(Library, "library") \ 70 V(Library, "library") \
71 V(LoadLibrary, "loadLibrary") \ 71 V(LoadLibrary, "loadLibrary") \
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 friend class SnapshotReader; 517 friend class SnapshotReader;
518 friend class SnapshotWriter; 518 friend class SnapshotWriter;
519 friend class ApiMessageReader; 519 friend class ApiMessageReader;
520 520
521 DISALLOW_COPY_AND_ASSIGN(Symbols); 521 DISALLOW_COPY_AND_ASSIGN(Symbols);
522 }; 522 };
523 523
524 } // namespace dart 524 } // namespace dart
525 525
526 #endif // VM_SYMBOLS_H_ 526 #endif // VM_SYMBOLS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698