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

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

Issue 11606023: Make getter for capacity in _GrowableObjectArray private. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | no next file » | 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 // Class for intrinsifying functions. 4 // Class for intrinsifying functions.
5 5
6 #ifndef VM_INTRINSIFIER_H_ 6 #ifndef VM_INTRINSIFIER_H_
7 #define VM_INTRINSIFIER_H_ 7 #define VM_INTRINSIFIER_H_
8 8
9 #include "vm/allocation.h" 9 #include "vm/allocation.h"
10 10
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 V(_Double, get:isNegative, Double_getIsNegative, 54462366) \ 59 V(_Double, get:isNegative, Double_getIsNegative, 54462366) \
60 V(_Double, _mulFromInteger, Double_mulFromInteger, 1668662807) \ 60 V(_Double, _mulFromInteger, Double_mulFromInteger, 1668662807) \
61 V(_Double, .fromInteger, Double_fromInteger, 842078193) \ 61 V(_Double, .fromInteger, Double_fromInteger, 842078193) \
62 V(_Double, toInt, Double_toInt, 362666636) \ 62 V(_Double, toInt, Double_toInt, 362666636) \
63 V(_ObjectArray, ., ObjectArray_Allocate, 577949617) \ 63 V(_ObjectArray, ., ObjectArray_Allocate, 577949617) \
64 V(_ObjectArray, get:length, Array_getLength, 405297088) \ 64 V(_ObjectArray, get:length, Array_getLength, 405297088) \
65 V(_ObjectArray, [], Array_getIndexed, 71937385) \ 65 V(_ObjectArray, [], Array_getIndexed, 71937385) \
66 V(_ObjectArray, []=, Array_setIndexed, 255863719) \ 66 V(_ObjectArray, []=, Array_setIndexed, 255863719) \
67 V(_GrowableObjectArray, .fromObjectArray, GArray_Allocate, 989879928) \ 67 V(_GrowableObjectArray, .fromObjectArray, GArray_Allocate, 989879928) \
68 V(_GrowableObjectArray, get:length, GrowableArray_getLength, 725548050) \ 68 V(_GrowableObjectArray, get:length, GrowableArray_getLength, 725548050) \
69 V(_GrowableObjectArray, get:capacity, GrowableArray_getCapacity, 725548050) \ 69 V(_GrowableObjectArray, get:_capacity, GrowableArray_getCapacity, 725548050) \
70 V(_GrowableObjectArray, [], GrowableArray_getIndexed, 581838973) \ 70 V(_GrowableObjectArray, [], GrowableArray_getIndexed, 581838973) \
71 V(_GrowableObjectArray, []=, GrowableArray_setIndexed, 1048007636) \ 71 V(_GrowableObjectArray, []=, GrowableArray_setIndexed, 1048007636) \
72 V(_GrowableObjectArray, _setLength, GrowableArray_setLength, 796709584) \ 72 V(_GrowableObjectArray, _setLength, GrowableArray_setLength, 796709584) \
73 V(_GrowableObjectArray, _setData, GrowableArray_setData, 477312179) \ 73 V(_GrowableObjectArray, _setData, GrowableArray_setData, 477312179) \
74 V(_GrowableObjectArray, add, GrowableArray_add, 455936651) \ 74 V(_GrowableObjectArray, add, GrowableArray_add, 1596460660) \
75 V(_ImmutableArray, [], ImmutableArray_getIndexed, 486821199) \ 75 V(_ImmutableArray, [], ImmutableArray_getIndexed, 486821199) \
76 V(_ImmutableArray, get:length, ImmutableArray_getLength, 433698233) \ 76 V(_ImmutableArray, get:length, ImmutableArray_getLength, 433698233) \
77 V(::, sqrt, Math_sqrt, 2232519) \ 77 V(::, sqrt, Math_sqrt, 2232519) \
78 V(::, sin, Math_sin, 837187616) \ 78 V(::, sin, Math_sin, 837187616) \
79 V(::, cos, Math_cos, 548880317) \ 79 V(::, cos, Math_cos, 548880317) \
80 V(Object, ==, Object_equal, 1511145014) \ 80 V(Object, ==, Object_equal, 1511145014) \
81 V(_FixedSizeArrayIterator, get:hasNext, \ 81 V(_FixedSizeArrayIterator, get:hasNext, \
82 FixedSizeArrayIterator_getHasNext, 1819226215) \ 82 FixedSizeArrayIterator_getHasNext, 1819226215) \
83 V(_FixedSizeArrayIterator, next, FixedSizeArrayIterator_next, 1147008464) \ 83 V(_FixedSizeArrayIterator, next, FixedSizeArrayIterator_next, 1147008464) \
84 V(_StringBase, get:hashCode, String_getHashCode, 320803993) \ 84 V(_StringBase, get:hashCode, String_getHashCode, 320803993) \
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 #define DECLARE_FUNCTION(test_class_name, test_function_name, destination, fp) \ 118 #define DECLARE_FUNCTION(test_class_name, test_function_name, destination, fp) \
119 static bool destination(Assembler* assembler); 119 static bool destination(Assembler* assembler);
120 120
121 INTRINSIC_LIST(DECLARE_FUNCTION) 121 INTRINSIC_LIST(DECLARE_FUNCTION)
122 #undef DECLARE_FUNCTION 122 #undef DECLARE_FUNCTION
123 }; 123 };
124 124
125 } // namespace dart 125 } // namespace dart
126 126
127 #endif // VM_INTRINSIFIER_H_ 127 #endif // VM_INTRINSIFIER_H_
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698