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