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