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

Side by Side Diff: src/assembler.h

Issue 863633002: Use signaling NaN for holes in fixed double arrays. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Restore SSE2 Created 5 years, 11 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
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 907 matching lines...) Expand 10 before | Expand all | Expand 10 after
918 static ExternalReference scheduled_exception_address(Isolate* isolate); 918 static ExternalReference scheduled_exception_address(Isolate* isolate);
919 static ExternalReference address_of_pending_message_obj(Isolate* isolate); 919 static ExternalReference address_of_pending_message_obj(Isolate* isolate);
920 static ExternalReference address_of_has_pending_message(Isolate* isolate); 920 static ExternalReference address_of_has_pending_message(Isolate* isolate);
921 static ExternalReference address_of_pending_message_script(Isolate* isolate); 921 static ExternalReference address_of_pending_message_script(Isolate* isolate);
922 922
923 // Static variables containing common double constants. 923 // Static variables containing common double constants.
924 static ExternalReference address_of_min_int(); 924 static ExternalReference address_of_min_int();
925 static ExternalReference address_of_one_half(); 925 static ExternalReference address_of_one_half();
926 static ExternalReference address_of_minus_one_half(); 926 static ExternalReference address_of_minus_one_half();
927 static ExternalReference address_of_negative_infinity(); 927 static ExternalReference address_of_negative_infinity();
928 static ExternalReference address_of_canonical_non_hole_nan();
929 static ExternalReference address_of_the_hole_nan(); 928 static ExternalReference address_of_the_hole_nan();
930 static ExternalReference address_of_uint32_bias(); 929 static ExternalReference address_of_uint32_bias();
931 930
932 static ExternalReference math_log_double_function(Isolate* isolate); 931 static ExternalReference math_log_double_function(Isolate* isolate);
933 932
934 static ExternalReference math_exp_constants(int constant_index); 933 static ExternalReference math_exp_constants(int constant_index);
935 static ExternalReference math_exp_log_table(); 934 static ExternalReference math_exp_log_table();
936 935
937 static ExternalReference page_flags(Page* page); 936 static ExternalReference page_flags(Page* page);
938 937
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
1130 NullCallWrapper() { } 1129 NullCallWrapper() { }
1131 virtual ~NullCallWrapper() { } 1130 virtual ~NullCallWrapper() { }
1132 virtual void BeforeCall(int call_size) const { } 1131 virtual void BeforeCall(int call_size) const { }
1133 virtual void AfterCall() const { } 1132 virtual void AfterCall() const { }
1134 }; 1133 };
1135 1134
1136 1135
1137 } } // namespace v8::internal 1136 } } // namespace v8::internal
1138 1137
1139 #endif // V8_ASSEMBLER_H_ 1138 #endif // V8_ASSEMBLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698