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

Side by Side Diff: src/assembler.h

Issue 8700004: Implement Math.tan in generated code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years 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
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 634 matching lines...) Expand 10 before | Expand all | Expand 10 after
645 static ExternalReference address_of_one_half(); 645 static ExternalReference address_of_one_half();
646 static ExternalReference address_of_minus_zero(); 646 static ExternalReference address_of_minus_zero();
647 static ExternalReference address_of_zero(); 647 static ExternalReference address_of_zero();
648 static ExternalReference address_of_uint8_max_value(); 648 static ExternalReference address_of_uint8_max_value();
649 static ExternalReference address_of_negative_infinity(); 649 static ExternalReference address_of_negative_infinity();
650 static ExternalReference address_of_canonical_non_hole_nan(); 650 static ExternalReference address_of_canonical_non_hole_nan();
651 static ExternalReference address_of_the_hole_nan(); 651 static ExternalReference address_of_the_hole_nan();
652 652
653 static ExternalReference math_sin_double_function(Isolate* isolate); 653 static ExternalReference math_sin_double_function(Isolate* isolate);
654 static ExternalReference math_cos_double_function(Isolate* isolate); 654 static ExternalReference math_cos_double_function(Isolate* isolate);
655 static ExternalReference math_tan_double_function(Isolate* isolate);
655 static ExternalReference math_log_double_function(Isolate* isolate); 656 static ExternalReference math_log_double_function(Isolate* isolate);
656 657
657 Address address() const {return reinterpret_cast<Address>(address_);} 658 Address address() const {return reinterpret_cast<Address>(address_);}
658 659
659 #ifdef ENABLE_DEBUGGER_SUPPORT 660 #ifdef ENABLE_DEBUGGER_SUPPORT
660 // Function Debug::Break() 661 // Function Debug::Break()
661 static ExternalReference debug_break(Isolate* isolate); 662 static ExternalReference debug_break(Isolate* isolate);
662 663
663 // Used to check if single stepping is enabled in generated code. 664 // Used to check if single stepping is enabled in generated code.
664 static ExternalReference debug_step_in_fp_address(Isolate* isolate); 665 static ExternalReference debug_step_in_fp_address(Isolate* isolate);
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 public: 875 public:
875 NullCallWrapper() { } 876 NullCallWrapper() { }
876 virtual ~NullCallWrapper() { } 877 virtual ~NullCallWrapper() { }
877 virtual void BeforeCall(int call_size) const { } 878 virtual void BeforeCall(int call_size) const { }
878 virtual void AfterCall() const { } 879 virtual void AfterCall() const { }
879 }; 880 };
880 881
881 } } // namespace v8::internal 882 } } // namespace v8::internal
882 883
883 #endif // V8_ASSEMBLER_H_ 884 #endif // V8_ASSEMBLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698