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 986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
997 static ExternalReference address_of_negative_infinity(); | 997 static ExternalReference address_of_negative_infinity(); |
998 static ExternalReference address_of_the_hole_nan(); | 998 static ExternalReference address_of_the_hole_nan(); |
999 static ExternalReference address_of_uint32_bias(); | 999 static ExternalReference address_of_uint32_bias(); |
1000 | 1000 |
1001 // IEEE 754 functions. | 1001 // IEEE 754 functions. |
1002 static ExternalReference ieee754_atan_function(Isolate* isolate); | 1002 static ExternalReference ieee754_atan_function(Isolate* isolate); |
1003 static ExternalReference ieee754_atan2_function(Isolate* isolate); | 1003 static ExternalReference ieee754_atan2_function(Isolate* isolate); |
1004 static ExternalReference ieee754_atanh_function(Isolate* isolate); | 1004 static ExternalReference ieee754_atanh_function(Isolate* isolate); |
1005 static ExternalReference ieee754_cbrt_function(Isolate* isolate); | 1005 static ExternalReference ieee754_cbrt_function(Isolate* isolate); |
1006 static ExternalReference ieee754_cos_function(Isolate* isolate); | 1006 static ExternalReference ieee754_cos_function(Isolate* isolate); |
| 1007 static ExternalReference ieee754_cosh_function(Isolate* isolate); |
1007 static ExternalReference ieee754_exp_function(Isolate* isolate); | 1008 static ExternalReference ieee754_exp_function(Isolate* isolate); |
1008 static ExternalReference ieee754_expm1_function(Isolate* isolate); | 1009 static ExternalReference ieee754_expm1_function(Isolate* isolate); |
1009 static ExternalReference ieee754_log_function(Isolate* isolate); | 1010 static ExternalReference ieee754_log_function(Isolate* isolate); |
1010 static ExternalReference ieee754_log1p_function(Isolate* isolate); | 1011 static ExternalReference ieee754_log1p_function(Isolate* isolate); |
1011 static ExternalReference ieee754_log10_function(Isolate* isolate); | 1012 static ExternalReference ieee754_log10_function(Isolate* isolate); |
1012 static ExternalReference ieee754_log2_function(Isolate* isolate); | 1013 static ExternalReference ieee754_log2_function(Isolate* isolate); |
1013 static ExternalReference ieee754_sin_function(Isolate* isolate); | 1014 static ExternalReference ieee754_sin_function(Isolate* isolate); |
| 1015 static ExternalReference ieee754_sinh_function(Isolate* isolate); |
1014 static ExternalReference ieee754_tan_function(Isolate* isolate); | 1016 static ExternalReference ieee754_tan_function(Isolate* isolate); |
| 1017 static ExternalReference ieee754_tanh_function(Isolate* isolate); |
1015 | 1018 |
1016 static ExternalReference page_flags(Page* page); | 1019 static ExternalReference page_flags(Page* page); |
1017 | 1020 |
1018 static ExternalReference ForDeoptEntry(Address entry); | 1021 static ExternalReference ForDeoptEntry(Address entry); |
1019 | 1022 |
1020 static ExternalReference cpu_features(); | 1023 static ExternalReference cpu_features(); |
1021 | 1024 |
1022 static ExternalReference is_tail_call_elimination_enabled_address( | 1025 static ExternalReference is_tail_call_elimination_enabled_address( |
1023 Isolate* isolate); | 1026 Isolate* isolate); |
1024 | 1027 |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1266 std::vector<ConstantPoolEntry> shared_entries; | 1269 std::vector<ConstantPoolEntry> shared_entries; |
1267 }; | 1270 }; |
1268 | 1271 |
1269 Label emitted_label_; // Records pc_offset of emitted pool | 1272 Label emitted_label_; // Records pc_offset of emitted pool |
1270 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1273 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
1271 }; | 1274 }; |
1272 | 1275 |
1273 } // namespace internal | 1276 } // namespace internal |
1274 } // namespace v8 | 1277 } // namespace v8 |
1275 #endif // V8_ASSEMBLER_H_ | 1278 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |