OLD | NEW |
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 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
949 static ExternalReference mod_two_doubles_operation(Isolate* isolate); | 949 static ExternalReference mod_two_doubles_operation(Isolate* isolate); |
950 static ExternalReference power_double_double_function(Isolate* isolate); | 950 static ExternalReference power_double_double_function(Isolate* isolate); |
951 static ExternalReference power_double_int_function(Isolate* isolate); | 951 static ExternalReference power_double_int_function(Isolate* isolate); |
952 | 952 |
953 static ExternalReference handle_scope_next_address(Isolate* isolate); | 953 static ExternalReference handle_scope_next_address(Isolate* isolate); |
954 static ExternalReference handle_scope_limit_address(Isolate* isolate); | 954 static ExternalReference handle_scope_limit_address(Isolate* isolate); |
955 static ExternalReference handle_scope_level_address(Isolate* isolate); | 955 static ExternalReference handle_scope_level_address(Isolate* isolate); |
956 | 956 |
957 static ExternalReference scheduled_exception_address(Isolate* isolate); | 957 static ExternalReference scheduled_exception_address(Isolate* isolate); |
958 static ExternalReference address_of_pending_message_obj(Isolate* isolate); | 958 static ExternalReference address_of_pending_message_obj(Isolate* isolate); |
959 static ExternalReference address_of_has_pending_message(Isolate* isolate); | |
960 | 959 |
961 // Static variables containing common double constants. | 960 // Static variables containing common double constants. |
962 static ExternalReference address_of_min_int(); | 961 static ExternalReference address_of_min_int(); |
963 static ExternalReference address_of_one_half(); | 962 static ExternalReference address_of_one_half(); |
964 static ExternalReference address_of_minus_one_half(); | 963 static ExternalReference address_of_minus_one_half(); |
965 static ExternalReference address_of_negative_infinity(); | 964 static ExternalReference address_of_negative_infinity(); |
966 static ExternalReference address_of_the_hole_nan(); | 965 static ExternalReference address_of_the_hole_nan(); |
967 static ExternalReference address_of_uint32_bias(); | 966 static ExternalReference address_of_uint32_bias(); |
968 | 967 |
969 static ExternalReference math_log_double_function(Isolate* isolate); | 968 static ExternalReference math_log_double_function(Isolate* isolate); |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1167 NullCallWrapper() { } | 1166 NullCallWrapper() { } |
1168 virtual ~NullCallWrapper() { } | 1167 virtual ~NullCallWrapper() { } |
1169 virtual void BeforeCall(int call_size) const { } | 1168 virtual void BeforeCall(int call_size) const { } |
1170 virtual void AfterCall() const { } | 1169 virtual void AfterCall() const { } |
1171 }; | 1170 }; |
1172 | 1171 |
1173 | 1172 |
1174 } } // namespace v8::internal | 1173 } } // namespace v8::internal |
1175 | 1174 |
1176 #endif // V8_ASSEMBLER_H_ | 1175 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |