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 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 ExternalReference ExternalReference::keyed_lookup_cache_field_offsets() { | 640 ExternalReference ExternalReference::keyed_lookup_cache_field_offsets() { |
641 return ExternalReference(KeyedLookupCache::field_offsets_address()); | 641 return ExternalReference(KeyedLookupCache::field_offsets_address()); |
642 } | 642 } |
643 | 643 |
644 | 644 |
645 ExternalReference ExternalReference::the_hole_value_location() { | 645 ExternalReference ExternalReference::the_hole_value_location() { |
646 return ExternalReference(Factory::the_hole_value().location()); | 646 return ExternalReference(Factory::the_hole_value().location()); |
647 } | 647 } |
648 | 648 |
649 | 649 |
| 650 ExternalReference ExternalReference::arguments_marker_location() { |
| 651 return ExternalReference(Factory::arguments_marker().location()); |
| 652 } |
| 653 |
| 654 |
650 ExternalReference ExternalReference::roots_address() { | 655 ExternalReference ExternalReference::roots_address() { |
651 return ExternalReference(Heap::roots_address()); | 656 return ExternalReference(Heap::roots_address()); |
652 } | 657 } |
653 | 658 |
654 | 659 |
655 ExternalReference ExternalReference::address_of_stack_limit() { | 660 ExternalReference ExternalReference::address_of_stack_limit() { |
656 return ExternalReference(StackGuard::address_of_jslimit()); | 661 return ExternalReference(StackGuard::address_of_jslimit()); |
657 } | 662 } |
658 | 663 |
659 | 664 |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
936 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); | 941 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); |
937 state_.written_position = state_.current_position; | 942 state_.written_position = state_.current_position; |
938 written = true; | 943 written = true; |
939 } | 944 } |
940 | 945 |
941 // Return whether something was written. | 946 // Return whether something was written. |
942 return written; | 947 return written; |
943 } | 948 } |
944 | 949 |
945 } } // namespace v8::internal | 950 } } // namespace v8::internal |
OLD | NEW |