| 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 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 Isolate* isolate); | 633 Isolate* isolate); |
| 634 static ExternalReference compare_doubles(Isolate* isolate); | 634 static ExternalReference compare_doubles(Isolate* isolate); |
| 635 static ExternalReference power_double_double_function(Isolate* isolate); | 635 static ExternalReference power_double_double_function(Isolate* isolate); |
| 636 static ExternalReference power_double_int_function(Isolate* isolate); | 636 static ExternalReference power_double_int_function(Isolate* isolate); |
| 637 | 637 |
| 638 static ExternalReference handle_scope_next_address(); | 638 static ExternalReference handle_scope_next_address(); |
| 639 static ExternalReference handle_scope_limit_address(); | 639 static ExternalReference handle_scope_limit_address(); |
| 640 static ExternalReference handle_scope_level_address(); | 640 static ExternalReference handle_scope_level_address(); |
| 641 | 641 |
| 642 static ExternalReference scheduled_exception_address(Isolate* isolate); | 642 static ExternalReference scheduled_exception_address(Isolate* isolate); |
| 643 static ExternalReference address_of_pending_message_obj(Isolate* isolate); |
| 643 | 644 |
| 644 // Static variables containing common double constants. | 645 // Static variables containing common double constants. |
| 645 static ExternalReference address_of_min_int(); | 646 static ExternalReference address_of_min_int(); |
| 646 static ExternalReference address_of_one_half(); | 647 static ExternalReference address_of_one_half(); |
| 647 static ExternalReference address_of_minus_zero(); | 648 static ExternalReference address_of_minus_zero(); |
| 648 static ExternalReference address_of_zero(); | 649 static ExternalReference address_of_zero(); |
| 649 static ExternalReference address_of_uint8_max_value(); | 650 static ExternalReference address_of_uint8_max_value(); |
| 650 static ExternalReference address_of_negative_infinity(); | 651 static ExternalReference address_of_negative_infinity(); |
| 651 static ExternalReference address_of_canonical_non_hole_nan(); | 652 static ExternalReference address_of_canonical_non_hole_nan(); |
| 652 static ExternalReference address_of_the_hole_nan(); | 653 static ExternalReference address_of_the_hole_nan(); |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 public: | 879 public: |
| 879 NullCallWrapper() { } | 880 NullCallWrapper() { } |
| 880 virtual ~NullCallWrapper() { } | 881 virtual ~NullCallWrapper() { } |
| 881 virtual void BeforeCall(int call_size) const { } | 882 virtual void BeforeCall(int call_size) const { } |
| 882 virtual void AfterCall() const { } | 883 virtual void AfterCall() const { } |
| 883 }; | 884 }; |
| 884 | 885 |
| 885 } } // namespace v8::internal | 886 } } // namespace v8::internal |
| 886 | 887 |
| 887 #endif // V8_ASSEMBLER_H_ | 888 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |