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

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

Issue 2789943002: Reland "VM: Handle null-comparisons in the flow graph type propagation" (Closed)
Patch Set: addressed comments Created 3 years, 8 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
« no previous file with comments | « runtime/vm/object_store.cc ('k') | tests/language/vm/integer_type_propagation2_test.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 RUNTIME_VM_SYMBOLS_H_ 5 #ifndef RUNTIME_VM_SYMBOLS_H_
6 #define RUNTIME_VM_SYMBOLS_H_ 6 #define RUNTIME_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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 V(_CapabilityImpl, "_CapabilityImpl") \ 219 V(_CapabilityImpl, "_CapabilityImpl") \
220 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ 220 V(_RawReceivePortImpl, "_RawReceivePortImpl") \
221 V(_SendPortImpl, "_SendPortImpl") \ 221 V(_SendPortImpl, "_SendPortImpl") \
222 V(_StackTrace, "_StackTrace") \ 222 V(_StackTrace, "_StackTrace") \
223 V(_RegExp, "_RegExp") \ 223 V(_RegExp, "_RegExp") \
224 V(RegExp, "RegExp") \ 224 V(RegExp, "RegExp") \
225 V(ColonMatcher, ":matcher") \ 225 V(ColonMatcher, ":matcher") \
226 V(ColonStream, ":stream") \ 226 V(ColonStream, ":stream") \
227 V(Object, "Object") \ 227 V(Object, "Object") \
228 V(Int, "int") \ 228 V(Int, "int") \
229 V(Int64, "_int64") \
229 V(Double, "double") \ 230 V(Double, "double") \
230 V(Float32x4, "Float32x4") \ 231 V(Float32x4, "Float32x4") \
231 V(Float64x2, "Float64x2") \ 232 V(Float64x2, "Float64x2") \
232 V(Int32x4, "Int32x4") \ 233 V(Int32x4, "Int32x4") \
233 V(_Float32x4, "_Float32x4") \ 234 V(_Float32x4, "_Float32x4") \
234 V(_Float64x2, "_Float64x2") \ 235 V(_Float64x2, "_Float64x2") \
235 V(_Int32x4, "_Int32x4") \ 236 V(_Int32x4, "_Int32x4") \
236 V(Int8List, "Int8List") \ 237 V(Int8List, "Int8List") \
237 V(Uint8List, "Uint8List") \ 238 V(Uint8List, "Uint8List") \
238 V(Uint8ClampedList, "Uint8ClampedList") \ 239 V(Uint8ClampedList, "Uint8ClampedList") \
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
690 friend class Serializer; 691 friend class Serializer;
691 friend class Deserializer; 692 friend class Deserializer;
692 friend class ApiMessageReader; 693 friend class ApiMessageReader;
693 694
694 DISALLOW_COPY_AND_ASSIGN(Symbols); 695 DISALLOW_COPY_AND_ASSIGN(Symbols);
695 }; 696 };
696 697
697 } // namespace dart 698 } // namespace dart
698 699
699 #endif // RUNTIME_VM_SYMBOLS_H_ 700 #endif // RUNTIME_VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/object_store.cc ('k') | tests/language/vm/integer_type_propagation2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698