| 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/runtime/runtime-utils.h" | 5 #include "src/runtime/runtime-utils.h" |
| 6 | 6 |
| 7 #include "src/arguments.h" | 7 #include "src/arguments.h" |
| 8 #include "src/base/platform/time.h" | 8 #include "src/base/platform/time.h" |
| 9 #include "src/conversions-inl.h" | 9 #include "src/conversions-inl.h" |
| 10 #include "src/futex-emulation.h" | 10 #include "src/futex-emulation.h" |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 CONVERT_SIZE_ARG_CHECKED(index, 1); | 82 CONVERT_SIZE_ARG_CHECKED(index, 1); |
| 83 RUNTIME_ASSERT(sta->GetBuffer()->is_shared()); | 83 RUNTIME_ASSERT(sta->GetBuffer()->is_shared()); |
| 84 RUNTIME_ASSERT(index < NumberToSize(isolate, sta->length())); | 84 RUNTIME_ASSERT(index < NumberToSize(isolate, sta->length())); |
| 85 RUNTIME_ASSERT(sta->type() == kExternalInt32Array); | 85 RUNTIME_ASSERT(sta->type() == kExternalInt32Array); |
| 86 | 86 |
| 87 Handle<JSArrayBuffer> array_buffer = sta->GetBuffer(); | 87 Handle<JSArrayBuffer> array_buffer = sta->GetBuffer(); |
| 88 size_t addr = index << 2; | 88 size_t addr = index << 2; |
| 89 | 89 |
| 90 return FutexEmulation::NumWaitersForTesting(isolate, array_buffer, addr); | 90 return FutexEmulation::NumWaitersForTesting(isolate, array_buffer, addr); |
| 91 } | 91 } |
| 92 } | 92 } // namespace internal |
| 93 } // namespace v8::internal | 93 } // namespace v8 |
| OLD | NEW |