OLD | NEW |
---|---|
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 15 matching lines...) Expand all Loading... | |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 #include "../include/v8-defaults.h" | 28 #include "../include/v8-defaults.h" |
29 | 29 |
30 #include "platform.h" | 30 #include "platform.h" |
31 #include "globals.h" | 31 #include "globals.h" |
32 #include "v8.h" | 32 #include "v8.h" |
33 | 33 |
34 namespace v8 { | 34 namespace v8 { |
35 | 35 |
36 | |
37 #if V8_OS_ANDROID | |
38 const bool kOsHasSwap = false; | |
39 #else | |
40 const bool kOsHasSwap = true; | |
41 #endif | |
42 | |
43 | |
36 bool ConfigureResourceConstraintsForCurrentPlatform( | 44 bool ConfigureResourceConstraintsForCurrentPlatform( |
37 ResourceConstraints* constraints) { | 45 ResourceConstraints* constraints) { |
38 if (constraints == NULL) { | 46 if (constraints == NULL) { |
39 return false; | 47 return false; |
40 } | 48 } |
41 | 49 |
42 uint64_t physical_memory = i::OS::TotalPhysicalMemory(); | 50 uint64_t physical_memory = i::OS::TotalPhysicalMemory(); |
43 int lump_of_memory = (i::kPointerSize / 4) * i::MB; | 51 int lump_of_memory = (i::kPointerSize / 4) * i::MB; |
44 | 52 |
45 // The young_space_size should be a power of 2 and old_generation_size should | 53 // The young_space_size should be a power of 2 and old_generation_size should |
46 // be a multiple of Page::kPageSize. | 54 // be a multiple of Page::kPageSize. |
47 if (physical_memory > 2ul * i::GB) { | 55 if (physical_memory <= 512ul * i::MB) { |
Hannes Payer (out of office)
2013/10/02 12:59:17
This change will increase the maximum used heap si
rmcilroy
2013/10/02 13:05:56
Yes, this is intended.
| |
56 constraints->set_max_young_space_size(2 * lump_of_memory); | |
57 constraints->set_max_old_space_size(128 * lump_of_memory); | |
58 constraints->set_max_executable_size(96 * lump_of_memory); | |
59 } else if (physical_memory <= (kOsHasSwap ? 768ul * i::MB : 1ul * i::GB)) { | |
60 constraints->set_max_young_space_size(8 * lump_of_memory); | |
61 constraints->set_max_old_space_size(256 * lump_of_memory); | |
Hannes Payer (out of office)
2013/10/02 12:59:17
Same here.
rmcilroy
2013/10/02 13:05:56
Also intended. Thanks for checking!
| |
62 constraints->set_max_executable_size(192 * lump_of_memory); | |
63 } else if (physical_memory <= (kOsHasSwap ? 1ul * i::GB : 2ul * i::GB)) { | |
64 constraints->set_max_young_space_size(16 * lump_of_memory); | |
65 constraints->set_max_old_space_size(512 * lump_of_memory); | |
66 constraints->set_max_executable_size(256 * lump_of_memory); | |
67 } else { | |
48 constraints->set_max_young_space_size(16 * lump_of_memory); | 68 constraints->set_max_young_space_size(16 * lump_of_memory); |
49 constraints->set_max_old_space_size(700 * lump_of_memory); | 69 constraints->set_max_old_space_size(700 * lump_of_memory); |
50 constraints->set_max_executable_size(256 * lump_of_memory); | 70 constraints->set_max_executable_size(256 * lump_of_memory); |
51 } else if (physical_memory > 512ul * i::MB) { | |
52 constraints->set_max_young_space_size(8 * lump_of_memory); | |
53 constraints->set_max_old_space_size(192 * lump_of_memory); | |
54 constraints->set_max_executable_size(192 * lump_of_memory); | |
55 } else /* (physical_memory <= 512GB) */ { | |
56 constraints->set_max_young_space_size(2 * lump_of_memory); | |
57 constraints->set_max_old_space_size(96 * lump_of_memory); | |
58 constraints->set_max_executable_size(96 * lump_of_memory); | |
59 } | 71 } |
60 return true; | 72 return true; |
61 } | 73 } |
62 | 74 |
63 | 75 |
64 bool SetDefaultResourceConstraintsForCurrentPlatform() { | 76 bool SetDefaultResourceConstraintsForCurrentPlatform() { |
65 ResourceConstraints constraints; | 77 ResourceConstraints constraints; |
66 if (!ConfigureResourceConstraintsForCurrentPlatform(&constraints)) | 78 if (!ConfigureResourceConstraintsForCurrentPlatform(&constraints)) |
67 return false; | 79 return false; |
68 return SetResourceConstraints(&constraints); | 80 return SetResourceConstraints(&constraints); |
69 } | 81 } |
70 | 82 |
71 } // namespace v8::internal | 83 } // namespace v8 |
OLD | NEW |