| OLD | NEW |
| 1 // Copyright (c) 2011 Sun Microsystems Inc. | 1 // Copyright (c) 2011 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 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 838 return ExternalReference(isolate->factory()->the_hole_value().location()); | 838 return ExternalReference(isolate->factory()->the_hole_value().location()); |
| 839 } | 839 } |
| 840 | 840 |
| 841 | 841 |
| 842 ExternalReference ExternalReference::arguments_marker_location( | 842 ExternalReference ExternalReference::arguments_marker_location( |
| 843 Isolate* isolate) { | 843 Isolate* isolate) { |
| 844 return ExternalReference(isolate->factory()->arguments_marker().location()); | 844 return ExternalReference(isolate->factory()->arguments_marker().location()); |
| 845 } | 845 } |
| 846 | 846 |
| 847 | 847 |
| 848 ExternalReference ExternalReference::frame_alignment_marker_location( |
| 849 Isolate* isolate) { |
| 850 return ExternalReference( |
| 851 isolate->factory()->frame_alignment_marker().location()); |
| 852 } |
| 853 |
| 854 |
| 848 ExternalReference ExternalReference::roots_address(Isolate* isolate) { | 855 ExternalReference ExternalReference::roots_address(Isolate* isolate) { |
| 849 return ExternalReference(isolate->heap()->roots_address()); | 856 return ExternalReference(isolate->heap()->roots_address()); |
| 850 } | 857 } |
| 851 | 858 |
| 852 | 859 |
| 853 ExternalReference ExternalReference::address_of_stack_limit(Isolate* isolate) { | 860 ExternalReference ExternalReference::address_of_stack_limit(Isolate* isolate) { |
| 854 return ExternalReference(isolate->stack_guard()->address_of_jslimit()); | 861 return ExternalReference(isolate->stack_guard()->address_of_jslimit()); |
| 855 } | 862 } |
| 856 | 863 |
| 857 | 864 |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1242 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); | 1249 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); |
| 1243 state_.written_position = state_.current_position; | 1250 state_.written_position = state_.current_position; |
| 1244 written = true; | 1251 written = true; |
| 1245 } | 1252 } |
| 1246 | 1253 |
| 1247 // Return whether something was written. | 1254 // Return whether something was written. |
| 1248 return written; | 1255 return written; |
| 1249 } | 1256 } |
| 1250 | 1257 |
| 1251 } } // namespace v8::internal | 1258 } } // namespace v8::internal |
| OLD | NEW |