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 1552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1563 | 1563 |
1564 ExternalReference ExternalReference::promise_hook_address(Isolate* isolate) { | 1564 ExternalReference ExternalReference::promise_hook_address(Isolate* isolate) { |
1565 return ExternalReference(isolate->promise_hook_address()); | 1565 return ExternalReference(isolate->promise_hook_address()); |
1566 } | 1566 } |
1567 | 1567 |
1568 ExternalReference ExternalReference::debug_is_active_address( | 1568 ExternalReference ExternalReference::debug_is_active_address( |
1569 Isolate* isolate) { | 1569 Isolate* isolate) { |
1570 return ExternalReference(isolate->debug()->is_active_address()); | 1570 return ExternalReference(isolate->debug()->is_active_address()); |
1571 } | 1571 } |
1572 | 1572 |
| 1573 ExternalReference ExternalReference::debug_hook_on_function_call_address( |
| 1574 Isolate* isolate) { |
| 1575 return ExternalReference(isolate->debug()->hook_on_function_call_address()); |
| 1576 } |
1573 | 1577 |
1574 ExternalReference ExternalReference::debug_after_break_target_address( | 1578 ExternalReference ExternalReference::debug_after_break_target_address( |
1575 Isolate* isolate) { | 1579 Isolate* isolate) { |
1576 return ExternalReference(isolate->debug()->after_break_target_address()); | 1580 return ExternalReference(isolate->debug()->after_break_target_address()); |
1577 } | 1581 } |
1578 | 1582 |
1579 | 1583 |
1580 ExternalReference ExternalReference::runtime_function_table_address( | 1584 ExternalReference ExternalReference::runtime_function_table_address( |
1581 Isolate* isolate) { | 1585 Isolate* isolate) { |
1582 return ExternalReference( | 1586 return ExternalReference( |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1918 | 1922 |
1919 | 1923 |
1920 void Assembler::DataAlign(int m) { | 1924 void Assembler::DataAlign(int m) { |
1921 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); | 1925 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); |
1922 while ((pc_offset() & (m - 1)) != 0) { | 1926 while ((pc_offset() & (m - 1)) != 0) { |
1923 db(0); | 1927 db(0); |
1924 } | 1928 } |
1925 } | 1929 } |
1926 } // namespace internal | 1930 } // namespace internal |
1927 } // namespace v8 | 1931 } // namespace v8 |
OLD | NEW |