| 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 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 854 // Static variables for RegExp. | 854 // Static variables for RegExp. |
| 855 static ExternalReference address_of_static_offsets_vector(Isolate* isolate); | 855 static ExternalReference address_of_static_offsets_vector(Isolate* isolate); |
| 856 static ExternalReference address_of_regexp_stack_memory_address( | 856 static ExternalReference address_of_regexp_stack_memory_address( |
| 857 Isolate* isolate); | 857 Isolate* isolate); |
| 858 static ExternalReference address_of_regexp_stack_memory_size( | 858 static ExternalReference address_of_regexp_stack_memory_size( |
| 859 Isolate* isolate); | 859 Isolate* isolate); |
| 860 | 860 |
| 861 // Static variable Heap::NewSpaceStart() | 861 // Static variable Heap::NewSpaceStart() |
| 862 static ExternalReference new_space_start(Isolate* isolate); | 862 static ExternalReference new_space_start(Isolate* isolate); |
| 863 static ExternalReference new_space_mask(Isolate* isolate); | 863 static ExternalReference new_space_mask(Isolate* isolate); |
| 864 static ExternalReference heap_always_allocate_scope_depth(Isolate* isolate); | |
| 865 static ExternalReference new_space_mark_bits(Isolate* isolate); | |
| 866 | 864 |
| 867 // Write barrier. | 865 // Write barrier. |
| 868 static ExternalReference store_buffer_top(Isolate* isolate); | 866 static ExternalReference store_buffer_top(Isolate* isolate); |
| 869 | 867 |
| 870 // Used for fast allocation in generated code. | 868 // Used for fast allocation in generated code. |
| 871 static ExternalReference new_space_allocation_top_address(Isolate* isolate); | 869 static ExternalReference new_space_allocation_top_address(Isolate* isolate); |
| 872 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); | 870 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); |
| 873 static ExternalReference old_pointer_space_allocation_top_address( | 871 static ExternalReference old_pointer_space_allocation_top_address( |
| 874 Isolate* isolate); | 872 Isolate* isolate); |
| 875 static ExternalReference old_pointer_space_allocation_limit_address( | 873 static ExternalReference old_pointer_space_allocation_limit_address( |
| (...skipping 13 matching lines...) Expand all Loading... |
| 889 | 887 |
| 890 static ExternalReference scheduled_exception_address(Isolate* isolate); | 888 static ExternalReference scheduled_exception_address(Isolate* isolate); |
| 891 static ExternalReference address_of_pending_message_obj(Isolate* isolate); | 889 static ExternalReference address_of_pending_message_obj(Isolate* isolate); |
| 892 static ExternalReference address_of_has_pending_message(Isolate* isolate); | 890 static ExternalReference address_of_has_pending_message(Isolate* isolate); |
| 893 static ExternalReference address_of_pending_message_script(Isolate* isolate); | 891 static ExternalReference address_of_pending_message_script(Isolate* isolate); |
| 894 | 892 |
| 895 // Static variables containing common double constants. | 893 // Static variables containing common double constants. |
| 896 static ExternalReference address_of_min_int(); | 894 static ExternalReference address_of_min_int(); |
| 897 static ExternalReference address_of_one_half(); | 895 static ExternalReference address_of_one_half(); |
| 898 static ExternalReference address_of_minus_one_half(); | 896 static ExternalReference address_of_minus_one_half(); |
| 899 static ExternalReference address_of_minus_zero(); | |
| 900 static ExternalReference address_of_zero(); | |
| 901 static ExternalReference address_of_uint8_max_value(); | |
| 902 static ExternalReference address_of_negative_infinity(); | 897 static ExternalReference address_of_negative_infinity(); |
| 903 static ExternalReference address_of_canonical_non_hole_nan(); | 898 static ExternalReference address_of_canonical_non_hole_nan(); |
| 904 static ExternalReference address_of_the_hole_nan(); | 899 static ExternalReference address_of_the_hole_nan(); |
| 905 static ExternalReference address_of_uint32_bias(); | 900 static ExternalReference address_of_uint32_bias(); |
| 906 | 901 |
| 907 static ExternalReference math_log_double_function(Isolate* isolate); | 902 static ExternalReference math_log_double_function(Isolate* isolate); |
| 908 | 903 |
| 909 static ExternalReference math_exp_constants(int constant_index); | 904 static ExternalReference math_exp_constants(int constant_index); |
| 910 static ExternalReference math_exp_log_table(); | 905 static ExternalReference math_exp_log_table(); |
| 911 | 906 |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1120 | 1115 |
| 1121 private: | 1116 private: |
| 1122 int32_t multiplier_; | 1117 int32_t multiplier_; |
| 1123 int32_t shift_; | 1118 int32_t shift_; |
| 1124 }; | 1119 }; |
| 1125 | 1120 |
| 1126 | 1121 |
| 1127 } } // namespace v8::internal | 1122 } } // namespace v8::internal |
| 1128 | 1123 |
| 1129 #endif // V8_ASSEMBLER_H_ | 1124 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |