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 1752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1763 } | 1763 } |
1764 | 1764 |
1765 | 1765 |
1766 ExternalReference ExternalReference::mod_two_doubles_operation( | 1766 ExternalReference ExternalReference::mod_two_doubles_operation( |
1767 Isolate* isolate) { | 1767 Isolate* isolate) { |
1768 return ExternalReference(Redirect(isolate, | 1768 return ExternalReference(Redirect(isolate, |
1769 FUNCTION_ADDR(modulo), | 1769 FUNCTION_ADDR(modulo), |
1770 BUILTIN_FP_FP_CALL)); | 1770 BUILTIN_FP_FP_CALL)); |
1771 } | 1771 } |
1772 | 1772 |
1773 | 1773 ExternalReference ExternalReference::debug_last_step_action_address( |
1774 ExternalReference ExternalReference::debug_step_in_enabled_address( | |
1775 Isolate* isolate) { | 1774 Isolate* isolate) { |
1776 return ExternalReference(isolate->debug()->step_in_enabled_address()); | 1775 return ExternalReference(isolate->debug()->last_step_action_address()); |
1777 } | 1776 } |
1778 | 1777 |
1779 ExternalReference ExternalReference::debug_suspended_generator_address( | 1778 ExternalReference ExternalReference::debug_suspended_generator_address( |
1780 Isolate* isolate) { | 1779 Isolate* isolate) { |
1781 return ExternalReference(isolate->debug()->suspended_generator_address()); | 1780 return ExternalReference(isolate->debug()->suspended_generator_address()); |
1782 } | 1781 } |
1783 | 1782 |
1784 ExternalReference ExternalReference::fixed_typed_array_base_data_offset() { | 1783 ExternalReference ExternalReference::fixed_typed_array_base_data_offset() { |
1785 return ExternalReference(reinterpret_cast<void*>( | 1784 return ExternalReference(reinterpret_cast<void*>( |
1786 FixedTypedArrayBase::kDataOffset - kHeapObjectTag)); | 1785 FixedTypedArrayBase::kDataOffset - kHeapObjectTag)); |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2094 | 2093 |
2095 | 2094 |
2096 void Assembler::DataAlign(int m) { | 2095 void Assembler::DataAlign(int m) { |
2097 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); | 2096 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); |
2098 while ((pc_offset() & (m - 1)) != 0) { | 2097 while ((pc_offset() & (m - 1)) != 0) { |
2099 db(0); | 2098 db(0); |
2100 } | 2099 } |
2101 } | 2100 } |
2102 } // namespace internal | 2101 } // namespace internal |
2103 } // namespace v8 | 2102 } // namespace v8 |
OLD | NEW |