| 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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 | 557 |
| 558 | 558 |
| 559 ExternalReference ExternalReference::new_space_start() { | 559 ExternalReference ExternalReference::new_space_start() { |
| 560 return ExternalReference(Heap::NewSpaceStart()); | 560 return ExternalReference(Heap::NewSpaceStart()); |
| 561 } | 561 } |
| 562 | 562 |
| 563 ExternalReference ExternalReference::new_space_allocation_top_address() { | 563 ExternalReference ExternalReference::new_space_allocation_top_address() { |
| 564 return ExternalReference(Heap::NewSpaceAllocationTopAddress()); | 564 return ExternalReference(Heap::NewSpaceAllocationTopAddress()); |
| 565 } | 565 } |
| 566 | 566 |
| 567 ExternalReference ExternalReference::heap_always_allocate_scope_depth() { |
| 568 return ExternalReference(Heap::always_allocate_scope_depth_address()); |
| 569 } |
| 570 |
| 567 ExternalReference ExternalReference::new_space_allocation_limit_address() { | 571 ExternalReference ExternalReference::new_space_allocation_limit_address() { |
| 568 return ExternalReference(Heap::NewSpaceAllocationLimitAddress()); | 572 return ExternalReference(Heap::NewSpaceAllocationLimitAddress()); |
| 569 } | 573 } |
| 570 | 574 |
| 571 ExternalReference ExternalReference::debug_step_in_fp_address() { | 575 ExternalReference ExternalReference::debug_step_in_fp_address() { |
| 572 return ExternalReference(Debug::step_in_fp_addr()); | 576 return ExternalReference(Debug::step_in_fp_addr()); |
| 573 } | 577 } |
| 574 | 578 |
| 575 } } // namespace v8::internal | 579 } } // namespace v8::internal |
| OLD | NEW |