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 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1066 return ExternalReference(Redirect( | 1066 return ExternalReference(Redirect( |
1067 isolate, FUNCTION_ADDR(Code::MakeCodeAgeSequenceYoung))); | 1067 isolate, FUNCTION_ADDR(Code::MakeCodeAgeSequenceYoung))); |
1068 } | 1068 } |
1069 | 1069 |
1070 | 1070 |
1071 ExternalReference ExternalReference::date_cache_stamp(Isolate* isolate) { | 1071 ExternalReference ExternalReference::date_cache_stamp(Isolate* isolate) { |
1072 return ExternalReference(isolate->date_cache()->stamp_address()); | 1072 return ExternalReference(isolate->date_cache()->stamp_address()); |
1073 } | 1073 } |
1074 | 1074 |
1075 | 1075 |
| 1076 ExternalReference ExternalReference::stress_deopt_count(Isolate* isolate) { |
| 1077 return ExternalReference(isolate->stress_deopt_count_address()); |
| 1078 } |
| 1079 |
| 1080 |
1076 ExternalReference ExternalReference::transcendental_cache_array_address( | 1081 ExternalReference ExternalReference::transcendental_cache_array_address( |
1077 Isolate* isolate) { | 1082 Isolate* isolate) { |
1078 return ExternalReference( | 1083 return ExternalReference( |
1079 isolate->transcendental_cache()->cache_array_address()); | 1084 isolate->transcendental_cache()->cache_array_address()); |
1080 } | 1085 } |
1081 | 1086 |
1082 | 1087 |
1083 ExternalReference ExternalReference::new_deoptimizer_function( | 1088 ExternalReference ExternalReference::new_deoptimizer_function( |
1084 Isolate* isolate) { | 1089 Isolate* isolate) { |
1085 return ExternalReference( | 1090 return ExternalReference( |
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1672 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); | 1677 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); |
1673 state_.written_position = state_.current_position; | 1678 state_.written_position = state_.current_position; |
1674 written = true; | 1679 written = true; |
1675 } | 1680 } |
1676 | 1681 |
1677 // Return whether something was written. | 1682 // Return whether something was written. |
1678 return written; | 1683 return written; |
1679 } | 1684 } |
1680 | 1685 |
1681 } } // namespace v8::internal | 1686 } } // namespace v8::internal |
OLD | NEW |