OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/futex-emulation.h" | 5 #include "src/runtime/runtime-utils.h" |
6 | |
7 #include "src/v8.h" | |
8 | 6 |
9 #include "src/arguments.h" | 7 #include "src/arguments.h" |
10 #include "src/base/platform/time.h" | 8 #include "src/base/platform/time.h" |
| 9 #include "src/conversions-inl.h" |
| 10 #include "src/futex-emulation.h" |
11 #include "src/globals.h" | 11 #include "src/globals.h" |
12 #include "src/runtime/runtime-utils.h" | |
13 | 12 |
14 // Implement Futex API for SharedArrayBuffers as defined in the | 13 // Implement Futex API for SharedArrayBuffers as defined in the |
15 // SharedArrayBuffer draft spec, found here: | 14 // SharedArrayBuffer draft spec, found here: |
16 // https://github.com/lars-t-hansen/ecmascript_sharedmem | 15 // https://github.com/lars-t-hansen/ecmascript_sharedmem |
17 | 16 |
18 namespace v8 { | 17 namespace v8 { |
19 namespace internal { | 18 namespace internal { |
20 | 19 |
21 RUNTIME_FUNCTION(Runtime_AtomicsFutexWait) { | 20 RUNTIME_FUNCTION(Runtime_AtomicsFutexWait) { |
22 HandleScope scope(isolate); | 21 HandleScope scope(isolate); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 RUNTIME_ASSERT(index < NumberToSize(isolate, sta->length())); | 84 RUNTIME_ASSERT(index < NumberToSize(isolate, sta->length())); |
86 RUNTIME_ASSERT(sta->type() == kExternalInt32Array); | 85 RUNTIME_ASSERT(sta->type() == kExternalInt32Array); |
87 | 86 |
88 Handle<JSArrayBuffer> array_buffer = sta->GetBuffer(); | 87 Handle<JSArrayBuffer> array_buffer = sta->GetBuffer(); |
89 size_t addr = index << 2; | 88 size_t addr = index << 2; |
90 | 89 |
91 return FutexEmulation::NumWaitersForTesting(isolate, array_buffer, addr); | 90 return FutexEmulation::NumWaitersForTesting(isolate, array_buffer, addr); |
92 } | 91 } |
93 } | 92 } |
94 } // namespace v8::internal | 93 } // namespace v8::internal |
OLD | NEW |