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

Side by Side Diff: src/assembler.h

Issue 12342037: Handle negative input in inlined Math.round on Intel CPUs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
« 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 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 static ExternalReference handle_scope_level_address(Isolate* isolate); 729 static ExternalReference handle_scope_level_address(Isolate* isolate);
730 730
731 static ExternalReference scheduled_exception_address(Isolate* isolate); 731 static ExternalReference scheduled_exception_address(Isolate* isolate);
732 static ExternalReference address_of_pending_message_obj(Isolate* isolate); 732 static ExternalReference address_of_pending_message_obj(Isolate* isolate);
733 static ExternalReference address_of_has_pending_message(Isolate* isolate); 733 static ExternalReference address_of_has_pending_message(Isolate* isolate);
734 static ExternalReference address_of_pending_message_script(Isolate* isolate); 734 static ExternalReference address_of_pending_message_script(Isolate* isolate);
735 735
736 // Static variables containing common double constants. 736 // Static variables containing common double constants.
737 static ExternalReference address_of_min_int(); 737 static ExternalReference address_of_min_int();
738 static ExternalReference address_of_one_half(); 738 static ExternalReference address_of_one_half();
739 static ExternalReference address_of_minus_one_half();
739 static ExternalReference address_of_minus_zero(); 740 static ExternalReference address_of_minus_zero();
740 static ExternalReference address_of_zero(); 741 static ExternalReference address_of_zero();
741 static ExternalReference address_of_uint8_max_value(); 742 static ExternalReference address_of_uint8_max_value();
742 static ExternalReference address_of_negative_infinity(); 743 static ExternalReference address_of_negative_infinity();
743 static ExternalReference address_of_canonical_non_hole_nan(); 744 static ExternalReference address_of_canonical_non_hole_nan();
744 static ExternalReference address_of_the_hole_nan(); 745 static ExternalReference address_of_the_hole_nan();
745 746
746 static ExternalReference math_sin_double_function(Isolate* isolate); 747 static ExternalReference math_sin_double_function(Isolate* isolate);
747 static ExternalReference math_cos_double_function(Isolate* isolate); 748 static ExternalReference math_cos_double_function(Isolate* isolate);
748 static ExternalReference math_tan_double_function(Isolate* isolate); 749 static ExternalReference math_tan_double_function(Isolate* isolate);
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
990 public: 991 public:
991 NullCallWrapper() { } 992 NullCallWrapper() { }
992 virtual ~NullCallWrapper() { } 993 virtual ~NullCallWrapper() { }
993 virtual void BeforeCall(int call_size) const { } 994 virtual void BeforeCall(int call_size) const { }
994 virtual void AfterCall() const { } 995 virtual void AfterCall() const { }
995 }; 996 };
996 997
997 } } // namespace v8::internal 998 } } // namespace v8::internal
998 999
999 #endif // V8_ASSEMBLER_H_ 1000 #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