Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(775)

Side by Side Diff: src/assembler.h

Issue 2116753002: [builtins] Unify most of the remaining Math builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@2102223005
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | src/bootstrapper.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 970 matching lines...) Expand 10 before | Expand all | Expand 10 after
981 981
982 // Static variables containing common double constants. 982 // Static variables containing common double constants.
983 static ExternalReference address_of_min_int(); 983 static ExternalReference address_of_min_int();
984 static ExternalReference address_of_one_half(); 984 static ExternalReference address_of_one_half();
985 static ExternalReference address_of_minus_one_half(); 985 static ExternalReference address_of_minus_one_half();
986 static ExternalReference address_of_negative_infinity(); 986 static ExternalReference address_of_negative_infinity();
987 static ExternalReference address_of_the_hole_nan(); 987 static ExternalReference address_of_the_hole_nan();
988 static ExternalReference address_of_uint32_bias(); 988 static ExternalReference address_of_uint32_bias();
989 989
990 // IEEE 754 functions. 990 // IEEE 754 functions.
991 static ExternalReference ieee754_acos_function(Isolate* isolate);
992 static ExternalReference ieee754_acosh_function(Isolate* isolate);
993 static ExternalReference ieee754_asin_function(Isolate* isolate);
994 static ExternalReference ieee754_asinh_function(Isolate* isolate);
991 static ExternalReference ieee754_atan_function(Isolate* isolate); 995 static ExternalReference ieee754_atan_function(Isolate* isolate);
996 static ExternalReference ieee754_atanh_function(Isolate* isolate);
992 static ExternalReference ieee754_atan2_function(Isolate* isolate); 997 static ExternalReference ieee754_atan2_function(Isolate* isolate);
993 static ExternalReference ieee754_atanh_function(Isolate* isolate);
994 static ExternalReference ieee754_cbrt_function(Isolate* isolate); 998 static ExternalReference ieee754_cbrt_function(Isolate* isolate);
995 static ExternalReference ieee754_cos_function(Isolate* isolate); 999 static ExternalReference ieee754_cos_function(Isolate* isolate);
996 static ExternalReference ieee754_cosh_function(Isolate* isolate); 1000 static ExternalReference ieee754_cosh_function(Isolate* isolate);
997 static ExternalReference ieee754_exp_function(Isolate* isolate); 1001 static ExternalReference ieee754_exp_function(Isolate* isolate);
998 static ExternalReference ieee754_expm1_function(Isolate* isolate); 1002 static ExternalReference ieee754_expm1_function(Isolate* isolate);
999 static ExternalReference ieee754_log_function(Isolate* isolate); 1003 static ExternalReference ieee754_log_function(Isolate* isolate);
1000 static ExternalReference ieee754_log1p_function(Isolate* isolate); 1004 static ExternalReference ieee754_log1p_function(Isolate* isolate);
1001 static ExternalReference ieee754_log10_function(Isolate* isolate); 1005 static ExternalReference ieee754_log10_function(Isolate* isolate);
1002 static ExternalReference ieee754_log2_function(Isolate* isolate); 1006 static ExternalReference ieee754_log2_function(Isolate* isolate);
1003 static ExternalReference ieee754_sin_function(Isolate* isolate); 1007 static ExternalReference ieee754_sin_function(Isolate* isolate);
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
1258 std::vector<ConstantPoolEntry> shared_entries; 1262 std::vector<ConstantPoolEntry> shared_entries;
1259 }; 1263 };
1260 1264
1261 Label emitted_label_; // Records pc_offset of emitted pool 1265 Label emitted_label_; // Records pc_offset of emitted pool
1262 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; 1266 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES];
1263 }; 1267 };
1264 1268
1265 } // namespace internal 1269 } // namespace internal
1266 } // namespace v8 1270 } // namespace v8
1267 #endif // V8_ASSEMBLER_H_ 1271 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | src/bootstrapper.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698