| 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 1562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1573 | 1573 |
| 1574 | 1574 |
| 1575 ExternalReference ExternalReference::mod_two_doubles_operation( | 1575 ExternalReference ExternalReference::mod_two_doubles_operation( |
| 1576 Isolate* isolate) { | 1576 Isolate* isolate) { |
| 1577 return ExternalReference(Redirect(isolate, | 1577 return ExternalReference(Redirect(isolate, |
| 1578 FUNCTION_ADDR(modulo), | 1578 FUNCTION_ADDR(modulo), |
| 1579 BUILTIN_FP_FP_CALL)); | 1579 BUILTIN_FP_FP_CALL)); |
| 1580 } | 1580 } |
| 1581 | 1581 |
| 1582 | 1582 |
| 1583 ExternalReference ExternalReference::debug_step_in_fp_address( | 1583 ExternalReference ExternalReference::debug_last_step_action_address( |
| 1584 Isolate* isolate) { | 1584 Isolate* isolate) { |
| 1585 return ExternalReference(isolate->debug()->step_in_fp_addr()); | 1585 return ExternalReference(isolate->debug()->last_step_action_addr()); |
| 1586 } | 1586 } |
| 1587 | 1587 |
| 1588 | 1588 |
| 1589 ExternalReference ExternalReference::fixed_typed_array_base_data_offset() { | 1589 ExternalReference ExternalReference::fixed_typed_array_base_data_offset() { |
| 1590 return ExternalReference(reinterpret_cast<void*>( | 1590 return ExternalReference(reinterpret_cast<void*>( |
| 1591 FixedTypedArrayBase::kDataOffset - kHeapObjectTag)); | 1591 FixedTypedArrayBase::kDataOffset - kHeapObjectTag)); |
| 1592 } | 1592 } |
| 1593 | 1593 |
| 1594 | 1594 |
| 1595 bool operator==(ExternalReference lhs, ExternalReference rhs) { | 1595 bool operator==(ExternalReference lhs, ExternalReference rhs) { |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1905 | 1905 |
| 1906 | 1906 |
| 1907 void Assembler::DataAlign(int m) { | 1907 void Assembler::DataAlign(int m) { |
| 1908 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); | 1908 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); |
| 1909 while ((pc_offset() & (m - 1)) != 0) { | 1909 while ((pc_offset() & (m - 1)) != 0) { |
| 1910 db(0); | 1910 db(0); |
| 1911 } | 1911 } |
| 1912 } | 1912 } |
| 1913 } // namespace internal | 1913 } // namespace internal |
| 1914 } // namespace v8 | 1914 } // namespace v8 |
| OLD | NEW |