| 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 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 // Used for fast allocation in generated code. | 711 // Used for fast allocation in generated code. |
| 712 static ExternalReference new_space_allocation_top_address(Isolate* isolate); | 712 static ExternalReference new_space_allocation_top_address(Isolate* isolate); |
| 713 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); | 713 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); |
| 714 | 714 |
| 715 static ExternalReference double_fp_operation(Token::Value operation, | 715 static ExternalReference double_fp_operation(Token::Value operation, |
| 716 Isolate* isolate); | 716 Isolate* isolate); |
| 717 static ExternalReference compare_doubles(Isolate* isolate); | 717 static ExternalReference compare_doubles(Isolate* isolate); |
| 718 static ExternalReference power_double_double_function(Isolate* isolate); | 718 static ExternalReference power_double_double_function(Isolate* isolate); |
| 719 static ExternalReference power_double_int_function(Isolate* isolate); | 719 static ExternalReference power_double_int_function(Isolate* isolate); |
| 720 | 720 |
| 721 static ExternalReference handle_scope_next_address(); | 721 static ExternalReference handle_scope_next_address(Isolate* isolate); |
| 722 static ExternalReference handle_scope_limit_address(); | 722 static ExternalReference handle_scope_limit_address(Isolate* isolate); |
| 723 static ExternalReference handle_scope_level_address(); | 723 static ExternalReference handle_scope_level_address(Isolate* isolate); |
| 724 | 724 |
| 725 static ExternalReference scheduled_exception_address(Isolate* isolate); | 725 static ExternalReference scheduled_exception_address(Isolate* isolate); |
| 726 static ExternalReference address_of_pending_message_obj(Isolate* isolate); | 726 static ExternalReference address_of_pending_message_obj(Isolate* isolate); |
| 727 static ExternalReference address_of_has_pending_message(Isolate* isolate); | 727 static ExternalReference address_of_has_pending_message(Isolate* isolate); |
| 728 static ExternalReference address_of_pending_message_script(Isolate* isolate); | 728 static ExternalReference address_of_pending_message_script(Isolate* isolate); |
| 729 | 729 |
| 730 // Static variables containing common double constants. | 730 // Static variables containing common double constants. |
| 731 static ExternalReference address_of_min_int(); | 731 static ExternalReference address_of_min_int(); |
| 732 static ExternalReference address_of_one_half(); | 732 static ExternalReference address_of_one_half(); |
| 733 static ExternalReference address_of_minus_zero(); | 733 static ExternalReference address_of_minus_zero(); |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 983 public: | 983 public: |
| 984 NullCallWrapper() { } | 984 NullCallWrapper() { } |
| 985 virtual ~NullCallWrapper() { } | 985 virtual ~NullCallWrapper() { } |
| 986 virtual void BeforeCall(int call_size) const { } | 986 virtual void BeforeCall(int call_size) const { } |
| 987 virtual void AfterCall() const { } | 987 virtual void AfterCall() const { } |
| 988 }; | 988 }; |
| 989 | 989 |
| 990 } } // namespace v8::internal | 990 } } // namespace v8::internal |
| 991 | 991 |
| 992 #endif // V8_ASSEMBLER_H_ | 992 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |