| 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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 | 554 |
| 555 explicit ExternalReference(const SCTableReference& table_ref); | 555 explicit ExternalReference(const SCTableReference& table_ref); |
| 556 | 556 |
| 557 // Isolate::Current() as an external reference. | 557 // Isolate::Current() as an external reference. |
| 558 static ExternalReference isolate_address(); | 558 static ExternalReference isolate_address(); |
| 559 | 559 |
| 560 // One-of-a-kind references. These references are not part of a general | 560 // One-of-a-kind references. These references are not part of a general |
| 561 // pattern. This means that they have to be added to the | 561 // pattern. This means that they have to be added to the |
| 562 // ExternalReferenceTable in serialize.cc manually. | 562 // ExternalReferenceTable in serialize.cc manually. |
| 563 | 563 |
| 564 static ExternalReference flush_icache_function(Isolate* isolate); |
| 564 static ExternalReference perform_gc_function(Isolate* isolate); | 565 static ExternalReference perform_gc_function(Isolate* isolate); |
| 565 static ExternalReference fill_heap_number_with_random_function( | 566 static ExternalReference fill_heap_number_with_random_function( |
| 566 Isolate* isolate); | 567 Isolate* isolate); |
| 567 static ExternalReference random_uint32_function(Isolate* isolate); | 568 static ExternalReference random_uint32_function(Isolate* isolate); |
| 568 static ExternalReference transcendental_cache_array_address(Isolate* isolate); | 569 static ExternalReference transcendental_cache_array_address(Isolate* isolate); |
| 569 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); | 570 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); |
| 570 | 571 |
| 571 // Deoptimization support. | 572 // Deoptimization support. |
| 572 static ExternalReference new_deoptimizer_function(Isolate* isolate); | 573 static ExternalReference new_deoptimizer_function(Isolate* isolate); |
| 573 static ExternalReference compute_output_frames_function(Isolate* isolate); | 574 static ExternalReference compute_output_frames_function(Isolate* isolate); |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 public: | 856 public: |
| 856 NullCallWrapper() { } | 857 NullCallWrapper() { } |
| 857 virtual ~NullCallWrapper() { } | 858 virtual ~NullCallWrapper() { } |
| 858 virtual void BeforeCall(int call_size) const { } | 859 virtual void BeforeCall(int call_size) const { } |
| 859 virtual void AfterCall() const { } | 860 virtual void AfterCall() const { } |
| 860 }; | 861 }; |
| 861 | 862 |
| 862 } } // namespace v8::internal | 863 } } // namespace v8::internal |
| 863 | 864 |
| 864 #endif // V8_ASSEMBLER_H_ | 865 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |