OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
352 } else { | 352 } else { |
353 TRACE_EVENT_END0("v8", name); | 353 TRACE_EVENT_END0("v8", name); |
354 } | 354 } |
355 } | 355 } |
356 | 356 |
357 static void initializeV8Common(v8::Isolate* isolate) | 357 static void initializeV8Common(v8::Isolate* isolate) |
358 { | 358 { |
359 v8::V8::AddGCPrologueCallback(V8GCController::gcPrologue); | 359 v8::V8::AddGCPrologueCallback(V8GCController::gcPrologue); |
360 v8::V8::AddGCEpilogueCallback(V8GCController::gcEpilogue); | 360 v8::V8::AddGCEpilogueCallback(V8GCController::gcEpilogue); |
361 | 361 |
362 if (RuntimeEnabledFeatures::sharedArrayBufferEnabled()) { | |
363 static const char kSharedArrayBuffer[] = "--harmony-sharedarraybuffer"; | |
364 v8::V8::SetFlagsFromString(kSharedArrayBuffer, sizeof(kSharedArrayBuffer )); | |
jochen (gone - plz use gerrit)
2015/07/10 09:07:40
we should first land this once shared array buffer
binji
2015/07/10 18:34:46
Sorry, I don't understand. Is it dangerous to add
| |
365 } | |
366 | |
362 v8::Debug::SetLiveEditEnabled(isolate, false); | 367 v8::Debug::SetLiveEditEnabled(isolate, false); |
363 | 368 |
364 isolate->SetAutorunMicrotasks(false); | 369 isolate->SetAutorunMicrotasks(false); |
365 } | 370 } |
366 | 371 |
367 namespace { | 372 namespace { |
368 | 373 |
369 class ArrayBufferAllocator : public v8::ArrayBuffer::Allocator { | 374 class ArrayBufferAllocator : public v8::ArrayBuffer::Allocator { |
370 virtual void* Allocate(size_t size) override | 375 virtual void* Allocate(size_t size) override |
371 { | 376 { |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
474 | 479 |
475 v8::V8::AddMessageListener(messageHandlerInWorker); | 480 v8::V8::AddMessageListener(messageHandlerInWorker); |
476 v8::V8::SetFatalErrorHandler(reportFatalErrorInWorker); | 481 v8::V8::SetFatalErrorHandler(reportFatalErrorInWorker); |
477 | 482 |
478 uint32_t here; | 483 uint32_t here; |
479 isolate->SetStackLimit(reinterpret_cast<uintptr_t>(&here - kWorkerMaxStackSi ze / sizeof(uint32_t*))); | 484 isolate->SetStackLimit(reinterpret_cast<uintptr_t>(&here - kWorkerMaxStackSi ze / sizeof(uint32_t*))); |
480 isolate->SetPromiseRejectCallback(promiseRejectHandlerInWorker); | 485 isolate->SetPromiseRejectCallback(promiseRejectHandlerInWorker); |
481 } | 486 } |
482 | 487 |
483 } // namespace blink | 488 } // namespace blink |
OLD | NEW |