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

Side by Side Diff: src/heap.cc

Issue 9701025: Merged r11042 into 3.8 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.8
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/version.cc » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_(Page::kPageSize), 83 initial_semispace_size_(Page::kPageSize),
84 max_old_generation_size_(700ul * LUMP_OF_MEMORY), 84 max_old_generation_size_(700ul * LUMP_OF_MEMORY),
85 max_executable_size_(128l * LUMP_OF_MEMORY), 85 max_executable_size_(256l * 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 6646 matching lines...) Expand 10 before | Expand all | Expand 10 after
6742 isolate_->heap()->store_buffer()->Compact(); 6742 isolate_->heap()->store_buffer()->Compact();
6743 isolate_->heap()->store_buffer()->Filter(MemoryChunk::ABOUT_TO_BE_FREED); 6743 isolate_->heap()->store_buffer()->Filter(MemoryChunk::ABOUT_TO_BE_FREED);
6744 for (chunk = chunks_queued_for_free_; chunk != NULL; chunk = next) { 6744 for (chunk = chunks_queued_for_free_; chunk != NULL; chunk = next) {
6745 next = chunk->next_chunk(); 6745 next = chunk->next_chunk();
6746 isolate_->memory_allocator()->Free(chunk); 6746 isolate_->memory_allocator()->Free(chunk);
6747 } 6747 }
6748 chunks_queued_for_free_ = NULL; 6748 chunks_queued_for_free_ = NULL;
6749 } 6749 }
6750 6750
6751 } } // namespace v8::internal 6751 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698