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

Side by Side Diff: src/assembler.h

Issue 104203003: Remove unused trigonometric code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comment Created 7 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
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | 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 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 static ExternalReference address_of_one_half(); 804 static ExternalReference address_of_one_half();
805 static ExternalReference address_of_minus_one_half(); 805 static ExternalReference address_of_minus_one_half();
806 static ExternalReference address_of_minus_zero(); 806 static ExternalReference address_of_minus_zero();
807 static ExternalReference address_of_zero(); 807 static ExternalReference address_of_zero();
808 static ExternalReference address_of_uint8_max_value(); 808 static ExternalReference address_of_uint8_max_value();
809 static ExternalReference address_of_negative_infinity(); 809 static ExternalReference address_of_negative_infinity();
810 static ExternalReference address_of_canonical_non_hole_nan(); 810 static ExternalReference address_of_canonical_non_hole_nan();
811 static ExternalReference address_of_the_hole_nan(); 811 static ExternalReference address_of_the_hole_nan();
812 static ExternalReference address_of_uint32_bias(); 812 static ExternalReference address_of_uint32_bias();
813 813
814 static ExternalReference math_sin_double_function(Isolate* isolate);
815 static ExternalReference math_cos_double_function(Isolate* isolate);
816 static ExternalReference math_tan_double_function(Isolate* isolate);
817 static ExternalReference math_log_double_function(Isolate* isolate); 814 static ExternalReference math_log_double_function(Isolate* isolate);
818 815
819 static ExternalReference math_exp_constants(int constant_index); 816 static ExternalReference math_exp_constants(int constant_index);
820 static ExternalReference math_exp_log_table(); 817 static ExternalReference math_exp_log_table();
821 818
822 static ExternalReference page_flags(Page* page); 819 static ExternalReference page_flags(Page* page);
823 820
824 static ExternalReference ForDeoptEntry(Address entry); 821 static ExternalReference ForDeoptEntry(Address entry);
825 822
826 static ExternalReference cpu_features(); 823 static ExternalReference cpu_features();
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 public: 1065 public:
1069 NullCallWrapper() { } 1066 NullCallWrapper() { }
1070 virtual ~NullCallWrapper() { } 1067 virtual ~NullCallWrapper() { }
1071 virtual void BeforeCall(int call_size) const { } 1068 virtual void BeforeCall(int call_size) const { }
1072 virtual void AfterCall() const { } 1069 virtual void AfterCall() const { }
1073 }; 1070 };
1074 1071
1075 } } // namespace v8::internal 1072 } } // namespace v8::internal
1076 1073
1077 #endif // V8_ASSEMBLER_H_ 1074 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698