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

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

Issue 10982045: Make data setter private on GrowableObjectArray. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix intrinsifier. Created 8 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/lib/literal_factory.dart ('k') | runtime/vm/parser.cc » ('j') | 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 V(ObjectArray, ObjectArray., ObjectArray_Allocate) \ 55 V(ObjectArray, ObjectArray., ObjectArray_Allocate) \
56 V(ObjectArray, get:length, Array_getLength) \ 56 V(ObjectArray, get:length, Array_getLength) \
57 V(ObjectArray, [], Array_getIndexed) \ 57 V(ObjectArray, [], Array_getIndexed) \
58 V(ObjectArray, []=, Array_setIndexed) \ 58 V(ObjectArray, []=, Array_setIndexed) \
59 V(GrowableObjectArray, GrowableObjectArray.fromObjectArray, GArray_Allocate) \ 59 V(GrowableObjectArray, GrowableObjectArray.fromObjectArray, GArray_Allocate) \
60 V(GrowableObjectArray, get:length, GrowableArray_getLength) \ 60 V(GrowableObjectArray, get:length, GrowableArray_getLength) \
61 V(GrowableObjectArray, get:capacity, GrowableArray_getCapacity) \ 61 V(GrowableObjectArray, get:capacity, GrowableArray_getCapacity) \
62 V(GrowableObjectArray, [], GrowableArray_getIndexed) \ 62 V(GrowableObjectArray, [], GrowableArray_getIndexed) \
63 V(GrowableObjectArray, []=, GrowableArray_setIndexed) \ 63 V(GrowableObjectArray, []=, GrowableArray_setIndexed) \
64 V(GrowableObjectArray, _setLength, GrowableArray_setLength) \ 64 V(GrowableObjectArray, _setLength, GrowableArray_setLength) \
65 V(GrowableObjectArray, set:data, GrowableArray_setData) \ 65 V(GrowableObjectArray, _setData, GrowableArray_setData) \
66 V(GrowableObjectArray, add, GrowableArray_add) \ 66 V(GrowableObjectArray, add, GrowableArray_add) \
67 V(ImmutableArray, [], ImmutableArray_getIndexed) \ 67 V(ImmutableArray, [], ImmutableArray_getIndexed) \
68 V(ImmutableArray, get:length, ImmutableArray_getLength) \ 68 V(ImmutableArray, get:length, ImmutableArray_getLength) \
69 V(::, sqrt, Math_sqrt) \ 69 V(::, sqrt, Math_sqrt) \
70 V(::, sin, Math_sin) \ 70 V(::, sin, Math_sin) \
71 V(::, cos, Math_cos) \ 71 V(::, cos, Math_cos) \
72 V(Object, ==, Object_equal) \ 72 V(Object, ==, Object_equal) \
73 V(FixedSizeArrayIterator, next, FixedSizeArrayIterator_next) \ 73 V(FixedSizeArrayIterator, next, FixedSizeArrayIterator_next) \
74 V(FixedSizeArrayIterator, hasNext, FixedSizeArrayIterator_hasNext) \ 74 V(FixedSizeArrayIterator, hasNext, FixedSizeArrayIterator_hasNext) \
75 V(StringBase, get:length, String_getLength) \ 75 V(StringBase, get:length, String_getLength) \
(...skipping 24 matching lines...) Expand all
100 #define DECLARE_FUNCTION(test_class_name, test_function_name, destination) \ 100 #define DECLARE_FUNCTION(test_class_name, test_function_name, destination) \
101 static bool destination(Assembler* assembler); 101 static bool destination(Assembler* assembler);
102 102
103 INTRINSIC_LIST(DECLARE_FUNCTION) 103 INTRINSIC_LIST(DECLARE_FUNCTION)
104 #undef DECLARE_FUNCTION 104 #undef DECLARE_FUNCTION
105 }; 105 };
106 106
107 } // namespace dart 107 } // namespace dart
108 108
109 #endif // VM_INTRINSIFIER_H_ 109 #endif // VM_INTRINSIFIER_H_
OLDNEW
« no previous file with comments | « runtime/lib/literal_factory.dart ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698