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

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

Issue 14386011: Fix recognition of factories (for setting result cid) and add them to checks. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 7 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/object.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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 V(Int64ListFactory, "Int64List.") \ 146 V(Int64ListFactory, "Int64List.") \
147 V(Uint64List, "Uint64List") \ 147 V(Uint64List, "Uint64List") \
148 V(Uint64ListFactory, "Uint64List.") \ 148 V(Uint64ListFactory, "Uint64List.") \
149 V(Float32x4List, "Float32x4List") \ 149 V(Float32x4List, "Float32x4List") \
150 V(Float32x4ListFactory, "Float32x4List.") \ 150 V(Float32x4ListFactory, "Float32x4List.") \
151 V(Float32List, "Float32List") \ 151 V(Float32List, "Float32List") \
152 V(Float32ListFactory, "Float32List.") \ 152 V(Float32ListFactory, "Float32List.") \
153 V(Float64List, "Float64List") \ 153 V(Float64List, "Float64List") \
154 V(Float64ListFactory, "Float64List.") \ 154 V(Float64ListFactory, "Float64List.") \
155 V(_Int8Array, "_Int8Array") \ 155 V(_Int8Array, "_Int8Array") \
156 V(_Int8ArrayFactory, "_Int8Array.") \
156 V(_Uint8Array, "_Uint8Array") \ 157 V(_Uint8Array, "_Uint8Array") \
158 V(_Uint8ArrayFactory, "_Uint8Array.") \
157 V(_Uint8ClampedArray, "_Uint8ClampedArray") \ 159 V(_Uint8ClampedArray, "_Uint8ClampedArray") \
160 V(_Uint8ClampedArrayFactory, "_Uint8ClampedArray.") \
158 V(_Int16Array, "_Int16Array") \ 161 V(_Int16Array, "_Int16Array") \
162 V(_Int16ArrayFactory, "_Int16Array.") \
159 V(_Uint16Array, "_Uint16Array") \ 163 V(_Uint16Array, "_Uint16Array") \
164 V(_Uint16ArrayFactory, "_Uint16Array.") \
160 V(_Int32Array, "_Int32Array") \ 165 V(_Int32Array, "_Int32Array") \
166 V(_Int32ArrayFactory, "_Int32Array.") \
161 V(_Uint32Array, "_Uint32Array") \ 167 V(_Uint32Array, "_Uint32Array") \
168 V(_Uint32ArrayFactory, "_Uint32Array.") \
162 V(_Int64Array, "_Int64Array") \ 169 V(_Int64Array, "_Int64Array") \
170 V(_Int64ArrayFactory, "_Int64Array.") \
163 V(_Uint64Array, "_Uint64Array") \ 171 V(_Uint64Array, "_Uint64Array") \
172 V(_Uint64ArrayFactory, "_Uint64Array.") \
164 V(_Float32x4Array, "_Float32x4Array") \ 173 V(_Float32x4Array, "_Float32x4Array") \
174 V(_Float32x4ArrayFactory, "_Float32x4Array.") \
165 V(_Float32Array, "_Float32Array") \ 175 V(_Float32Array, "_Float32Array") \
176 V(_Float32ArrayFactory, "_Float32Array.") \
166 V(_Float64Array, "_Float64Array") \ 177 V(_Float64Array, "_Float64Array") \
178 V(_Float64ArrayFactory, "_Float64Array.") \
167 V(_Int8ArrayView, "_Int8ArrayView") \ 179 V(_Int8ArrayView, "_Int8ArrayView") \
168 V(_Uint8ArrayView, "_Uint8ArrayView") \ 180 V(_Uint8ArrayView, "_Uint8ArrayView") \
169 V(_Uint8ClampedArrayView, "_Uint8ClampedArrayView") \ 181 V(_Uint8ClampedArrayView, "_Uint8ClampedArrayView") \
170 V(_Int16ArrayView, "_Int16ArrayView") \ 182 V(_Int16ArrayView, "_Int16ArrayView") \
171 V(_Uint16ArrayView, "_Uint16ArrayView") \ 183 V(_Uint16ArrayView, "_Uint16ArrayView") \
172 V(_Int32ArrayView, "_Int32ArrayView") \ 184 V(_Int32ArrayView, "_Int32ArrayView") \
173 V(_Uint32ArrayView, "_Uint32ArrayView") \ 185 V(_Uint32ArrayView, "_Uint32ArrayView") \
174 V(_Int64ArrayView, "_Int64ArrayView") \ 186 V(_Int64ArrayView, "_Int64ArrayView") \
175 V(_Uint64ArrayView, "_Uint64ArrayView") \ 187 V(_Uint64ArrayView, "_Uint64ArrayView") \
176 V(_Float32ArrayView, "_Float32ArrayView") \ 188 V(_Float32ArrayView, "_Float32ArrayView") \
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 friend class SnapshotReader; 449 friend class SnapshotReader;
438 friend class SnapshotWriter; 450 friend class SnapshotWriter;
439 friend class ApiMessageReader; 451 friend class ApiMessageReader;
440 452
441 DISALLOW_COPY_AND_ASSIGN(Symbols); 453 DISALLOW_COPY_AND_ASSIGN(Symbols);
442 }; 454 };
443 455
444 } // namespace dart 456 } // namespace dart
445 457
446 #endif // VM_SYMBOLS_H_ 458 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698