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

Unified Diff: runtime/vm/intrinsifier.h

Issue 10990083: Reapply change to hide VM-only List implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix dart:io perf regression. 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
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/intrinsifier.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intrinsifier.h
diff --git a/runtime/vm/intrinsifier.h b/runtime/vm/intrinsifier.h
index 84be7bdbe5fe19abb6983daef68f225312e3a5fb..1768e6f20c29f08fd57393377a059d06a7efdb49 100644
--- a/runtime/vm/intrinsifier.h
+++ b/runtime/vm/intrinsifier.h
@@ -48,30 +48,32 @@ namespace dart {
V(_Double, /, Double_div) \
V(_Double, toDouble, Double_toDouble) \
V(_Double, mulFromInteger, Double_mulFromInteger) \
- V(_Double, _Double.fromInteger, Double_fromInteger) \
+ V(_Double, .fromInteger, Double_fromInteger) \
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_Allocate) \
+ V(_ObjectArray, get:length, Array_getLength) \
+ V(_ObjectArray, [], Array_getIndexed) \
+ V(_ObjectArray, []=, Array_setIndexed) \
+ V(_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) \
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/intrinsifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698