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 1399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1410 return ExternalReference(isolate->debug()->is_active_address()); | 1410 return ExternalReference(isolate->debug()->is_active_address()); |
1411 } | 1411 } |
1412 | 1412 |
1413 | 1413 |
1414 ExternalReference ExternalReference::debug_after_break_target_address( | 1414 ExternalReference ExternalReference::debug_after_break_target_address( |
1415 Isolate* isolate) { | 1415 Isolate* isolate) { |
1416 return ExternalReference(isolate->debug()->after_break_target_address()); | 1416 return ExternalReference(isolate->debug()->after_break_target_address()); |
1417 } | 1417 } |
1418 | 1418 |
1419 | 1419 |
| 1420 ExternalReference |
| 1421 ExternalReference::debug_restarter_frame_function_pointer_address( |
| 1422 Isolate* isolate) { |
| 1423 return ExternalReference( |
| 1424 isolate->debug()->restarter_frame_function_pointer_address()); |
| 1425 } |
| 1426 |
| 1427 |
1420 ExternalReference ExternalReference::virtual_handler_register( | 1428 ExternalReference ExternalReference::virtual_handler_register( |
1421 Isolate* isolate) { | 1429 Isolate* isolate) { |
1422 return ExternalReference(isolate->virtual_handler_register_address()); | 1430 return ExternalReference(isolate->virtual_handler_register_address()); |
1423 } | 1431 } |
1424 | 1432 |
1425 | 1433 |
1426 ExternalReference ExternalReference::virtual_slot_register(Isolate* isolate) { | 1434 ExternalReference ExternalReference::virtual_slot_register(Isolate* isolate) { |
1427 return ExternalReference(isolate->virtual_slot_register_address()); | 1435 return ExternalReference(isolate->virtual_slot_register_address()); |
1428 } | 1436 } |
1429 | 1437 |
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1870 | 1878 |
1871 | 1879 |
1872 void Assembler::DataAlign(int m) { | 1880 void Assembler::DataAlign(int m) { |
1873 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); | 1881 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); |
1874 while ((pc_offset() & (m - 1)) != 0) { | 1882 while ((pc_offset() & (m - 1)) != 0) { |
1875 db(0); | 1883 db(0); |
1876 } | 1884 } |
1877 } | 1885 } |
1878 } // namespace internal | 1886 } // namespace internal |
1879 } // namespace v8 | 1887 } // namespace v8 |
OLD | NEW |