| Index: src/isolate.cc
|
| diff --git a/src/isolate.cc b/src/isolate.cc
|
| index 653ff2ef79d4593b3de0e1da7bdbc3e9708cdc93..b70dd68632e4eb38473e9b0d2a5742ef3f55c2f3 100644
|
| --- a/src/isolate.cc
|
| +++ b/src/isolate.cc
|
| @@ -522,7 +522,7 @@ void Isolate::IterateDeferredHandles(ObjectVisitor* visitor) {
|
| #ifdef DEBUG
|
| bool Isolate::IsDeferredHandle(Object** handle) {
|
| // Each DeferredHandles instance keeps the handles to one job in the
|
| - // parallel recompilation queue, containing a list of blocks. Each block
|
| + // concurrent recompilation queue, containing a list of blocks. Each block
|
| // contains kHandleBlockSize handles except for the first block, which may
|
| // not be fully filled.
|
| // We iterate through all the blocks to see whether the argument handle
|
| @@ -1886,7 +1886,7 @@ void Isolate::Deinit() {
|
| debugger()->UnloadDebugger();
|
| #endif
|
|
|
| - if (FLAG_parallel_recompilation) optimizing_compiler_thread_.Stop();
|
| + if (FLAG_concurrent_recompilation) optimizing_compiler_thread_.Stop();
|
|
|
| if (FLAG_sweeper_threads > 0) {
|
| for (int i = 0; i < FLAG_sweeper_threads; i++) {
|
| @@ -2331,7 +2331,7 @@ bool Isolate::Init(Deserializer* des) {
|
| InternalArrayConstructorStubBase::InstallDescriptors(this);
|
| }
|
|
|
| - if (FLAG_parallel_recompilation) optimizing_compiler_thread_.Start();
|
| + if (FLAG_concurrent_recompilation) optimizing_compiler_thread_.Start();
|
|
|
| if (FLAG_marking_threads > 0) {
|
| marking_thread_ = new MarkingThread*[FLAG_marking_threads];
|
|
|