| 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 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 | 586 |
| 587 // Deoptimization support. | 587 // Deoptimization support. |
| 588 static ExternalReference new_deoptimizer_function(Isolate* isolate); | 588 static ExternalReference new_deoptimizer_function(Isolate* isolate); |
| 589 static ExternalReference compute_output_frames_function(Isolate* isolate); | 589 static ExternalReference compute_output_frames_function(Isolate* isolate); |
| 590 static ExternalReference global_contexts_list(Isolate* isolate); | 590 static ExternalReference global_contexts_list(Isolate* isolate); |
| 591 | 591 |
| 592 // Static data in the keyed lookup cache. | 592 // Static data in the keyed lookup cache. |
| 593 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); | 593 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); |
| 594 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); | 594 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); |
| 595 | 595 |
| 596 // Static variable Heap::roots_address() | 596 // Static variable Heap::roots_array_start() |
| 597 static ExternalReference roots_address(Isolate* isolate); | 597 static ExternalReference roots_array_start(Isolate* isolate); |
| 598 | 598 |
| 599 // Static variable StackGuard::address_of_jslimit() | 599 // Static variable StackGuard::address_of_jslimit() |
| 600 static ExternalReference address_of_stack_limit(Isolate* isolate); | 600 static ExternalReference address_of_stack_limit(Isolate* isolate); |
| 601 | 601 |
| 602 // Static variable StackGuard::address_of_real_jslimit() | 602 // Static variable StackGuard::address_of_real_jslimit() |
| 603 static ExternalReference address_of_real_stack_limit(Isolate* isolate); | 603 static ExternalReference address_of_real_stack_limit(Isolate* isolate); |
| 604 | 604 |
| 605 // Static variable RegExpStack::limit_address() | 605 // Static variable RegExpStack::limit_address() |
| 606 static ExternalReference address_of_regexp_stack_limit(Isolate* isolate); | 606 static ExternalReference address_of_regexp_stack_limit(Isolate* isolate); |
| 607 | 607 |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 869 public: | 869 public: |
| 870 NullCallWrapper() { } | 870 NullCallWrapper() { } |
| 871 virtual ~NullCallWrapper() { } | 871 virtual ~NullCallWrapper() { } |
| 872 virtual void BeforeCall(int call_size) const { } | 872 virtual void BeforeCall(int call_size) const { } |
| 873 virtual void AfterCall() const { } | 873 virtual void AfterCall() const { } |
| 874 }; | 874 }; |
| 875 | 875 |
| 876 } } // namespace v8::internal | 876 } } // namespace v8::internal |
| 877 | 877 |
| 878 #endif // V8_ASSEMBLER_H_ | 878 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |