| 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 <stdlib.h> | 5 #include <stdlib.h> |
| 6 | 6 |
| 7 #include <fstream> // NOLINT(readability/streams) | 7 #include <fstream> // NOLINT(readability/streams) |
| 8 #include <sstream> | 8 #include <sstream> |
| 9 | 9 |
| 10 #include "src/v8.h" | 10 #include "src/v8.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "src/ic/stub-cache.h" | 27 #include "src/ic/stub-cache.h" |
| 28 #include "src/isolate-inl.h" | 28 #include "src/isolate-inl.h" |
| 29 #include "src/lithium-allocator.h" | 29 #include "src/lithium-allocator.h" |
| 30 #include "src/log.h" | 30 #include "src/log.h" |
| 31 #include "src/messages.h" | 31 #include "src/messages.h" |
| 32 #include "src/prototype.h" | 32 #include "src/prototype.h" |
| 33 #include "src/regexp-stack.h" | 33 #include "src/regexp-stack.h" |
| 34 #include "src/runtime-profiler.h" | 34 #include "src/runtime-profiler.h" |
| 35 #include "src/sampler.h" | 35 #include "src/sampler.h" |
| 36 #include "src/scopeinfo.h" | 36 #include "src/scopeinfo.h" |
| 37 #include "src/serialize.h" | |
| 38 #include "src/simulator.h" | 37 #include "src/simulator.h" |
| 38 #include "src/snapshot/serialize.h" |
| 39 #include "src/version.h" | 39 #include "src/version.h" |
| 40 #include "src/vm-state-inl.h" | 40 #include "src/vm-state-inl.h" |
| 41 | 41 |
| 42 | 42 |
| 43 namespace v8 { | 43 namespace v8 { |
| 44 namespace internal { | 44 namespace internal { |
| 45 | 45 |
| 46 base::Atomic32 ThreadId::highest_thread_id_ = 0; | 46 base::Atomic32 ThreadId::highest_thread_id_ = 0; |
| 47 | 47 |
| 48 int ThreadId::AllocateThreadId() { | 48 int ThreadId::AllocateThreadId() { |
| (...skipping 2606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2655 if (prev_ && prev_->Intercept(flag)) return true; | 2655 if (prev_ && prev_->Intercept(flag)) return true; |
| 2656 // Then check whether this scope intercepts. | 2656 // Then check whether this scope intercepts. |
| 2657 if ((flag & intercept_mask_)) { | 2657 if ((flag & intercept_mask_)) { |
| 2658 intercepted_flags_ |= flag; | 2658 intercepted_flags_ |= flag; |
| 2659 return true; | 2659 return true; |
| 2660 } | 2660 } |
| 2661 return false; | 2661 return false; |
| 2662 } | 2662 } |
| 2663 | 2663 |
| 2664 } } // namespace v8::internal | 2664 } } // namespace v8::internal |
| OLD | NEW |