| 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 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 ExternalReference ExternalReference::address_of_regexp_stack_limit() { | 602 ExternalReference ExternalReference::address_of_regexp_stack_limit() { |
| 603 return ExternalReference(RegExpStack::limit_address()); | 603 return ExternalReference(RegExpStack::limit_address()); |
| 604 } | 604 } |
| 605 | 605 |
| 606 | 606 |
| 607 ExternalReference ExternalReference::new_space_start() { | 607 ExternalReference ExternalReference::new_space_start() { |
| 608 return ExternalReference(Heap::NewSpaceStart()); | 608 return ExternalReference(Heap::NewSpaceStart()); |
| 609 } | 609 } |
| 610 | 610 |
| 611 | 611 |
| 612 ExternalReference ExternalReference::new_space_mask() { |
| 613 return ExternalReference(reinterpret_cast<Address>(Heap::NewSpaceMask())); |
| 614 } |
| 615 |
| 616 |
| 612 ExternalReference ExternalReference::new_space_allocation_top_address() { | 617 ExternalReference ExternalReference::new_space_allocation_top_address() { |
| 613 return ExternalReference(Heap::NewSpaceAllocationTopAddress()); | 618 return ExternalReference(Heap::NewSpaceAllocationTopAddress()); |
| 614 } | 619 } |
| 615 | 620 |
| 616 | 621 |
| 617 ExternalReference ExternalReference::heap_always_allocate_scope_depth() { | 622 ExternalReference ExternalReference::heap_always_allocate_scope_depth() { |
| 618 return ExternalReference(Heap::always_allocate_scope_depth_address()); | 623 return ExternalReference(Heap::always_allocate_scope_depth_address()); |
| 619 } | 624 } |
| 620 | 625 |
| 621 | 626 |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); | 768 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); |
| 764 } | 769 } |
| 765 | 770 |
| 766 | 771 |
| 767 ExternalReference ExternalReference::debug_step_in_fp_address() { | 772 ExternalReference ExternalReference::debug_step_in_fp_address() { |
| 768 return ExternalReference(Debug::step_in_fp_addr()); | 773 return ExternalReference(Debug::step_in_fp_addr()); |
| 769 } | 774 } |
| 770 #endif | 775 #endif |
| 771 | 776 |
| 772 } } // namespace v8::internal | 777 } } // namespace v8::internal |
| OLD | NEW |