OLD | NEW |
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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 #elif defined(V8_TARGET_ARCH_X64) | 74 #elif defined(V8_TARGET_ARCH_X64) |
75 #define LUMP_OF_MEMORY (2 * MB) | 75 #define LUMP_OF_MEMORY (2 * MB) |
76 code_range_size_(512*MB), | 76 code_range_size_(512*MB), |
77 #else | 77 #else |
78 #define LUMP_OF_MEMORY MB | 78 #define LUMP_OF_MEMORY MB |
79 code_range_size_(0), | 79 code_range_size_(0), |
80 #endif | 80 #endif |
81 reserved_semispace_size_(8 * Max(LUMP_OF_MEMORY, Page::kPageSize)), | 81 reserved_semispace_size_(8 * Max(LUMP_OF_MEMORY, Page::kPageSize)), |
82 max_semispace_size_(8 * Max(LUMP_OF_MEMORY, Page::kPageSize)), | 82 max_semispace_size_(8 * Max(LUMP_OF_MEMORY, Page::kPageSize)), |
83 initial_semispace_size_(Max(LUMP_OF_MEMORY, Page::kPageSize)), | 83 initial_semispace_size_(Max(LUMP_OF_MEMORY, Page::kPageSize)), |
84 max_old_generation_size_(1400ul * LUMP_OF_MEMORY), | 84 max_old_generation_size_(700ul * LUMP_OF_MEMORY), |
85 max_executable_size_(256l * LUMP_OF_MEMORY), | 85 max_executable_size_(128l * LUMP_OF_MEMORY), |
86 | 86 |
87 // Variables set based on semispace_size_ and old_generation_size_ in | 87 // Variables set based on semispace_size_ and old_generation_size_ in |
88 // ConfigureHeap (survived_since_last_expansion_, external_allocation_limit_) | 88 // ConfigureHeap (survived_since_last_expansion_, external_allocation_limit_) |
89 // Will be 4 * reserved_semispace_size_ to ensure that young | 89 // Will be 4 * reserved_semispace_size_ to ensure that young |
90 // generation can be aligned to its size. | 90 // generation can be aligned to its size. |
91 survived_since_last_expansion_(0), | 91 survived_since_last_expansion_(0), |
92 sweep_generation_(0), | 92 sweep_generation_(0), |
93 always_allocate_scope_depth_(0), | 93 always_allocate_scope_depth_(0), |
94 linear_allocation_scope_depth_(0), | 94 linear_allocation_scope_depth_(0), |
95 contexts_disposed_(0), | 95 contexts_disposed_(0), |
(...skipping 6292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6388 } | 6388 } |
6389 isolate_->heap()->store_buffer()->Filter(MemoryChunk::ABOUT_TO_BE_FREED); | 6389 isolate_->heap()->store_buffer()->Filter(MemoryChunk::ABOUT_TO_BE_FREED); |
6390 for (chunk = chunks_queued_for_free_; chunk != NULL; chunk = next) { | 6390 for (chunk = chunks_queued_for_free_; chunk != NULL; chunk = next) { |
6391 next = chunk->next_chunk(); | 6391 next = chunk->next_chunk(); |
6392 isolate_->memory_allocator()->Free(chunk); | 6392 isolate_->memory_allocator()->Free(chunk); |
6393 } | 6393 } |
6394 chunks_queued_for_free_ = NULL; | 6394 chunks_queued_for_free_ = NULL; |
6395 } | 6395 } |
6396 | 6396 |
6397 } } // namespace v8::internal | 6397 } } // namespace v8::internal |
OLD | NEW |