| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 V(_Double, <, Double_lessThan, 1598098437) \ | 51 V(_Double, <, Double_lessThan, 1598098437) \ |
| 52 V(_Double, <=, Double_lessEqualThan, 1300604767) \ | 52 V(_Double, <=, Double_lessEqualThan, 1300604767) \ |
| 53 V(_Double, ==, Double_equal, 1206706717) \ | 53 V(_Double, ==, Double_equal, 1206706717) \ |
| 54 V(_Double, +, Double_add, 1965033293) \ | 54 V(_Double, +, Double_add, 1965033293) \ |
| 55 V(_Double, -, Double_sub, 1212327731) \ | 55 V(_Double, -, Double_sub, 1212327731) \ |
| 56 V(_Double, *, Double_mul, 395243827) \ | 56 V(_Double, *, Double_mul, 395243827) \ |
| 57 V(_Double, /, Double_div, 809804402) \ | 57 V(_Double, /, Double_div, 809804402) \ |
| 58 V(_Double, get:isNaN, Double_getIsNaN, 54462366) \ | 58 V(_Double, get:isNaN, Double_getIsNaN, 54462366) \ |
| 59 V(_Double, get:isNegative, Double_getIsNegative, 54462366) \ | 59 V(_Double, get:isNegative, Double_getIsNegative, 54462366) \ |
| 60 V(_Double, _mulFromInteger, Double_mulFromInteger, 815838159) \ | 60 V(_Double, _mulFromInteger, Double_mulFromInteger, 815838159) \ |
| 61 V(_Double, _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., 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, _GrowableObjectArray.withData, \ | 67 V(_GrowableObjectArray, .withData, GArray_Allocate, 989879928) \ |
| 68 GArray_Allocate, 989879928) \ | |
| 69 V(_GrowableObjectArray, get:length, GrowableArray_getLength, 725548050) \ | 68 V(_GrowableObjectArray, get:length, GrowableArray_getLength, 725548050) \ |
| 70 V(_GrowableObjectArray, get:_capacity, GrowableArray_getCapacity, 725548050) \ | 69 V(_GrowableObjectArray, get:_capacity, GrowableArray_getCapacity, 725548050) \ |
| 71 V(_GrowableObjectArray, [], GrowableArray_getIndexed, 581838973) \ | 70 V(_GrowableObjectArray, [], GrowableArray_getIndexed, 581838973) \ |
| 72 V(_GrowableObjectArray, []=, GrowableArray_setIndexed, 1048007636) \ | 71 V(_GrowableObjectArray, []=, GrowableArray_setIndexed, 1048007636) \ |
| 73 V(_GrowableObjectArray, _setLength, GrowableArray_setLength, 796709584) \ | 72 V(_GrowableObjectArray, _setLength, GrowableArray_setLength, 796709584) \ |
| 74 V(_GrowableObjectArray, _setData, GrowableArray_setData, 477312179) \ | 73 V(_GrowableObjectArray, _setData, GrowableArray_setData, 477312179) \ |
| 75 V(_GrowableObjectArray, add, GrowableArray_add, 1367698386) \ | 74 V(_GrowableObjectArray, add, GrowableArray_add, 1367698386) \ |
| 76 V(_ImmutableArray, [], ImmutableArray_getIndexed, 486821199) \ | 75 V(_ImmutableArray, [], ImmutableArray_getIndexed, 486821199) \ |
| 77 V(_ImmutableArray, get:length, ImmutableArray_getLength, 433698233) \ | 76 V(_ImmutableArray, get:length, ImmutableArray_getLength, 433698233) \ |
| 78 V(Object, ==, Object_equal, 2126956595) \ | 77 V(Object, ==, Object_equal, 2126956595) \ |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 CORE_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) | 147 CORE_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) |
| 149 MATH_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) | 148 MATH_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) |
| 150 SCALARLIST_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) | 149 SCALARLIST_LIB_INTRINSIC_LIST(DECLARE_FUNCTION) |
| 151 | 150 |
| 152 #undef DECLARE_FUNCTION | 151 #undef DECLARE_FUNCTION |
| 153 }; | 152 }; |
| 154 | 153 |
| 155 } // namespace dart | 154 } // namespace dart |
| 156 | 155 |
| 157 #endif // VM_INTRINSIFIER_H_ | 156 #endif // VM_INTRINSIFIER_H_ |
| OLD | NEW |