Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: src/assembler.h

Issue 18173013: AllocationSite objects weakly linked for traversal (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed final nits Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/assembler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 729 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 static ExternalReference log_enter_external_function(Isolate* isolate); 740 static ExternalReference log_enter_external_function(Isolate* isolate);
741 static ExternalReference log_leave_external_function(Isolate* isolate); 741 static ExternalReference log_leave_external_function(Isolate* isolate);
742 742
743 // Static data in the keyed lookup cache. 743 // Static data in the keyed lookup cache.
744 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); 744 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate);
745 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); 745 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate);
746 746
747 // Static variable Heap::roots_array_start() 747 // Static variable Heap::roots_array_start()
748 static ExternalReference roots_array_start(Isolate* isolate); 748 static ExternalReference roots_array_start(Isolate* isolate);
749 749
750 // Static variable Heap::allocation_sites_list_address()
751 static ExternalReference allocation_sites_list_address(Isolate* isolate);
752
750 // Static variable StackGuard::address_of_jslimit() 753 // Static variable StackGuard::address_of_jslimit()
751 static ExternalReference address_of_stack_limit(Isolate* isolate); 754 static ExternalReference address_of_stack_limit(Isolate* isolate);
752 755
753 // Static variable StackGuard::address_of_real_jslimit() 756 // Static variable StackGuard::address_of_real_jslimit()
754 static ExternalReference address_of_real_stack_limit(Isolate* isolate); 757 static ExternalReference address_of_real_stack_limit(Isolate* isolate);
755 758
756 // Static variable RegExpStack::limit_address() 759 // Static variable RegExpStack::limit_address()
757 static ExternalReference address_of_regexp_stack_limit(Isolate* isolate); 760 static ExternalReference address_of_regexp_stack_limit(Isolate* isolate);
758 761
759 // Static variables for RegExp. 762 // Static variables for RegExp.
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
1059 public: 1062 public:
1060 NullCallWrapper() { } 1063 NullCallWrapper() { }
1061 virtual ~NullCallWrapper() { } 1064 virtual ~NullCallWrapper() { }
1062 virtual void BeforeCall(int call_size) const { } 1065 virtual void BeforeCall(int call_size) const { }
1063 virtual void AfterCall() const { } 1066 virtual void AfterCall() const { }
1064 }; 1067 };
1065 1068
1066 } } // namespace v8::internal 1069 } } // namespace v8::internal
1067 1070
1068 #endif // V8_ASSEMBLER_H_ 1071 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698