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 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
589 // Static data in the keyed lookup cache. | 589 // Static data in the keyed lookup cache. |
590 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); | 590 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); |
591 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); | 591 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); |
592 | 592 |
593 // Static variable Factory::the_hole_value.location() | 593 // Static variable Factory::the_hole_value.location() |
594 static ExternalReference the_hole_value_location(Isolate* isolate); | 594 static ExternalReference the_hole_value_location(Isolate* isolate); |
595 | 595 |
596 // Static variable Factory::arguments_marker.location() | 596 // Static variable Factory::arguments_marker.location() |
597 static ExternalReference arguments_marker_location(Isolate* isolate); | 597 static ExternalReference arguments_marker_location(Isolate* isolate); |
598 | 598 |
| 599 // Static variable Factory::frame_alignment_marker.location() |
| 600 static ExternalReference frame_alignment_marker_location(Isolate* isolate); |
| 601 |
599 // Static variable Heap::roots_address() | 602 // Static variable Heap::roots_address() |
600 static ExternalReference roots_address(Isolate* isolate); | 603 static ExternalReference roots_address(Isolate* isolate); |
601 | 604 |
602 // Static variable StackGuard::address_of_jslimit() | 605 // Static variable StackGuard::address_of_jslimit() |
603 static ExternalReference address_of_stack_limit(Isolate* isolate); | 606 static ExternalReference address_of_stack_limit(Isolate* isolate); |
604 | 607 |
605 // Static variable StackGuard::address_of_real_jslimit() | 608 // Static variable StackGuard::address_of_real_jslimit() |
606 static ExternalReference address_of_real_stack_limit(Isolate* isolate); | 609 static ExternalReference address_of_real_stack_limit(Isolate* isolate); |
607 | 610 |
608 // Static variable RegExpStack::limit_address() | 611 // Static variable RegExpStack::limit_address() |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
872 public: | 875 public: |
873 NullCallWrapper() { } | 876 NullCallWrapper() { } |
874 virtual ~NullCallWrapper() { } | 877 virtual ~NullCallWrapper() { } |
875 virtual void BeforeCall(int call_size) const { } | 878 virtual void BeforeCall(int call_size) const { } |
876 virtual void AfterCall() const { } | 879 virtual void AfterCall() const { } |
877 }; | 880 }; |
878 | 881 |
879 } } // namespace v8::internal | 882 } } // namespace v8::internal |
880 | 883 |
881 #endif // V8_ASSEMBLER_H_ | 884 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |