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 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1041 | 1041 |
1042 | 1042 |
1043 ExternalReference ExternalReference:: | 1043 ExternalReference ExternalReference:: |
1044 store_buffer_overflow_function(Isolate* isolate) { | 1044 store_buffer_overflow_function(Isolate* isolate) { |
1045 return ExternalReference(Redirect( | 1045 return ExternalReference(Redirect( |
1046 isolate, | 1046 isolate, |
1047 FUNCTION_ADDR(StoreBuffer::StoreBufferOverflow))); | 1047 FUNCTION_ADDR(StoreBuffer::StoreBufferOverflow))); |
1048 } | 1048 } |
1049 | 1049 |
1050 | 1050 |
1051 ExternalReference ExternalReference::flush_icache_function(Isolate* isolate) { | |
1052 return ExternalReference( | |
1053 Redirect(isolate, FUNCTION_ADDR(Assembler::FlushICacheWithoutIsolate))); | |
1054 } | |
1055 | |
1056 | |
1057 ExternalReference ExternalReference::delete_handle_scope_extensions( | 1051 ExternalReference ExternalReference::delete_handle_scope_extensions( |
1058 Isolate* isolate) { | 1052 Isolate* isolate) { |
1059 return ExternalReference(Redirect( | 1053 return ExternalReference(Redirect( |
1060 isolate, | 1054 isolate, |
1061 FUNCTION_ADDR(HandleScope::DeleteExtensions))); | 1055 FUNCTION_ADDR(HandleScope::DeleteExtensions))); |
1062 } | 1056 } |
1063 | 1057 |
1064 | 1058 |
1065 ExternalReference ExternalReference::get_date_field_function( | 1059 ExternalReference ExternalReference::get_date_field_function( |
1066 Isolate* isolate) { | 1060 Isolate* isolate) { |
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1846 | 1840 |
1847 | 1841 |
1848 void Assembler::DataAlign(int m) { | 1842 void Assembler::DataAlign(int m) { |
1849 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); | 1843 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); |
1850 while ((pc_offset() & (m - 1)) != 0) { | 1844 while ((pc_offset() & (m - 1)) != 0) { |
1851 db(0); | 1845 db(0); |
1852 } | 1846 } |
1853 } | 1847 } |
1854 } // namespace internal | 1848 } // namespace internal |
1855 } // namespace v8 | 1849 } // namespace v8 |
OLD | NEW |