OLD | NEW |
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
2 // All Rights Reserved. | 2 // All Rights Reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
6 // met: | 6 // met: |
7 // | 7 // |
8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
10 // | 10 // |
(...skipping 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1035 static ExternalReference address_of_min_int(); | 1035 static ExternalReference address_of_min_int(); |
1036 static ExternalReference address_of_one_half(); | 1036 static ExternalReference address_of_one_half(); |
1037 static ExternalReference address_of_minus_one_half(); | 1037 static ExternalReference address_of_minus_one_half(); |
1038 static ExternalReference address_of_negative_infinity(); | 1038 static ExternalReference address_of_negative_infinity(); |
1039 static ExternalReference address_of_the_hole_nan(); | 1039 static ExternalReference address_of_the_hole_nan(); |
1040 static ExternalReference address_of_uint32_bias(); | 1040 static ExternalReference address_of_uint32_bias(); |
1041 | 1041 |
1042 // IEEE 754 functions. | 1042 // IEEE 754 functions. |
1043 static ExternalReference ieee754_atan_function(Isolate* isolate); | 1043 static ExternalReference ieee754_atan_function(Isolate* isolate); |
1044 static ExternalReference ieee754_atan2_function(Isolate* isolate); | 1044 static ExternalReference ieee754_atan2_function(Isolate* isolate); |
| 1045 static ExternalReference ieee754_atanh_function(Isolate* isolate); |
| 1046 static ExternalReference ieee754_cbrt_function(Isolate* isolate); |
| 1047 static ExternalReference ieee754_cos_function(Isolate* isolate); |
1045 static ExternalReference ieee754_exp_function(Isolate* isolate); | 1048 static ExternalReference ieee754_exp_function(Isolate* isolate); |
| 1049 static ExternalReference ieee754_expm1_function(Isolate* isolate); |
1046 static ExternalReference ieee754_log_function(Isolate* isolate); | 1050 static ExternalReference ieee754_log_function(Isolate* isolate); |
1047 static ExternalReference ieee754_log1p_function(Isolate* isolate); | 1051 static ExternalReference ieee754_log1p_function(Isolate* isolate); |
| 1052 static ExternalReference ieee754_log10_function(Isolate* isolate); |
1048 static ExternalReference ieee754_log2_function(Isolate* isolate); | 1053 static ExternalReference ieee754_log2_function(Isolate* isolate); |
1049 static ExternalReference ieee754_log10_function(Isolate* isolate); | 1054 static ExternalReference ieee754_sin_function(Isolate* isolate); |
1050 static ExternalReference ieee754_atanh_function(Isolate* isolate); | |
1051 static ExternalReference ieee754_cbrt_function(Isolate* isolate); | |
1052 static ExternalReference ieee754_expm1_function(Isolate* isolate); | |
1053 | |
1054 static ExternalReference math_exp_constants(int constant_index); | |
1055 static ExternalReference math_exp_log_table(); | |
1056 | 1055 |
1057 static ExternalReference page_flags(Page* page); | 1056 static ExternalReference page_flags(Page* page); |
1058 | 1057 |
1059 static ExternalReference ForDeoptEntry(Address entry); | 1058 static ExternalReference ForDeoptEntry(Address entry); |
1060 | 1059 |
1061 static ExternalReference cpu_features(); | 1060 static ExternalReference cpu_features(); |
1062 | 1061 |
1063 static ExternalReference is_tail_call_elimination_enabled_address( | 1062 static ExternalReference is_tail_call_elimination_enabled_address( |
1064 Isolate* isolate); | 1063 Isolate* isolate); |
1065 | 1064 |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1352 std::vector<ConstantPoolEntry> shared_entries; | 1351 std::vector<ConstantPoolEntry> shared_entries; |
1353 }; | 1352 }; |
1354 | 1353 |
1355 Label emitted_label_; // Records pc_offset of emitted pool | 1354 Label emitted_label_; // Records pc_offset of emitted pool |
1356 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1355 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
1357 }; | 1356 }; |
1358 | 1357 |
1359 } // namespace internal | 1358 } // namespace internal |
1360 } // namespace v8 | 1359 } // namespace v8 |
1361 #endif // V8_ASSEMBLER_H_ | 1360 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |