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

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

Issue 10877030: Fix inlining and intrinsification for moved Math methods. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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
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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 V(ObjectArray, []=, Array_setIndexed) \ 57 V(ObjectArray, []=, Array_setIndexed) \
58 V(GrowableObjectArray, GrowableObjectArray.fromObjectArray, GArray_Allocate) \ 58 V(GrowableObjectArray, GrowableObjectArray.fromObjectArray, GArray_Allocate) \
59 V(GrowableObjectArray, get:length, GrowableArray_getLength) \ 59 V(GrowableObjectArray, get:length, GrowableArray_getLength) \
60 V(GrowableObjectArray, get:capacity, GrowableArray_getCapacity) \ 60 V(GrowableObjectArray, get:capacity, GrowableArray_getCapacity) \
61 V(GrowableObjectArray, [], GrowableArray_getIndexed) \ 61 V(GrowableObjectArray, [], GrowableArray_getIndexed) \
62 V(GrowableObjectArray, []=, GrowableArray_setIndexed) \ 62 V(GrowableObjectArray, []=, GrowableArray_setIndexed) \
63 V(GrowableObjectArray, _setLength, GrowableArray_setLength) \ 63 V(GrowableObjectArray, _setLength, GrowableArray_setLength) \
64 V(GrowableObjectArray, set:data, GrowableArray_setData) \ 64 V(GrowableObjectArray, set:data, GrowableArray_setData) \
65 V(ImmutableArray, [], ImmutableArray_getIndexed) \ 65 V(ImmutableArray, [], ImmutableArray_getIndexed) \
66 V(ImmutableArray, get:length, ImmutableArray_getLength) \ 66 V(ImmutableArray, get:length, ImmutableArray_getLength) \
67 V(Math, sqrt, Math_sqrt) \ 67 V(::, sqrt, Math_sqrt) \
68 V(Math, sin, Math_sin) \ 68 V(::, sin, Math_sin) \
69 V(Math, cos, Math_cos) \ 69 V(::, cos, Math_cos) \
70 V(Object, ==, Object_equal) \ 70 V(Object, ==, Object_equal) \
71 V(FixedSizeArrayIterator, next, FixedSizeArrayIterator_next) \ 71 V(FixedSizeArrayIterator, next, FixedSizeArrayIterator_next) \
72 V(FixedSizeArrayIterator, hasNext, FixedSizeArrayIterator_hasNext) \ 72 V(FixedSizeArrayIterator, hasNext, FixedSizeArrayIterator_hasNext) \
73 V(StringBase, get:length, String_getLength) \ 73 V(StringBase, get:length, String_getLength) \
74 V(StringBase, charCodeAt, String_charCodeAt) \ 74 V(StringBase, charCodeAt, String_charCodeAt) \
75 V(StringBase, hashCode, String_hashCode) \ 75 V(StringBase, hashCode, String_hashCode) \
76 V(StringBase, isEmpty, String_isEmpty) \ 76 V(StringBase, isEmpty, String_isEmpty) \
77 V(_ByteArrayBase, get:length, ByteArrayBase_getLength) \ 77 V(_ByteArrayBase, get:length, ByteArrayBase_getLength) \
78 V(_Int8Array, [], Int8Array_getIndexed) \ 78 V(_Int8Array, [], Int8Array_getIndexed) \
79 V(_Uint8Array, [], Uint8Array_getIndexed) \ 79 V(_Uint8Array, [], Uint8Array_getIndexed) \
(...skipping 17 matching lines...) Expand all
97 #define DECLARE_FUNCTION(test_class_name, test_function_name, destination) \ 97 #define DECLARE_FUNCTION(test_class_name, test_function_name, destination) \
98 static bool destination(Assembler* assembler); 98 static bool destination(Assembler* assembler);
99 99
100 INTRINSIC_LIST(DECLARE_FUNCTION) 100 INTRINSIC_LIST(DECLARE_FUNCTION)
101 #undef DECLARE_FUNCTION 101 #undef DECLARE_FUNCTION
102 }; 102 };
103 103
104 } // namespace dart 104 } // namespace dart
105 105
106 #endif // VM_INTRINSIFIER_H_ 106 #endif // VM_INTRINSIFIER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698