Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Side by Side Diff: src/runtime/runtime-futex.cc

Issue 1293053004: Remove grab-bag includes of v8.h from runtime entries. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/runtime/runtime-function.cc ('k') | src/runtime/runtime-generator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/runtime/runtime-function.cc ('k') | src/runtime/runtime-generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698