| 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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 static ExternalReference new_space_mask(Isolate* isolate); | 710 static ExternalReference new_space_mask(Isolate* isolate); |
| 711 static ExternalReference heap_always_allocate_scope_depth(Isolate* isolate); | 711 static ExternalReference heap_always_allocate_scope_depth(Isolate* isolate); |
| 712 static ExternalReference new_space_mark_bits(Isolate* isolate); | 712 static ExternalReference new_space_mark_bits(Isolate* isolate); |
| 713 | 713 |
| 714 // Write barrier. | 714 // Write barrier. |
| 715 static ExternalReference store_buffer_top(Isolate* isolate); | 715 static ExternalReference store_buffer_top(Isolate* isolate); |
| 716 | 716 |
| 717 // Used for fast allocation in generated code. | 717 // Used for fast allocation in generated code. |
| 718 static ExternalReference new_space_allocation_top_address(Isolate* isolate); | 718 static ExternalReference new_space_allocation_top_address(Isolate* isolate); |
| 719 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); | 719 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); |
| 720 static ExternalReference old_pointer_space_allocation_top_address( |
| 721 Isolate* isolate); |
| 722 static ExternalReference old_pointer_space_allocation_limit_address( |
| 723 Isolate* isolate); |
| 720 | 724 |
| 721 static ExternalReference double_fp_operation(Token::Value operation, | 725 static ExternalReference double_fp_operation(Token::Value operation, |
| 722 Isolate* isolate); | 726 Isolate* isolate); |
| 723 static ExternalReference compare_doubles(Isolate* isolate); | 727 static ExternalReference compare_doubles(Isolate* isolate); |
| 724 static ExternalReference power_double_double_function(Isolate* isolate); | 728 static ExternalReference power_double_double_function(Isolate* isolate); |
| 725 static ExternalReference power_double_int_function(Isolate* isolate); | 729 static ExternalReference power_double_int_function(Isolate* isolate); |
| 726 | 730 |
| 727 static ExternalReference handle_scope_next_address(Isolate* isolate); | 731 static ExternalReference handle_scope_next_address(Isolate* isolate); |
| 728 static ExternalReference handle_scope_limit_address(Isolate* isolate); | 732 static ExternalReference handle_scope_limit_address(Isolate* isolate); |
| 729 static ExternalReference handle_scope_level_address(Isolate* isolate); | 733 static ExternalReference handle_scope_level_address(Isolate* isolate); |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 991 public: | 995 public: |
| 992 NullCallWrapper() { } | 996 NullCallWrapper() { } |
| 993 virtual ~NullCallWrapper() { } | 997 virtual ~NullCallWrapper() { } |
| 994 virtual void BeforeCall(int call_size) const { } | 998 virtual void BeforeCall(int call_size) const { } |
| 995 virtual void AfterCall() const { } | 999 virtual void AfterCall() const { } |
| 996 }; | 1000 }; |
| 997 | 1001 |
| 998 } } // namespace v8::internal | 1002 } } // namespace v8::internal |
| 999 | 1003 |
| 1000 #endif // V8_ASSEMBLER_H_ | 1004 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |