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

Side by Side Diff: src/heap.cc

Issue 200059: Increase max semi-space size. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 3 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 int Heap::amount_of_external_allocated_memory_ = 0; 70 int Heap::amount_of_external_allocated_memory_ = 0;
71 int Heap::amount_of_external_allocated_memory_at_last_global_gc_ = 0; 71 int Heap::amount_of_external_allocated_memory_at_last_global_gc_ = 0;
72 72
73 // semispace_size_ should be a power of 2 and old_generation_size_ should be 73 // semispace_size_ should be a power of 2 and old_generation_size_ should be
74 // a multiple of Page::kPageSize. 74 // a multiple of Page::kPageSize.
75 #if defined(ANDROID) 75 #if defined(ANDROID)
76 int Heap::semispace_size_ = 512*KB; 76 int Heap::semispace_size_ = 512*KB;
77 int Heap::old_generation_size_ = 128*MB; 77 int Heap::old_generation_size_ = 128*MB;
78 int Heap::initial_semispace_size_ = 128*KB; 78 int Heap::initial_semispace_size_ = 128*KB;
79 #elif defined(V8_TARGET_ARCH_X64) 79 #elif defined(V8_TARGET_ARCH_X64)
80 int Heap::semispace_size_ = 8*MB; 80 int Heap::semispace_size_ = 16*MB;
81 int Heap::old_generation_size_ = 1*GB; 81 int Heap::old_generation_size_ = 1*GB;
82 int Heap::initial_semispace_size_ = 1*MB; 82 int Heap::initial_semispace_size_ = 1*MB;
83 #else 83 #else
84 int Heap::semispace_size_ = 4*MB; 84 int Heap::semispace_size_ = 8*MB;
85 int Heap::old_generation_size_ = 512*MB; 85 int Heap::old_generation_size_ = 512*MB;
86 int Heap::initial_semispace_size_ = 512*KB; 86 int Heap::initial_semispace_size_ = 512*KB;
87 #endif 87 #endif
88 88
89 GCCallback Heap::global_gc_prologue_callback_ = NULL; 89 GCCallback Heap::global_gc_prologue_callback_ = NULL;
90 GCCallback Heap::global_gc_epilogue_callback_ = NULL; 90 GCCallback Heap::global_gc_epilogue_callback_ = NULL;
91 91
92 // Variables set based on semispace_size_ and old_generation_size_ in 92 // Variables set based on semispace_size_ and old_generation_size_ in
93 // ConfigureHeap. 93 // ConfigureHeap.
94 int Heap::young_generation_size_ = 0; // Will be 2 * semispace_size_. 94 int Heap::young_generation_size_ = 0; // Will be 2 * semispace_size_.
(...skipping 3903 matching lines...) Expand 10 before | Expand all | Expand 10 after
3998 for (int i = 0; i < kNumberOfCaches; i++) { 3998 for (int i = 0; i < kNumberOfCaches; i++) {
3999 if (caches_[i] != NULL) { 3999 if (caches_[i] != NULL) {
4000 delete caches_[i]; 4000 delete caches_[i];
4001 caches_[i] = NULL; 4001 caches_[i] = NULL;
4002 } 4002 }
4003 } 4003 }
4004 } 4004 }
4005 4005
4006 4006
4007 } } // namespace v8::internal 4007 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698