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

Side by Side Diff: src/assembler.cc

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/assembler.h ('k') | src/code-stubs-hydrogen.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 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after
1118 return ExternalReference( 1118 return ExternalReference(
1119 isolate->keyed_lookup_cache()->field_offsets_address()); 1119 isolate->keyed_lookup_cache()->field_offsets_address());
1120 } 1120 }
1121 1121
1122 1122
1123 ExternalReference ExternalReference::roots_array_start(Isolate* isolate) { 1123 ExternalReference ExternalReference::roots_array_start(Isolate* isolate) {
1124 return ExternalReference(isolate->heap()->roots_array_start()); 1124 return ExternalReference(isolate->heap()->roots_array_start());
1125 } 1125 }
1126 1126
1127 1127
1128 ExternalReference ExternalReference::allocation_sites_list_address(
1129 Isolate* isolate) {
1130 return ExternalReference(isolate->heap()->allocation_sites_list_address());
1131 }
1132
1133
1128 ExternalReference ExternalReference::address_of_stack_limit(Isolate* isolate) { 1134 ExternalReference ExternalReference::address_of_stack_limit(Isolate* isolate) {
1129 return ExternalReference(isolate->stack_guard()->address_of_jslimit()); 1135 return ExternalReference(isolate->stack_guard()->address_of_jslimit());
1130 } 1136 }
1131 1137
1132 1138
1133 ExternalReference ExternalReference::address_of_real_stack_limit( 1139 ExternalReference ExternalReference::address_of_real_stack_limit(
1134 Isolate* isolate) { 1140 Isolate* isolate) {
1135 return ExternalReference(isolate->stack_guard()->address_of_real_jslimit()); 1141 return ExternalReference(isolate->stack_guard()->address_of_real_jslimit());
1136 } 1142 }
1137 1143
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
1666 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); 1672 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position);
1667 state_.written_position = state_.current_position; 1673 state_.written_position = state_.current_position;
1668 written = true; 1674 written = true;
1669 } 1675 }
1670 1676
1671 // Return whether something was written. 1677 // Return whether something was written.
1672 return written; 1678 return written;
1673 } 1679 }
1674 1680
1675 } } // namespace v8::internal 1681 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/assembler.h ('k') | src/code-stubs-hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698