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

Unified Diff: runtime/vm/object.cc

Issue 24285002: Add private TypedList getters and setters to the invisible list (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 47e7a00f6ce9977e0267c7fe2d005a36c5afd324..56cbf8f9d1f23b734846337011d17efb771496e7 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -163,6 +163,29 @@ const double MegamorphicCache::kLoadFactor = 0.75;
V(CoreLibrary, int, _parse) \
V(CoreLibrary, StackTrace, _setupFullStackTrace) \
V(CoreLibrary, _OneByteString, _setAt) \
+ V(TypedDataLibrary, _TypedList, _getInt8) \
+ V(TypedDataLibrary, _TypedList, _setInt8) \
+ V(TypedDataLibrary, _TypedList, _getUint8) \
+ V(TypedDataLibrary, _TypedList, _setUint8) \
+ V(TypedDataLibrary, _TypedList, _getInt16) \
+ V(TypedDataLibrary, _TypedList, _setInt16) \
+ V(TypedDataLibrary, _TypedList, _getUint16) \
+ V(TypedDataLibrary, _TypedList, _setUint16) \
+ V(TypedDataLibrary, _TypedList, _getInt32) \
+ V(TypedDataLibrary, _TypedList, _setInt32) \
+ V(TypedDataLibrary, _TypedList, _getUint32) \
+ V(TypedDataLibrary, _TypedList, _setUint32) \
+ V(TypedDataLibrary, _TypedList, _getInt64) \
+ V(TypedDataLibrary, _TypedList, _setInt64) \
+ V(TypedDataLibrary, _TypedList, _getUint64) \
+ V(TypedDataLibrary, _TypedList, _setUint64) \
+ V(TypedDataLibrary, _TypedList, _getFloat32) \
+ V(TypedDataLibrary, _TypedList, _setFloat32) \
+ V(TypedDataLibrary, _TypedList, _getFloat64) \
+ V(TypedDataLibrary, _TypedList, _setFloat64) \
+ V(TypedDataLibrary, _TypedList, _getFloat32x4) \
+ V(TypedDataLibrary, _TypedList, _setFloat32x4) \
+
static void MarkFunctionAsInvisible(const Library& lib,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698