| 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 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1030 // Static variables containing common double constants. | 1030 // Static variables containing common double constants. |
| 1031 static ExternalReference address_of_min_int(); | 1031 static ExternalReference address_of_min_int(); |
| 1032 static ExternalReference address_of_one_half(); | 1032 static ExternalReference address_of_one_half(); |
| 1033 static ExternalReference address_of_minus_one_half(); | 1033 static ExternalReference address_of_minus_one_half(); |
| 1034 static ExternalReference address_of_negative_infinity(); | 1034 static ExternalReference address_of_negative_infinity(); |
| 1035 static ExternalReference address_of_the_hole_nan(); | 1035 static ExternalReference address_of_the_hole_nan(); |
| 1036 static ExternalReference address_of_uint32_bias(); | 1036 static ExternalReference address_of_uint32_bias(); |
| 1037 | 1037 |
| 1038 // IEEE 754 functions. | 1038 // IEEE 754 functions. |
| 1039 static ExternalReference ieee754_log_function(Isolate* isolate); | 1039 static ExternalReference ieee754_log_function(Isolate* isolate); |
| 1040 static ExternalReference ieee754_log1p_function(Isolate* isolate); |
| 1040 | 1041 |
| 1041 static ExternalReference math_exp_constants(int constant_index); | 1042 static ExternalReference math_exp_constants(int constant_index); |
| 1042 static ExternalReference math_exp_log_table(); | 1043 static ExternalReference math_exp_log_table(); |
| 1043 | 1044 |
| 1044 static ExternalReference page_flags(Page* page); | 1045 static ExternalReference page_flags(Page* page); |
| 1045 | 1046 |
| 1046 static ExternalReference ForDeoptEntry(Address entry); | 1047 static ExternalReference ForDeoptEntry(Address entry); |
| 1047 | 1048 |
| 1048 static ExternalReference cpu_features(); | 1049 static ExternalReference cpu_features(); |
| 1049 | 1050 |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1339 std::vector<ConstantPoolEntry> shared_entries; | 1340 std::vector<ConstantPoolEntry> shared_entries; |
| 1340 }; | 1341 }; |
| 1341 | 1342 |
| 1342 Label emitted_label_; // Records pc_offset of emitted pool | 1343 Label emitted_label_; // Records pc_offset of emitted pool |
| 1343 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1344 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
| 1344 }; | 1345 }; |
| 1345 | 1346 |
| 1346 } // namespace internal | 1347 } // namespace internal |
| 1347 } // namespace v8 | 1348 } // namespace v8 |
| 1348 #endif // V8_ASSEMBLER_H_ | 1349 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |