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

Unified Diff: src/assembler.cc

Issue 1012023002: Merge old data and pointer space. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/assembler.h ('k') | src/counters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler.cc
diff --git a/src/assembler.cc b/src/assembler.cc
index 6e9f3f2f2c6be38ba7df36ebe0259a6842b4a595..3494f697a771ad7f533660db76cb42310ebe9510 100644
--- a/src/assembler.cc
+++ b/src/assembler.cc
@@ -1209,31 +1209,15 @@ ExternalReference ExternalReference::new_space_allocation_limit_address(
}
-ExternalReference ExternalReference::old_pointer_space_allocation_top_address(
+ExternalReference ExternalReference::old_space_allocation_top_address(
Isolate* isolate) {
- return ExternalReference(
- isolate->heap()->OldPointerSpaceAllocationTopAddress());
-}
-
-
-ExternalReference ExternalReference::old_pointer_space_allocation_limit_address(
- Isolate* isolate) {
- return ExternalReference(
- isolate->heap()->OldPointerSpaceAllocationLimitAddress());
+ return ExternalReference(isolate->heap()->OldSpaceAllocationTopAddress());
}
-ExternalReference ExternalReference::old_data_space_allocation_top_address(
+ExternalReference ExternalReference::old_space_allocation_limit_address(
Isolate* isolate) {
- return ExternalReference(
- isolate->heap()->OldDataSpaceAllocationTopAddress());
-}
-
-
-ExternalReference ExternalReference::old_data_space_allocation_limit_address(
- Isolate* isolate) {
- return ExternalReference(
- isolate->heap()->OldDataSpaceAllocationLimitAddress());
+ return ExternalReference(isolate->heap()->OldSpaceAllocationLimitAddress());
}
« no previous file with comments | « src/assembler.h ('k') | src/counters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698