| 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 ExternalReference(Redirect(FUNCTION_ADDR(V8::FillHeapNumberWithRandom))); | 582 ExternalReference(Redirect(FUNCTION_ADDR(V8::FillHeapNumberWithRandom))); |
| 583 } | 583 } |
| 584 | 584 |
| 585 | 585 |
| 586 ExternalReference ExternalReference::random_uint32_function() { | 586 ExternalReference ExternalReference::random_uint32_function() { |
| 587 return ExternalReference(Redirect(FUNCTION_ADDR(V8::Random))); | 587 return ExternalReference(Redirect(FUNCTION_ADDR(V8::Random))); |
| 588 } | 588 } |
| 589 | 589 |
| 590 | 590 |
| 591 ExternalReference ExternalReference::transcendental_cache_array_address() { | 591 ExternalReference ExternalReference::transcendental_cache_array_address() { |
| 592 return ExternalReference(TranscendentalCache::cache_array_address()); | 592 return ExternalReference(Isolate::Current()->transcendental_cache()-> |
| 593 cache_array_address()); |
| 593 } | 594 } |
| 594 | 595 |
| 595 | 596 |
| 596 ExternalReference ExternalReference::keyed_lookup_cache_keys() { | 597 ExternalReference ExternalReference::keyed_lookup_cache_keys() { |
| 597 return ExternalReference(KeyedLookupCache::keys_address()); | 598 return ExternalReference(KeyedLookupCache::keys_address()); |
| 598 } | 599 } |
| 599 | 600 |
| 600 | 601 |
| 601 ExternalReference ExternalReference::keyed_lookup_cache_field_offsets() { | 602 ExternalReference ExternalReference::keyed_lookup_cache_field_offsets() { |
| 602 return ExternalReference(KeyedLookupCache::field_offsets_address()); | 603 return ExternalReference(KeyedLookupCache::field_offsets_address()); |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); | 795 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); |
| 795 } | 796 } |
| 796 | 797 |
| 797 | 798 |
| 798 ExternalReference ExternalReference::debug_step_in_fp_address() { | 799 ExternalReference ExternalReference::debug_step_in_fp_address() { |
| 799 return ExternalReference(Debug::step_in_fp_addr()); | 800 return ExternalReference(Debug::step_in_fp_addr()); |
| 800 } | 801 } |
| 801 #endif | 802 #endif |
| 802 | 803 |
| 803 } } // namespace v8::internal | 804 } } // namespace v8::internal |
| OLD | NEW |