OLD | NEW |
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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 int Heap::old_gen_promotion_limit_ = kMinimumPromotionLimit; | 72 int Heap::old_gen_promotion_limit_ = kMinimumPromotionLimit; |
73 int Heap::old_gen_allocation_limit_ = kMinimumAllocationLimit; | 73 int Heap::old_gen_allocation_limit_ = kMinimumAllocationLimit; |
74 | 74 |
75 int Heap::old_gen_exhausted_ = false; | 75 int Heap::old_gen_exhausted_ = false; |
76 | 76 |
77 int Heap::amount_of_external_allocated_memory_ = 0; | 77 int Heap::amount_of_external_allocated_memory_ = 0; |
78 int Heap::amount_of_external_allocated_memory_at_last_global_gc_ = 0; | 78 int Heap::amount_of_external_allocated_memory_at_last_global_gc_ = 0; |
79 | 79 |
80 // semispace_size_ should be a power of 2 and old_generation_size_ should be | 80 // semispace_size_ should be a power of 2 and old_generation_size_ should be |
81 // a multiple of Page::kPageSize. | 81 // a multiple of Page::kPageSize. |
82 #if V8_HOST_ARCH_ARM | 82 #if V8_TARGET_ARCH_ARM |
83 int Heap::semispace_size_ = 512*KB; | 83 int Heap::semispace_size_ = 512*KB; |
84 int Heap::old_generation_size_ = 128*MB; | 84 int Heap::old_generation_size_ = 128*MB; |
85 int Heap::initial_semispace_size_ = 128*KB; | 85 int Heap::initial_semispace_size_ = 128*KB; |
86 #else | 86 #else |
87 int Heap::semispace_size_ = 8*MB; | 87 int Heap::semispace_size_ = 8*MB; |
88 int Heap::old_generation_size_ = 512*MB; | 88 int Heap::old_generation_size_ = 512*MB; |
89 int Heap::initial_semispace_size_ = 512*KB; | 89 int Heap::initial_semispace_size_ = 512*KB; |
90 #endif | 90 #endif |
91 | 91 |
92 GCCallback Heap::global_gc_prologue_callback_ = NULL; | 92 GCCallback Heap::global_gc_prologue_callback_ = NULL; |
(...skipping 3572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3665 #ifdef DEBUG | 3665 #ifdef DEBUG |
3666 bool Heap::GarbageCollectionGreedyCheck() { | 3666 bool Heap::GarbageCollectionGreedyCheck() { |
3667 ASSERT(FLAG_gc_greedy); | 3667 ASSERT(FLAG_gc_greedy); |
3668 if (Bootstrapper::IsActive()) return true; | 3668 if (Bootstrapper::IsActive()) return true; |
3669 if (disallow_allocation_failure()) return true; | 3669 if (disallow_allocation_failure()) return true; |
3670 return CollectGarbage(0, NEW_SPACE); | 3670 return CollectGarbage(0, NEW_SPACE); |
3671 } | 3671 } |
3672 #endif | 3672 #endif |
3673 | 3673 |
3674 } } // namespace v8::internal | 3674 } } // namespace v8::internal |
OLD | NEW |