| OLD | NEW |
| 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 27 matching lines...) Expand all Loading... |
| 38 V(_GrowableList, .withData, GrowableList_Allocate, 461305701) \ | 38 V(_GrowableList, .withData, GrowableList_Allocate, 461305701) \ |
| 39 V(_GrowableList, get:length, GrowableList_getLength, 1654225242) \ | 39 V(_GrowableList, get:length, GrowableList_getLength, 1654225242) \ |
| 40 V(_GrowableList, get:_capacity, GrowableList_getCapacity, 817090003) \ | 40 V(_GrowableList, get:_capacity, GrowableList_getCapacity, 817090003) \ |
| 41 V(_GrowableList, [], GrowableList_getIndexed, 1686777561) \ | 41 V(_GrowableList, [], GrowableList_getIndexed, 1686777561) \ |
| 42 V(_GrowableList, []=, GrowableList_setIndexed, 327404102) \ | 42 V(_GrowableList, []=, GrowableList_setIndexed, 327404102) \ |
| 43 V(_GrowableList, _setLength, GrowableList_setLength, 1227678442) \ | 43 V(_GrowableList, _setLength, GrowableList_setLength, 1227678442) \ |
| 44 V(_GrowableList, _setData, GrowableList_setData, 1375509957) \ | 44 V(_GrowableList, _setData, GrowableList_setData, 1375509957) \ |
| 45 V(_GrowableList, add, GrowableList_add, 996912766) \ | 45 V(_GrowableList, add, GrowableList_add, 996912766) \ |
| 46 V(_ImmutableList, [], ImmutableList_getIndexed, 25983597) \ | 46 V(_ImmutableList, [], ImmutableList_getIndexed, 25983597) \ |
| 47 V(_ImmutableList, get:length, ImmutableList_getLength, 578733070) \ | 47 V(_ImmutableList, get:length, ImmutableList_getLength, 578733070) \ |
| 48 V(Object, ==, Object_equal, 936042315) \ | 48 V(Object, ==, Object_equal, 180968008) \ |
| 49 V(_StringBase, get:hashCode, String_getHashCode, 654543028) \ | 49 V(_StringBase, get:hashCode, String_getHashCode, 654543028) \ |
| 50 V(_StringBase, get:isEmpty, String_getIsEmpty, 879849436) \ | 50 V(_StringBase, get:isEmpty, String_getIsEmpty, 879849436) \ |
| 51 V(_StringBase, get:length, String_getLength, 1483520063) \ | 51 V(_StringBase, get:length, String_getLength, 1483520063) \ |
| 52 V(_StringBase, codeUnitAt, String_codeUnitAt, 1958436584) \ | 52 V(_StringBase, codeUnitAt, String_codeUnitAt, 1958436584) \ |
| 53 V(_OneByteString, get:hashCode, OneByteString_getHashCode, 1236464016) \ | 53 V(_OneByteString, get:hashCode, OneByteString_getHashCode, 1236464016) \ |
| 54 V(_OneByteString, _substringUncheckedNative, \ | 54 V(_OneByteString, _substringUncheckedNative, \ |
| 55 OneByteString_substringUnchecked, 25652388) \ | 55 OneByteString_substringUnchecked, 25652388) \ |
| 56 V(_OneByteString, _setAt, OneByteString_setAt, 308408714) \ | 56 V(_OneByteString, _setAt, OneByteString_setAt, 308408714) \ |
| 57 V(_OneByteString, _allocate, OneByteString_allocate, 1744068081) \ | 57 V(_OneByteString, _allocate, OneByteString_allocate, 1744068081) \ |
| 58 V(_OneByteString, ==, OneByteString_equality, 1064139944) \ | 58 V(_OneByteString, ==, OneByteString_equality, 1064139944) \ |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 CORE_INTEGER_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) | 159 CORE_INTEGER_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) |
| 160 MATH_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) | 160 MATH_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) |
| 161 TYPED_DATA_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) | 161 TYPED_DATA_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) |
| 162 | 162 |
| 163 #undef DECLARE_FUNCTION | 163 #undef DECLARE_FUNCTION |
| 164 }; | 164 }; |
| 165 | 165 |
| 166 } // namespace dart | 166 } // namespace dart |
| 167 | 167 |
| 168 #endif // VM_INTRINSIFIER_H_ | 168 #endif // VM_INTRINSIFIER_H_ |
| OLD | NEW |