| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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/debug/debug.h" | 5 #include "src/debug/debug.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "src/api.h" | 9 #include "src/api.h" |
| 10 #include "src/arguments.h" | 10 #include "src/arguments.h" |
| 11 #include "src/bootstrapper.h" | 11 #include "src/bootstrapper.h" |
| 12 #include "src/code-stubs.h" | 12 #include "src/code-stubs.h" |
| 13 #include "src/codegen.h" | 13 #include "src/codegen.h" |
| 14 #include "src/compilation-cache.h" | 14 #include "src/compilation-cache.h" |
| 15 #include "src/compiler-dispatcher/optimizing-compile-dispatcher.h" |
| 15 #include "src/compiler.h" | 16 #include "src/compiler.h" |
| 16 #include "src/deoptimizer.h" | 17 #include "src/deoptimizer.h" |
| 17 #include "src/execution.h" | 18 #include "src/execution.h" |
| 18 #include "src/frames-inl.h" | 19 #include "src/frames-inl.h" |
| 19 #include "src/full-codegen/full-codegen.h" | 20 #include "src/full-codegen/full-codegen.h" |
| 20 #include "src/global-handles.h" | 21 #include "src/global-handles.h" |
| 21 #include "src/globals.h" | 22 #include "src/globals.h" |
| 22 #include "src/interpreter/interpreter.h" | 23 #include "src/interpreter/interpreter.h" |
| 23 #include "src/isolate-inl.h" | 24 #include "src/isolate-inl.h" |
| 24 #include "src/list.h" | 25 #include "src/list.h" |
| (...skipping 2540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2565 } | 2566 } |
| 2566 | 2567 |
| 2567 | 2568 |
| 2568 void LockingCommandMessageQueue::Clear() { | 2569 void LockingCommandMessageQueue::Clear() { |
| 2569 base::LockGuard<base::Mutex> lock_guard(&mutex_); | 2570 base::LockGuard<base::Mutex> lock_guard(&mutex_); |
| 2570 queue_.Clear(); | 2571 queue_.Clear(); |
| 2571 } | 2572 } |
| 2572 | 2573 |
| 2573 } // namespace internal | 2574 } // namespace internal |
| 2574 } // namespace v8 | 2575 } // namespace v8 |
| OLD | NEW |