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

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

Issue 56023004: Replace Uint32x4/Uint32x4List with Int32x4/Int32x4List (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « runtime/vm/snapshot.cc ('k') | sdk/lib/typed_data/dart2js/typed_data_dart2js.dart » ('j') | 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 V(OneByteString, "_OneByteString") \ 127 V(OneByteString, "_OneByteString") \
128 V(TwoByteString, "_TwoByteString") \ 128 V(TwoByteString, "_TwoByteString") \
129 V(ExternalOneByteString, "_ExternalOneByteString") \ 129 V(ExternalOneByteString, "_ExternalOneByteString") \
130 V(ExternalTwoByteString, "_ExternalTwoByteString") \ 130 V(ExternalTwoByteString, "_ExternalTwoByteString") \
131 V(StackTrace, "StackTrace") \ 131 V(StackTrace, "StackTrace") \
132 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ 132 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \
133 V(Object, "Object") \ 133 V(Object, "Object") \
134 V(Int, "int") \ 134 V(Int, "int") \
135 V(Double, "double") \ 135 V(Double, "double") \
136 V(_Float32x4, "_Float32x4") \ 136 V(_Float32x4, "_Float32x4") \
137 V(_Uint32x4, "_Uint32x4") \ 137 V(_Int32x4, "_Int32x4") \
138 V(Float32x4, "Float32x4") \ 138 V(Float32x4, "Float32x4") \
139 V(Uint32x4, "Uint32x4") \ 139 V(Int32x4, "Int32x4") \
140 V(Int8List, "Int8List") \ 140 V(Int8List, "Int8List") \
141 V(Int8ListFactory, "Int8List.") \ 141 V(Int8ListFactory, "Int8List.") \
142 V(Uint8List, "Uint8List") \ 142 V(Uint8List, "Uint8List") \
143 V(Uint8ListFactory, "Uint8List.") \ 143 V(Uint8ListFactory, "Uint8List.") \
144 V(Uint8ClampedList, "Uint8ClampedList") \ 144 V(Uint8ClampedList, "Uint8ClampedList") \
145 V(Uint8ClampedListFactory, "Uint8ClampedList.") \ 145 V(Uint8ClampedListFactory, "Uint8ClampedList.") \
146 V(Int16List, "Int16List") \ 146 V(Int16List, "Int16List") \
147 V(Int16ListFactory, "Int16List.") \ 147 V(Int16ListFactory, "Int16List.") \
148 V(Uint16List, "Uint16List") \ 148 V(Uint16List, "Uint16List") \
149 V(Uint16ListFactory, "Uint16List.") \ 149 V(Uint16ListFactory, "Uint16List.") \
150 V(Int32List, "Int32List") \ 150 V(Int32List, "Int32List") \
151 V(Int32ListFactory, "Int32List.") \ 151 V(Int32ListFactory, "Int32List.") \
152 V(Uint32List, "Uint32List") \ 152 V(Uint32List, "Uint32List") \
153 V(Uint32ListFactory, "Uint32List.") \ 153 V(Uint32ListFactory, "Uint32List.") \
154 V(Int64List, "Int64List") \ 154 V(Int64List, "Int64List") \
155 V(Int64ListFactory, "Int64List.") \ 155 V(Int64ListFactory, "Int64List.") \
156 V(Uint64List, "Uint64List") \ 156 V(Uint64List, "Uint64List") \
157 V(Uint64ListFactory, "Uint64List.") \ 157 V(Uint64ListFactory, "Uint64List.") \
158 V(Float32x4List, "Float32x4List") \ 158 V(Float32x4List, "Float32x4List") \
159 V(Float32x4ListFactory, "Float32x4List.") \ 159 V(Float32x4ListFactory, "Float32x4List.") \
160 V(Uint32x4List, "Uint32x4List") \ 160 V(Int32x4List, "Int32x4List") \
161 V(Uint32x4ListFactory, "Uint32x4List.") \ 161 V(Int32x4ListFactory, "Int32x4List.") \
162 V(Float32List, "Float32List") \ 162 V(Float32List, "Float32List") \
163 V(Float32ListFactory, "Float32List.") \ 163 V(Float32ListFactory, "Float32List.") \
164 V(Float64List, "Float64List") \ 164 V(Float64List, "Float64List") \
165 V(Float64ListFactory, "Float64List.") \ 165 V(Float64ListFactory, "Float64List.") \
166 V(_Int8Array, "_Int8Array") \ 166 V(_Int8Array, "_Int8Array") \
167 V(_Int8ArrayFactory, "_Int8Array.") \ 167 V(_Int8ArrayFactory, "_Int8Array.") \
168 V(_Uint8Array, "_Uint8Array") \ 168 V(_Uint8Array, "_Uint8Array") \
169 V(_Uint8ArrayFactory, "_Uint8Array.") \ 169 V(_Uint8ArrayFactory, "_Uint8Array.") \
170 V(_Uint8ClampedArray, "_Uint8ClampedArray") \ 170 V(_Uint8ClampedArray, "_Uint8ClampedArray") \
171 V(_Uint8ClampedArrayFactory, "_Uint8ClampedArray.") \ 171 V(_Uint8ClampedArrayFactory, "_Uint8ClampedArray.") \
172 V(_Int16Array, "_Int16Array") \ 172 V(_Int16Array, "_Int16Array") \
173 V(_Int16ArrayFactory, "_Int16Array.") \ 173 V(_Int16ArrayFactory, "_Int16Array.") \
174 V(_Uint16Array, "_Uint16Array") \ 174 V(_Uint16Array, "_Uint16Array") \
175 V(_Uint16ArrayFactory, "_Uint16Array.") \ 175 V(_Uint16ArrayFactory, "_Uint16Array.") \
176 V(_Int32Array, "_Int32Array") \ 176 V(_Int32Array, "_Int32Array") \
177 V(_Int32ArrayFactory, "_Int32Array.") \ 177 V(_Int32ArrayFactory, "_Int32Array.") \
178 V(_Uint32Array, "_Uint32Array") \ 178 V(_Uint32Array, "_Uint32Array") \
179 V(_Uint32ArrayFactory, "_Uint32Array.") \ 179 V(_Uint32ArrayFactory, "_Uint32Array.") \
180 V(_Int64Array, "_Int64Array") \ 180 V(_Int64Array, "_Int64Array") \
181 V(_Int64ArrayFactory, "_Int64Array.") \ 181 V(_Int64ArrayFactory, "_Int64Array.") \
182 V(_Uint64Array, "_Uint64Array") \ 182 V(_Uint64Array, "_Uint64Array") \
183 V(_Uint64ArrayFactory, "_Uint64Array.") \ 183 V(_Uint64ArrayFactory, "_Uint64Array.") \
184 V(_Float32x4Array, "_Float32x4Array") \ 184 V(_Float32x4Array, "_Float32x4Array") \
185 V(_Float32x4ArrayFactory, "_Float32x4Array.") \ 185 V(_Float32x4ArrayFactory, "_Float32x4Array.") \
186 V(_Uint32x4Array, "_Uint32x4Array") \ 186 V(_Int32x4Array, "_Int32x4Array") \
187 V(_Uint32x4ArrayFactory, "_Uint32x4Array.") \ 187 V(_Int32x4ArrayFactory, "_Int32x4Array.") \
188 V(_Float32Array, "_Float32Array") \ 188 V(_Float32Array, "_Float32Array") \
189 V(_Float32ArrayFactory, "_Float32Array.") \ 189 V(_Float32ArrayFactory, "_Float32Array.") \
190 V(_Float64Array, "_Float64Array") \ 190 V(_Float64Array, "_Float64Array") \
191 V(_Float64ArrayFactory, "_Float64Array.") \ 191 V(_Float64ArrayFactory, "_Float64Array.") \
192 V(_Int8ArrayView, "_Int8ArrayView") \ 192 V(_Int8ArrayView, "_Int8ArrayView") \
193 V(_Uint8ArrayView, "_Uint8ArrayView") \ 193 V(_Uint8ArrayView, "_Uint8ArrayView") \
194 V(_Uint8ClampedArrayView, "_Uint8ClampedArrayView") \ 194 V(_Uint8ClampedArrayView, "_Uint8ClampedArrayView") \
195 V(_Int16ArrayView, "_Int16ArrayView") \ 195 V(_Int16ArrayView, "_Int16ArrayView") \
196 V(_Uint16ArrayView, "_Uint16ArrayView") \ 196 V(_Uint16ArrayView, "_Uint16ArrayView") \
197 V(_Int32ArrayView, "_Int32ArrayView") \ 197 V(_Int32ArrayView, "_Int32ArrayView") \
198 V(_Uint32ArrayView, "_Uint32ArrayView") \ 198 V(_Uint32ArrayView, "_Uint32ArrayView") \
199 V(_Int64ArrayView, "_Int64ArrayView") \ 199 V(_Int64ArrayView, "_Int64ArrayView") \
200 V(_Uint64ArrayView, "_Uint64ArrayView") \ 200 V(_Uint64ArrayView, "_Uint64ArrayView") \
201 V(_Float32ArrayView, "_Float32ArrayView") \ 201 V(_Float32ArrayView, "_Float32ArrayView") \
202 V(_Float64ArrayView, "_Float64ArrayView") \ 202 V(_Float64ArrayView, "_Float64ArrayView") \
203 V(_Float32x4ArrayView, "_Float32x4ArrayView") \ 203 V(_Float32x4ArrayView, "_Float32x4ArrayView") \
204 V(_Uint32x4ArrayView, "_Uint32x4ArrayView") \ 204 V(_Int32x4ArrayView, "_Int32x4ArrayView") \
205 V(_ExternalInt8Array, "_ExternalInt8Array") \ 205 V(_ExternalInt8Array, "_ExternalInt8Array") \
206 V(_ExternalUint8Array, "_ExternalUint8Array") \ 206 V(_ExternalUint8Array, "_ExternalUint8Array") \
207 V(_ExternalUint8ClampedArray, "_ExternalUint8ClampedArray") \ 207 V(_ExternalUint8ClampedArray, "_ExternalUint8ClampedArray") \
208 V(_ExternalInt16Array, "_ExternalInt16Array") \ 208 V(_ExternalInt16Array, "_ExternalInt16Array") \
209 V(_ExternalUint16Array, "_ExternalUint16Array") \ 209 V(_ExternalUint16Array, "_ExternalUint16Array") \
210 V(_ExternalInt32Array, "_ExternalInt32Array") \ 210 V(_ExternalInt32Array, "_ExternalInt32Array") \
211 V(_ExternalUint32Array, "_ExternalUint32Array") \ 211 V(_ExternalUint32Array, "_ExternalUint32Array") \
212 V(_ExternalInt64Array, "_ExternalInt64Array") \ 212 V(_ExternalInt64Array, "_ExternalInt64Array") \
213 V(_ExternalUint64Array, "_ExternalUint64Array") \ 213 V(_ExternalUint64Array, "_ExternalUint64Array") \
214 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ 214 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \
215 V(_ExternalUint32x4Array, "_ExternalUint32x4Array") \ 215 V(_ExternalInt32x4Array, "_ExternalInt32x4Array") \
216 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ 216 V(_ExternalFloat32Array, "_ExternalFloat32Array") \
217 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ 217 V(_ExternalFloat64Array, "_ExternalFloat64Array") \
218 V(ByteData, "ByteData") \ 218 V(ByteData, "ByteData") \
219 V(ByteDataDot, "ByteData.") \ 219 V(ByteDataDot, "ByteData.") \
220 V(ByteDataDotview, "ByteData.view") \ 220 V(ByteDataDotview, "ByteData.view") \
221 V(_ByteDataView, "_ByteDataView") \ 221 V(_ByteDataView, "_ByteDataView") \
222 V(_WeakProperty, "_WeakProperty") \ 222 V(_WeakProperty, "_WeakProperty") \
223 V(_MirrorReference, "_MirrorReference") \ 223 V(_MirrorReference, "_MirrorReference") \
224 V(InvocationMirror, "_InvocationMirror") \ 224 V(InvocationMirror, "_InvocationMirror") \
225 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ 225 V(AllocateInvocationMirror, "_allocateInvocationMirror") \
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 friend class SnapshotReader; 498 friend class SnapshotReader;
499 friend class SnapshotWriter; 499 friend class SnapshotWriter;
500 friend class ApiMessageReader; 500 friend class ApiMessageReader;
501 501
502 DISALLOW_COPY_AND_ASSIGN(Symbols); 502 DISALLOW_COPY_AND_ASSIGN(Symbols);
503 }; 503 };
504 504
505 } // namespace dart 505 } // namespace dart
506 506
507 #endif // VM_SYMBOLS_H_ 507 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/snapshot.cc ('k') | sdk/lib/typed_data/dart2js/typed_data_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698