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

Side by Side Diff: src/assembler.h

Issue 27156004: Properly export uin32_bias double constant. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 2 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 792 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 // Static variables containing common double constants. 803 // Static variables containing common double constants.
804 static ExternalReference address_of_min_int(); 804 static ExternalReference address_of_min_int();
805 static ExternalReference address_of_one_half(); 805 static ExternalReference address_of_one_half();
806 static ExternalReference address_of_minus_one_half(); 806 static ExternalReference address_of_minus_one_half();
807 static ExternalReference address_of_minus_zero(); 807 static ExternalReference address_of_minus_zero();
808 static ExternalReference address_of_zero(); 808 static ExternalReference address_of_zero();
809 static ExternalReference address_of_uint8_max_value(); 809 static ExternalReference address_of_uint8_max_value();
810 static ExternalReference address_of_negative_infinity(); 810 static ExternalReference address_of_negative_infinity();
811 static ExternalReference address_of_canonical_non_hole_nan(); 811 static ExternalReference address_of_canonical_non_hole_nan();
812 static ExternalReference address_of_the_hole_nan(); 812 static ExternalReference address_of_the_hole_nan();
813 static ExternalReference address_of_uint32_bias();
813 814
814 static ExternalReference math_sin_double_function(Isolate* isolate); 815 static ExternalReference math_sin_double_function(Isolate* isolate);
815 static ExternalReference math_cos_double_function(Isolate* isolate); 816 static ExternalReference math_cos_double_function(Isolate* isolate);
816 static ExternalReference math_tan_double_function(Isolate* isolate); 817 static ExternalReference math_tan_double_function(Isolate* isolate);
817 static ExternalReference math_log_double_function(Isolate* isolate); 818 static ExternalReference math_log_double_function(Isolate* isolate);
818 819
819 static ExternalReference math_exp_constants(int constant_index); 820 static ExternalReference math_exp_constants(int constant_index);
820 static ExternalReference math_exp_log_table(); 821 static ExternalReference math_exp_log_table();
821 822
822 static ExternalReference page_flags(Page* page); 823 static ExternalReference page_flags(Page* page);
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 public: 1069 public:
1069 NullCallWrapper() { } 1070 NullCallWrapper() { }
1070 virtual ~NullCallWrapper() { } 1071 virtual ~NullCallWrapper() { }
1071 virtual void BeforeCall(int call_size) const { } 1072 virtual void BeforeCall(int call_size) const { }
1072 virtual void AfterCall() const { } 1073 virtual void AfterCall() const { }
1073 }; 1074 };
1074 1075
1075 } } // namespace v8::internal 1076 } } // namespace v8::internal
1076 1077
1077 #endif // V8_ASSEMBLER_H_ 1078 #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