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 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
617 ExternalReference ExternalReference::address_of_regexp_stack_limit() { | 617 ExternalReference ExternalReference::address_of_regexp_stack_limit() { |
618 return ExternalReference(RegExpStack::limit_address()); | 618 return ExternalReference(RegExpStack::limit_address()); |
619 } | 619 } |
620 | 620 |
621 | 621 |
622 ExternalReference ExternalReference::new_space_start() { | 622 ExternalReference ExternalReference::new_space_start() { |
623 return ExternalReference(Heap::NewSpaceStart()); | 623 return ExternalReference(Heap::NewSpaceStart()); |
624 } | 624 } |
625 | 625 |
626 | 626 |
| 627 ExternalReference ExternalReference::new_space_mask() { |
| 628 return ExternalReference(reinterpret_cast<Address>(Heap::NewSpaceMask())); |
| 629 } |
| 630 |
| 631 |
627 ExternalReference ExternalReference::new_space_allocation_top_address() { | 632 ExternalReference ExternalReference::new_space_allocation_top_address() { |
628 return ExternalReference(Heap::NewSpaceAllocationTopAddress()); | 633 return ExternalReference(Heap::NewSpaceAllocationTopAddress()); |
629 } | 634 } |
630 | 635 |
631 | 636 |
632 ExternalReference ExternalReference::heap_always_allocate_scope_depth() { | 637 ExternalReference ExternalReference::heap_always_allocate_scope_depth() { |
633 return ExternalReference(Heap::always_allocate_scope_depth_address()); | 638 return ExternalReference(Heap::always_allocate_scope_depth_address()); |
634 } | 639 } |
635 | 640 |
636 | 641 |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
778 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); | 783 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); |
779 } | 784 } |
780 | 785 |
781 | 786 |
782 ExternalReference ExternalReference::debug_step_in_fp_address() { | 787 ExternalReference ExternalReference::debug_step_in_fp_address() { |
783 return ExternalReference(Debug::step_in_fp_addr()); | 788 return ExternalReference(Debug::step_in_fp_addr()); |
784 } | 789 } |
785 #endif | 790 #endif |
786 | 791 |
787 } } // namespace v8::internal | 792 } } // namespace v8::internal |
OLD | NEW |