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 1566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1577 | 1577 |
1578 ExternalReference ExternalReference::promise_hook_address(Isolate* isolate) { | 1578 ExternalReference ExternalReference::promise_hook_address(Isolate* isolate) { |
1579 return ExternalReference(isolate->promise_hook_address()); | 1579 return ExternalReference(isolate->promise_hook_address()); |
1580 } | 1580 } |
1581 | 1581 |
1582 ExternalReference ExternalReference::debug_is_active_address( | 1582 ExternalReference ExternalReference::debug_is_active_address( |
1583 Isolate* isolate) { | 1583 Isolate* isolate) { |
1584 return ExternalReference(isolate->debug()->is_active_address()); | 1584 return ExternalReference(isolate->debug()->is_active_address()); |
1585 } | 1585 } |
1586 | 1586 |
| 1587 ExternalReference ExternalReference::debug_hook_on_function_call_address( |
| 1588 Isolate* isolate) { |
| 1589 return ExternalReference(isolate->debug()->hook_on_function_call_address()); |
| 1590 } |
1587 | 1591 |
1588 ExternalReference ExternalReference::debug_after_break_target_address( | 1592 ExternalReference ExternalReference::debug_after_break_target_address( |
1589 Isolate* isolate) { | 1593 Isolate* isolate) { |
1590 return ExternalReference(isolate->debug()->after_break_target_address()); | 1594 return ExternalReference(isolate->debug()->after_break_target_address()); |
1591 } | 1595 } |
1592 | 1596 |
1593 | 1597 |
1594 ExternalReference ExternalReference::runtime_function_table_address( | 1598 ExternalReference ExternalReference::runtime_function_table_address( |
1595 Isolate* isolate) { | 1599 Isolate* isolate) { |
1596 return ExternalReference( | 1600 return ExternalReference( |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1932 | 1936 |
1933 | 1937 |
1934 void Assembler::DataAlign(int m) { | 1938 void Assembler::DataAlign(int m) { |
1935 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); | 1939 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); |
1936 while ((pc_offset() & (m - 1)) != 0) { | 1940 while ((pc_offset() & (m - 1)) != 0) { |
1937 db(0); | 1941 db(0); |
1938 } | 1942 } |
1939 } | 1943 } |
1940 } // namespace internal | 1944 } // namespace internal |
1941 } // namespace v8 | 1945 } // namespace v8 |
OLD | NEW |