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

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

Issue 12377082: Recognize more list factories. Recognizing list factories (Array, Bytearrays, etc) allows the type … (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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
« no previous file with comments | « runtime/vm/intrinsifier_x64.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/object.h" 8 #include "vm/object.h"
9 #include "vm/snapshot_ids.h" 9 #include "vm/snapshot_ids.h"
10 10
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 V(UnhandledException, "UnhandledException") \ 103 V(UnhandledException, "UnhandledException") \
104 V(UnwindError, "UnwindError") \ 104 V(UnwindError, "UnwindError") \
105 V(IntegerImplementation, "_IntegerImplementation") \ 105 V(IntegerImplementation, "_IntegerImplementation") \
106 V(Number, "num") \ 106 V(Number, "num") \
107 V(_Smi, "_Smi") \ 107 V(_Smi, "_Smi") \
108 V(_Mint, "_Mint") \ 108 V(_Mint, "_Mint") \
109 V(_Bigint, "_Bigint") \ 109 V(_Bigint, "_Bigint") \
110 V(_Double, "_Double") \ 110 V(_Double, "_Double") \
111 V(Bool, "bool") \ 111 V(Bool, "bool") \
112 V(ObjectArray, "_ObjectArray") \ 112 V(ObjectArray, "_ObjectArray") \
113 V(ObjectArrayDot, "_ObjectArray.") \ 113 V(ObjectArrayFactory, "_ObjectArray.") \
114 V(GrowableObjectArray, "_GrowableObjectArray") \ 114 V(GrowableObjectArray, "_GrowableObjectArray") \
115 V(GrowableObjectArrayDot, "_GrowableObjectArray.") \ 115 V(GrowableObjectArrayFactory, "_GrowableObjectArray.") \
116 V(GrowableObjectArrayWithData, "_GrowableObjectArray.withData") \ 116 V(GrowableObjectArrayWithData, "_GrowableObjectArray.withData") \
117 V(ImmutableArray, "_ImmutableArray") \ 117 V(ImmutableArray, "_ImmutableArray") \
118 V(OneByteString, "_OneByteString") \ 118 V(OneByteString, "_OneByteString") \
119 V(TwoByteString, "_TwoByteString") \ 119 V(TwoByteString, "_TwoByteString") \
120 V(ExternalOneByteString, "_ExternalOneByteString") \ 120 V(ExternalOneByteString, "_ExternalOneByteString") \
121 V(ExternalTwoByteString, "_ExternalTwoByteString") \ 121 V(ExternalTwoByteString, "_ExternalTwoByteString") \
122 V(StackTrace, "StackTrace") \ 122 V(StackTrace, "StackTrace") \
123 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ 123 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \
124 V(Object, "Object") \ 124 V(Object, "Object") \
125 V(Int, "int") \ 125 V(Int, "int") \
126 V(Double, "double") \ 126 V(Double, "double") \
127 V(_Float32x4, "_Float32x4") \ 127 V(_Float32x4, "_Float32x4") \
128 V(_Uint32x4, "_Uint32x4") \ 128 V(_Uint32x4, "_Uint32x4") \
129 V(Float32x4, "Float32x4") \ 129 V(Float32x4, "Float32x4") \
130 V(Uint32x4, "Uint32x4") \ 130 V(Uint32x4, "Uint32x4") \
131 V(Int8List, "Int8List") \ 131 V(Int8List, "Int8List") \
132 V(Int8ListFactory, "Int8List.") \
132 V(Uint8List, "Uint8List") \ 133 V(Uint8List, "Uint8List") \
134 V(Uint8ListFactory, "Uint8List.") \
133 V(Uint8ClampedList, "Uint8ClampedList") \ 135 V(Uint8ClampedList, "Uint8ClampedList") \
136 V(Uint8ClampedListFactory, "Uint8ClampedList.") \
134 V(Int16List, "Int16List") \ 137 V(Int16List, "Int16List") \
138 V(Int16ListFactory, "Int16List.") \
135 V(Uint16List, "Uint16List") \ 139 V(Uint16List, "Uint16List") \
140 V(Uint16ListFactory, "Uint16List.") \
136 V(Int32List, "Int32List") \ 141 V(Int32List, "Int32List") \
142 V(Int32ListFactory, "Int32List.") \
137 V(Uint32List, "Uint32List") \ 143 V(Uint32List, "Uint32List") \
144 V(Uint32ListFactory, "Uint32List.") \
138 V(Int64List, "Int64List") \ 145 V(Int64List, "Int64List") \
146 V(Int64ListFactory, "Int64List.") \
139 V(Uint64List, "Uint64List") \ 147 V(Uint64List, "Uint64List") \
148 V(Uint64ListFactory, "Uint64List.") \
140 V(Float32x4List, "Float32x4List") \ 149 V(Float32x4List, "Float32x4List") \
141 V(Float32List, "Float32List") \ 150 V(Float32List, "Float32List") \
151 V(Float32ListFactory, "Float32List.") \
142 V(Float64List, "Float64List") \ 152 V(Float64List, "Float64List") \
153 V(Float64ListFactory, "Float64List.") \
143 V(_Int8Array, "_Int8Array") \ 154 V(_Int8Array, "_Int8Array") \
144 V(_Uint8Array, "_Uint8Array") \ 155 V(_Uint8Array, "_Uint8Array") \
145 V(_Uint8ClampedArray, "_Uint8ClampedArray") \ 156 V(_Uint8ClampedArray, "_Uint8ClampedArray") \
146 V(_Int16Array, "_Int16Array") \ 157 V(_Int16Array, "_Int16Array") \
147 V(_Uint16Array, "_Uint16Array") \ 158 V(_Uint16Array, "_Uint16Array") \
148 V(_Int32Array, "_Int32Array") \ 159 V(_Int32Array, "_Int32Array") \
149 V(_Uint32Array, "_Uint32Array") \ 160 V(_Uint32Array, "_Uint32Array") \
150 V(_Int64Array, "_Int64Array") \ 161 V(_Int64Array, "_Int64Array") \
151 V(_Uint64Array, "_Uint64Array") \ 162 V(_Uint64Array, "_Uint64Array") \
152 V(_Float32x4Array, "_Float32x4Array") \ 163 V(_Float32x4Array, "_Float32x4Array") \
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 friend class SnapshotReader; 417 friend class SnapshotReader;
407 friend class SnapshotWriter; 418 friend class SnapshotWriter;
408 friend class ApiMessageReader; 419 friend class ApiMessageReader;
409 420
410 DISALLOW_COPY_AND_ASSIGN(Symbols); 421 DISALLOW_COPY_AND_ASSIGN(Symbols);
411 }; 422 };
412 423
413 } // namespace dart 424 } // namespace dart
414 425
415 #endif // VM_SYMBOLS_H_ 426 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/intrinsifier_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698