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

Side by Side Diff: src/assembler.h

Issue 2161513002: [x64] add Absps/d and Negps/d macro (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: add Abspd and Negpd, and move constants to external reference 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') | no next file with comments »
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 972 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 static ExternalReference address_of_pending_message_obj(Isolate* isolate); 983 static ExternalReference address_of_pending_message_obj(Isolate* isolate);
984 984
985 // Static variables containing common double constants. 985 // Static variables containing common double constants.
986 static ExternalReference address_of_min_int(); 986 static ExternalReference address_of_min_int();
987 static ExternalReference address_of_one_half(); 987 static ExternalReference address_of_one_half();
988 static ExternalReference address_of_minus_one_half(); 988 static ExternalReference address_of_minus_one_half();
989 static ExternalReference address_of_negative_infinity(); 989 static ExternalReference address_of_negative_infinity();
990 static ExternalReference address_of_the_hole_nan(); 990 static ExternalReference address_of_the_hole_nan();
991 static ExternalReference address_of_uint32_bias(); 991 static ExternalReference address_of_uint32_bias();
992 992
993 // Static variables containing simd constants.
994 static ExternalReference address_of_float_abs_constant();
995 static ExternalReference address_of_float_neg_constant();
996 static ExternalReference address_of_double_abs_constant();
997 static ExternalReference address_of_double_neg_constant();
998
993 // IEEE 754 functions. 999 // IEEE 754 functions.
994 static ExternalReference ieee754_acos_function(Isolate* isolate); 1000 static ExternalReference ieee754_acos_function(Isolate* isolate);
995 static ExternalReference ieee754_acosh_function(Isolate* isolate); 1001 static ExternalReference ieee754_acosh_function(Isolate* isolate);
996 static ExternalReference ieee754_asin_function(Isolate* isolate); 1002 static ExternalReference ieee754_asin_function(Isolate* isolate);
997 static ExternalReference ieee754_asinh_function(Isolate* isolate); 1003 static ExternalReference ieee754_asinh_function(Isolate* isolate);
998 static ExternalReference ieee754_atan_function(Isolate* isolate); 1004 static ExternalReference ieee754_atan_function(Isolate* isolate);
999 static ExternalReference ieee754_atanh_function(Isolate* isolate); 1005 static ExternalReference ieee754_atanh_function(Isolate* isolate);
1000 static ExternalReference ieee754_atan2_function(Isolate* isolate); 1006 static ExternalReference ieee754_atan2_function(Isolate* isolate);
1001 static ExternalReference ieee754_cbrt_function(Isolate* isolate); 1007 static ExternalReference ieee754_cbrt_function(Isolate* isolate);
1002 static ExternalReference ieee754_cos_function(Isolate* isolate); 1008 static ExternalReference ieee754_cos_function(Isolate* isolate);
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
1265 std::vector<ConstantPoolEntry> shared_entries; 1271 std::vector<ConstantPoolEntry> shared_entries;
1266 }; 1272 };
1267 1273
1268 Label emitted_label_; // Records pc_offset of emitted pool 1274 Label emitted_label_; // Records pc_offset of emitted pool
1269 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; 1275 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES];
1270 }; 1276 };
1271 1277
1272 } // namespace internal 1278 } // namespace internal
1273 } // namespace v8 1279 } // namespace v8
1274 #endif // V8_ASSEMBLER_H_ 1280 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698