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 1412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1423 return ExternalReference(isolate->debug()->is_active_address()); | 1423 return ExternalReference(isolate->debug()->is_active_address()); |
1424 } | 1424 } |
1425 | 1425 |
1426 | 1426 |
1427 ExternalReference ExternalReference::debug_after_break_target_address( | 1427 ExternalReference ExternalReference::debug_after_break_target_address( |
1428 Isolate* isolate) { | 1428 Isolate* isolate) { |
1429 return ExternalReference(isolate->debug()->after_break_target_address()); | 1429 return ExternalReference(isolate->debug()->after_break_target_address()); |
1430 } | 1430 } |
1431 | 1431 |
1432 | 1432 |
| 1433 ExternalReference |
| 1434 ExternalReference::debug_restarter_frame_function_pointer_address( |
| 1435 Isolate* isolate) { |
| 1436 return ExternalReference( |
| 1437 isolate->debug()->restarter_frame_function_pointer_address()); |
| 1438 } |
| 1439 |
| 1440 |
1433 ExternalReference ExternalReference::virtual_handler_register( | 1441 ExternalReference ExternalReference::virtual_handler_register( |
1434 Isolate* isolate) { | 1442 Isolate* isolate) { |
1435 return ExternalReference(isolate->virtual_handler_register_address()); | 1443 return ExternalReference(isolate->virtual_handler_register_address()); |
1436 } | 1444 } |
1437 | 1445 |
1438 | 1446 |
1439 ExternalReference ExternalReference::virtual_slot_register(Isolate* isolate) { | 1447 ExternalReference ExternalReference::virtual_slot_register(Isolate* isolate) { |
1440 return ExternalReference(isolate->virtual_slot_register_address()); | 1448 return ExternalReference(isolate->virtual_slot_register_address()); |
1441 } | 1449 } |
1442 | 1450 |
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1884 | 1892 |
1885 | 1893 |
1886 void Assembler::DataAlign(int m) { | 1894 void Assembler::DataAlign(int m) { |
1887 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); | 1895 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); |
1888 while ((pc_offset() & (m - 1)) != 0) { | 1896 while ((pc_offset() & (m - 1)) != 0) { |
1889 db(0); | 1897 db(0); |
1890 } | 1898 } |
1891 } | 1899 } |
1892 } // namespace internal | 1900 } // namespace internal |
1893 } // namespace v8 | 1901 } // namespace v8 |
OLD | NEW |