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

Side by Side Diff: src/spaces.cc

Issue 26236004: Rollback of r17108, r17106, r17104 in trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 7 years, 2 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/objects.h ('k') | src/type-info.h » ('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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after
1049 p->InsertAfter(anchor_.prev_page()); 1049 p->InsertAfter(anchor_.prev_page());
1050 1050
1051 return true; 1051 return true;
1052 } 1052 }
1053 1053
1054 1054
1055 intptr_t PagedSpace::SizeOfFirstPage() { 1055 intptr_t PagedSpace::SizeOfFirstPage() {
1056 int size = 0; 1056 int size = 0;
1057 switch (identity()) { 1057 switch (identity()) {
1058 case OLD_POINTER_SPACE: 1058 case OLD_POINTER_SPACE:
1059 size = 72 * kPointerSize * KB; 1059 size = 64 * kPointerSize * KB;
1060 break; 1060 break;
1061 case OLD_DATA_SPACE: 1061 case OLD_DATA_SPACE:
1062 size = 192 * KB; 1062 size = 192 * KB;
1063 break; 1063 break;
1064 case MAP_SPACE: 1064 case MAP_SPACE:
1065 size = 16 * kPointerSize * KB; 1065 size = 16 * kPointerSize * KB;
1066 break; 1066 break;
1067 case CELL_SPACE: 1067 case CELL_SPACE:
1068 size = 16 * kPointerSize * KB; 1068 size = 16 * kPointerSize * KB;
1069 break; 1069 break;
1070 case PROPERTY_CELL_SPACE: 1070 case PROPERTY_CELL_SPACE:
1071 size = 8 * kPointerSize * KB; 1071 size = 8 * kPointerSize * KB;
1072 break; 1072 break;
1073 case CODE_SPACE: 1073 case CODE_SPACE:
1074 if (heap()->isolate()->code_range()->exists()) { 1074 if (heap()->isolate()->code_range()->exists()) {
1075 // When code range exists, code pages are allocated in a special way 1075 // When code range exists, code pages are allocated in a special way
1076 // (from the reserved code range). That part of the code is not yet 1076 // (from the reserved code range). That part of the code is not yet
1077 // upgraded to handle small pages. 1077 // upgraded to handle small pages.
1078 size = AreaSize(); 1078 size = AreaSize();
1079 } else { 1079 } else {
1080 #if V8_TARGET_ARCH_MIPS
1081 // On MIPS, code stubs seem to be quite a bit larger.
1082 // TODO(olivf/MIPS folks): Can we do anything about this? Does it
1083 // indicate the presence of a bug?
1084 size = 464 * KB;
1085 #else
1086 size = 416 * KB; 1080 size = 416 * KB;
1087 #endif
1088 } 1081 }
1089 break; 1082 break;
1090 default: 1083 default:
1091 UNREACHABLE(); 1084 UNREACHABLE();
1092 } 1085 }
1093 return Min(size, AreaSize()); 1086 return Min(size, AreaSize());
1094 } 1087 }
1095 1088
1096 1089
1097 int PagedSpace::CountTotalPages() { 1090 int PagedSpace::CountTotalPages() {
(...skipping 2131 matching lines...) Expand 10 before | Expand all | Expand 10 after
3229 object->ShortPrint(); 3222 object->ShortPrint();
3230 PrintF("\n"); 3223 PrintF("\n");
3231 } 3224 }
3232 printf(" --------------------------------------\n"); 3225 printf(" --------------------------------------\n");
3233 printf(" Marked: %x, LiveCount: %x\n", mark_size, LiveBytes()); 3226 printf(" Marked: %x, LiveCount: %x\n", mark_size, LiveBytes());
3234 } 3227 }
3235 3228
3236 #endif // DEBUG 3229 #endif // DEBUG
3237 3230
3238 } } // namespace v8::internal 3231 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/objects.h ('k') | src/type-info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698