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

Unified Diff: vm/symbols.h

Issue 10827367: 1. Fix an issue with VM class names being null (this is exposed when doing a heap profile) (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « vm/object.cc ('k') | vm/symbols.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/symbols.h
===================================================================
--- vm/symbols.h (revision 10842)
+++ vm/symbols.h (working copy)
@@ -84,6 +84,44 @@
V(LanguageError, "LanguageError") \
V(UnhandledException, "UnhandledException") \
V(UnwindError, "UnwindError") \
+ V(IntegerImplementation, "IntegerImplementation") \
+ V(Smi, "Smi") \
+ V(Mint, "Mint") \
+ V(Bigint, "Bigint") \
+ V(Double, "Double") \
+ V(Bool, "Bool") \
+ V(ObjectArray, "ObjectArray") \
+ V(GrowableObjectArray, "GrowableObjectArray") \
+ V(ImmutableArray, "ImmutableArray") \
+ V(OneByteString, "OneByteString") \
+ V(TwoByteString, "TwoByteString") \
+ V(FourByteString, "FourByteString") \
+ V(ExternalOneByteString, "ExternalOneByteString") \
+ V(ExternalTwoByteString, "ExternalTwoByteString") \
+ V(ExternalFourByteString, "ExternalFourByteString") \
+ V(Stacktrace, "Stacktrace") \
+ V(JSSyntaxRegExp, "JSSyntaxRegExp") \
+ V(Object, "Object") \
+ V(_Int8Array, "_Int8Array") \
+ V(_Uint8Array, "_Uint8Array") \
+ V(_Int16Array, "_Int16Array") \
+ V(_Uint16Array, "_Uint16Array") \
+ V(_Int32Array, "_Int32Array") \
+ V(_Uint32Array, "_Uint32Array") \
+ V(_Int64Array, "_Int64Array") \
+ V(_Uint64Array, "_Uint64Array") \
+ V(_Float32Array, "_Float32Array") \
+ V(_Float64Array, "_Float64Array") \
+ V(_ExternalInt8Array, "_ExternalInt8Array") \
+ V(_ExternalUint8Array, "_ExternalUint8Array") \
+ V(_ExternalInt16Array, "_ExternalInt16Array") \
+ V(_ExternalUint16Array, "_ExternalUint16Array") \
+ V(_ExternalInt32Array, "_ExternalInt32Array") \
+ V(_ExternalUint32Array, "_ExternalUint32Array") \
+ V(_ExternalInt64Array, "_ExternalInt64Array") \
+ V(_ExternalUint64Array, "_ExternalUint64Array") \
+ V(_ExternalFloat32Array, "_ExternalFloat32Array") \
+ V(_ExternalFloat64Array, "_ExternalFloat64Array") \
// Contains a list of frequently used strings in a canonicalized form. This
// list is kept in the vm_isolate in order to share the copy across isolates
« no previous file with comments | « vm/object.cc ('k') | vm/symbols.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698