| 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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 static ExternalReference perform_gc_function(Isolate* isolate); | 583 static ExternalReference perform_gc_function(Isolate* isolate); |
| 584 static ExternalReference fill_heap_number_with_random_function( | 584 static ExternalReference fill_heap_number_with_random_function( |
| 585 Isolate* isolate); | 585 Isolate* isolate); |
| 586 static ExternalReference random_uint32_function(Isolate* isolate); | 586 static ExternalReference random_uint32_function(Isolate* isolate); |
| 587 static ExternalReference transcendental_cache_array_address(Isolate* isolate); | 587 static ExternalReference transcendental_cache_array_address(Isolate* isolate); |
| 588 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); | 588 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); |
| 589 | 589 |
| 590 // Deoptimization support. | 590 // Deoptimization support. |
| 591 static ExternalReference new_deoptimizer_function(Isolate* isolate); | 591 static ExternalReference new_deoptimizer_function(Isolate* isolate); |
| 592 static ExternalReference compute_output_frames_function(Isolate* isolate); | 592 static ExternalReference compute_output_frames_function(Isolate* isolate); |
| 593 static ExternalReference global_contexts_list(Isolate* isolate); | |
| 594 | 593 |
| 595 // Static data in the keyed lookup cache. | 594 // Static data in the keyed lookup cache. |
| 596 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); | 595 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); |
| 597 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); | 596 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); |
| 598 | 597 |
| 599 // Static variable Heap::roots_array_start() | 598 // Static variable Heap::roots_array_start() |
| 600 static ExternalReference roots_array_start(Isolate* isolate); | 599 static ExternalReference roots_array_start(Isolate* isolate); |
| 601 | 600 |
| 602 // Static variable StackGuard::address_of_jslimit() | 601 // Static variable StackGuard::address_of_jslimit() |
| 603 static ExternalReference address_of_stack_limit(Isolate* isolate); | 602 static ExternalReference address_of_stack_limit(Isolate* isolate); |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 875 public: | 874 public: |
| 876 NullCallWrapper() { } | 875 NullCallWrapper() { } |
| 877 virtual ~NullCallWrapper() { } | 876 virtual ~NullCallWrapper() { } |
| 878 virtual void BeforeCall(int call_size) const { } | 877 virtual void BeforeCall(int call_size) const { } |
| 879 virtual void AfterCall() const { } | 878 virtual void AfterCall() const { } |
| 880 }; | 879 }; |
| 881 | 880 |
| 882 } } // namespace v8::internal | 881 } } // namespace v8::internal |
| 883 | 882 |
| 884 #endif // V8_ASSEMBLER_H_ | 883 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |