| 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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 | 654 |
| 655 static ExternalReference get_date_field_function(Isolate* isolate); | 655 static ExternalReference get_date_field_function(Isolate* isolate); |
| 656 static ExternalReference date_cache_stamp(Isolate* isolate); | 656 static ExternalReference date_cache_stamp(Isolate* isolate); |
| 657 | 657 |
| 658 static ExternalReference get_make_code_young_function(Isolate* isolate); | 658 static ExternalReference get_make_code_young_function(Isolate* isolate); |
| 659 | 659 |
| 660 // Deoptimization support. | 660 // Deoptimization support. |
| 661 static ExternalReference new_deoptimizer_function(Isolate* isolate); | 661 static ExternalReference new_deoptimizer_function(Isolate* isolate); |
| 662 static ExternalReference compute_output_frames_function(Isolate* isolate); | 662 static ExternalReference compute_output_frames_function(Isolate* isolate); |
| 663 | 663 |
| 664 // Log support. |
| 665 static ExternalReference log_enter_external_function(Isolate* isolate); |
| 666 static ExternalReference log_leave_external_function(Isolate* isolate); |
| 667 |
| 664 // Static data in the keyed lookup cache. | 668 // Static data in the keyed lookup cache. |
| 665 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); | 669 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); |
| 666 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); | 670 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); |
| 667 | 671 |
| 668 // Static variable Heap::roots_array_start() | 672 // Static variable Heap::roots_array_start() |
| 669 static ExternalReference roots_array_start(Isolate* isolate); | 673 static ExternalReference roots_array_start(Isolate* isolate); |
| 670 | 674 |
| 671 // Static variable StackGuard::address_of_jslimit() | 675 // Static variable StackGuard::address_of_jslimit() |
| 672 static ExternalReference address_of_stack_limit(Isolate* isolate); | 676 static ExternalReference address_of_stack_limit(Isolate* isolate); |
| 673 | 677 |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 952 public: | 956 public: |
| 953 NullCallWrapper() { } | 957 NullCallWrapper() { } |
| 954 virtual ~NullCallWrapper() { } | 958 virtual ~NullCallWrapper() { } |
| 955 virtual void BeforeCall(int call_size) const { } | 959 virtual void BeforeCall(int call_size) const { } |
| 956 virtual void AfterCall() const { } | 960 virtual void AfterCall() const { } |
| 957 }; | 961 }; |
| 958 | 962 |
| 959 } } // namespace v8::internal | 963 } } // namespace v8::internal |
| 960 | 964 |
| 961 #endif // V8_ASSEMBLER_H_ | 965 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |