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

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

Issue 1371083003: [presubmit] Enable readability/namespace linter checking. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 years, 2 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-atomics.cc ('k') | src/runtime/runtime-utils.h » ('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/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
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
OLDNEW
« no previous file with comments | « src/runtime/runtime-atomics.cc ('k') | src/runtime/runtime-utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698