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

Unified Diff: runtime/vm/intrinsifier.h

Issue 10990055: Hide VM-only coreimpl List implementation types. These should not be (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x64 as well, sigh. Created 8 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
Index: runtime/vm/intrinsifier.h
diff --git a/runtime/vm/intrinsifier.h b/runtime/vm/intrinsifier.h
index 84be7bdbe5fe19abb6983daef68f225312e3a5fb..e4567a3e1eb779c16feb3fd7897fbcc501170dbc 100644
--- a/runtime/vm/intrinsifier.h
+++ b/runtime/vm/intrinsifier.h
@@ -52,26 +52,28 @@ namespace dart {
V(_Double, isNaN, Double_isNaN) \
V(_Double, isNegative, Double_isNegative) \
V(_Double, toInt, Double_toInt) \
- V(ObjectArray, ObjectArray., ObjectArray_Allocate) \
- V(ObjectArray, get:length, Array_getLength) \
- V(ObjectArray, [], Array_getIndexed) \
- V(ObjectArray, []=, Array_setIndexed) \
- V(GrowableObjectArray, GrowableObjectArray.fromObjectArray, GArray_Allocate) \
- V(GrowableObjectArray, get:length, GrowableArray_getLength) \
- V(GrowableObjectArray, get:capacity, GrowableArray_getCapacity) \
- V(GrowableObjectArray, [], GrowableArray_getIndexed) \
- V(GrowableObjectArray, []=, GrowableArray_setIndexed) \
- V(GrowableObjectArray, _setLength, GrowableArray_setLength) \
- V(GrowableObjectArray, _setData, GrowableArray_setData) \
- V(GrowableObjectArray, add, GrowableArray_add) \
- V(ImmutableArray, [], ImmutableArray_getIndexed) \
- V(ImmutableArray, get:length, ImmutableArray_getLength) \
+ V(_ObjectArray, _ObjectArray., ObjectArray_Allocate) \
+ V(_ObjectArray, get:length, Array_getLength) \
+ V(_ObjectArray, [], Array_getIndexed) \
+ V(_ObjectArray, []=, Array_setIndexed) \
+ V(_GrowableObjectArray, \
+ _GrowableObjectArray.fromObjectArray, \
+ GArray_Allocate) \
+ V(_GrowableObjectArray, get:length, GrowableArray_getLength) \
+ V(_GrowableObjectArray, get:capacity, GrowableArray_getCapacity) \
+ V(_GrowableObjectArray, [], GrowableArray_getIndexed) \
+ V(_GrowableObjectArray, []=, GrowableArray_setIndexed) \
+ V(_GrowableObjectArray, _setLength, GrowableArray_setLength) \
+ V(_GrowableObjectArray, _setData, GrowableArray_setData) \
+ V(_GrowableObjectArray, add, GrowableArray_add) \
+ V(_ImmutableArray, [], ImmutableArray_getIndexed) \
+ V(_ImmutableArray, get:length, ImmutableArray_getLength) \
V(::, sqrt, Math_sqrt) \
V(::, sin, Math_sin) \
V(::, cos, Math_cos) \
V(Object, ==, Object_equal) \
- V(FixedSizeArrayIterator, next, FixedSizeArrayIterator_next) \
- V(FixedSizeArrayIterator, hasNext, FixedSizeArrayIterator_hasNext) \
+ V(_FixedSizeArrayIterator, next, FixedSizeArrayIterator_next) \
+ V(_FixedSizeArrayIterator, hasNext, FixedSizeArrayIterator_hasNext) \
V(StringBase, get:length, String_getLength) \
V(StringBase, charCodeAt, String_charCodeAt) \
V(StringBase, hashCode, String_hashCode) \

Powered by Google App Engine
This is Rietveld 408576698