| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 static MicrotaskQueue& microtaskQueue() | 41 static MicrotaskQueue& microtaskQueue() |
| 42 { | 42 { |
| 43 DEFINE_STATIC_LOCAL(MicrotaskQueue, microtaskQueue, ()); | 43 DEFINE_STATIC_LOCAL(MicrotaskQueue, microtaskQueue, ()); |
| 44 return microtaskQueue; | 44 return microtaskQueue; |
| 45 } | 45 } |
| 46 | 46 |
| 47 void Microtask::performCheckpoint() | 47 void Microtask::performCheckpoint() |
| 48 { | 48 { |
| 49 V8PerIsolateData* isolateData = V8PerIsolateData::current(); | 49 V8PerIsolateData* isolateData = V8PerIsolateData::current(); |
| 50 ASSERT(isolateData); | 50 ASSERT(isolateData); |
| 51 if (isolateData->performingMicrotaskCheckpoint()) | 51 if (isolateData->recursionLevel() || isolateData->performingMicrotaskCheckpo
int()) |
| 52 return; | 52 return; |
| 53 isolateData->setPerformingMicrotaskCheckpoint(true); | 53 isolateData->setPerformingMicrotaskCheckpoint(true); |
| 54 | 54 |
| 55 while (!microtaskQueue().isEmpty()) { | 55 while (!microtaskQueue().isEmpty()) { |
| 56 Vector<MicrotaskCallback> microtasks; | 56 Vector<MicrotaskCallback> microtasks; |
| 57 microtasks.swap(microtaskQueue()); | 57 microtasks.swap(microtaskQueue()); |
| 58 for (size_t i = 0; i < microtasks.size(); ++i) { | 58 for (size_t i = 0; i < microtasks.size(); ++i) { |
| 59 microtasks[i](); | 59 microtasks[i](); |
| 60 } | 60 } |
| 61 } | 61 } |
| 62 | 62 |
| 63 isolateData->setPerformingMicrotaskCheckpoint(false); | 63 isolateData->setPerformingMicrotaskCheckpoint(false); |
| 64 } | 64 } |
| 65 | 65 |
| 66 void Microtask::enqueueMicrotask(MicrotaskCallback callback) | 66 void Microtask::enqueueMicrotask(MicrotaskCallback callback) |
| 67 { | 67 { |
| 68 microtaskQueue().append(callback); | 68 microtaskQueue().append(callback); |
| 69 } | 69 } |
| 70 | 70 |
| 71 } // namespace WebCore | 71 } // namespace WebCore |
| OLD | NEW |