| OLD | NEW |
| 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 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 incremental_marking()->IsStopped() && | 696 incremental_marking()->IsStopped() && |
| 697 incremental_marking()->WorthActivating() && | 697 incremental_marking()->WorthActivating() && |
| 698 NextGCIsLikelyToBeFull()) { | 698 NextGCIsLikelyToBeFull()) { |
| 699 incremental_marking()->Start(); | 699 incremental_marking()->Start(); |
| 700 } | 700 } |
| 701 | 701 |
| 702 return next_gc_likely_to_collect_more; | 702 return next_gc_likely_to_collect_more; |
| 703 } | 703 } |
| 704 | 704 |
| 705 | 705 |
| 706 int Heap::NotifyContextDisposed() { | |
| 707 if (FLAG_parallel_recompilation) { | |
| 708 // Flush the queued recompilation tasks. | |
| 709 isolate()->optimizing_compiler_thread()->Flush(); | |
| 710 } | |
| 711 flush_monomorphic_ics_ = true; | |
| 712 return ++contexts_disposed_; | |
| 713 } | |
| 714 | |
| 715 | |
| 716 void Heap::PerformScavenge() { | 706 void Heap::PerformScavenge() { |
| 717 GCTracer tracer(this, NULL, NULL); | 707 GCTracer tracer(this, NULL, NULL); |
| 718 if (incremental_marking()->IsStopped()) { | 708 if (incremental_marking()->IsStopped()) { |
| 719 PerformGarbageCollection(SCAVENGER, &tracer); | 709 PerformGarbageCollection(SCAVENGER, &tracer); |
| 720 } else { | 710 } else { |
| 721 PerformGarbageCollection(MARK_COMPACTOR, &tracer); | 711 PerformGarbageCollection(MARK_COMPACTOR, &tracer); |
| 722 } | 712 } |
| 723 } | 713 } |
| 724 | 714 |
| 725 | 715 |
| (...skipping 7308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8034 if (FLAG_parallel_recompilation) { | 8024 if (FLAG_parallel_recompilation) { |
| 8035 heap_->relocation_mutex_->Lock(); | 8025 heap_->relocation_mutex_->Lock(); |
| 8036 #ifdef DEBUG | 8026 #ifdef DEBUG |
| 8037 heap_->relocation_mutex_locked_by_optimizer_thread_ = | 8027 heap_->relocation_mutex_locked_by_optimizer_thread_ = |
| 8038 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread(); | 8028 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread(); |
| 8039 #endif // DEBUG | 8029 #endif // DEBUG |
| 8040 } | 8030 } |
| 8041 } | 8031 } |
| 8042 | 8032 |
| 8043 } } // namespace v8::internal | 8033 } } // namespace v8::internal |
| OLD | NEW |