| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 #ifdef ENABLE_GDB_JIT_INTERFACE | 5 #ifdef ENABLE_GDB_JIT_INTERFACE |
| 6 #include "src/v8.h" | 6 #include "src/v8.h" |
| 7 #include "src/gdb-jit.h" | |
| 8 | 7 |
| 9 #include "src/bootstrapper.h" | 8 #include "src/bootstrapper.h" |
| 10 #include "src/compiler.h" | 9 #include "src/compiler.h" |
| 10 #include "src/frames-inl.h" |
| 11 #include "src/frames.h" | 11 #include "src/frames.h" |
| 12 #include "src/frames-inl.h" | 12 #include "src/gdb-jit.h" |
| 13 #include "src/global-handles.h" | 13 #include "src/global-handles.h" |
| 14 #include "src/messages.h" | 14 #include "src/messages.h" |
| 15 #include "src/natives.h" | 15 #include "src/natives.h" |
| 16 #include "src/platform.h" | 16 #include "src/platform.h" |
| 17 #include "src/scopes.h" | 17 #include "src/scopes.h" |
| 18 | 18 |
| 19 namespace v8 { | 19 namespace v8 { |
| 20 namespace internal { | 20 namespace internal { |
| 21 | 21 |
| 22 #ifdef __APPLE__ | 22 #ifdef __APPLE__ |
| (...skipping 2144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2167 LockGuard<Mutex> lock_guard(mutex.Pointer()); | 2167 LockGuard<Mutex> lock_guard(mutex.Pointer()); |
| 2168 ASSERT(!IsLineInfoTagged(line_info)); | 2168 ASSERT(!IsLineInfoTagged(line_info)); |
| 2169 HashMap::Entry* e = GetEntries()->Lookup(code, HashForCodeObject(code), true); | 2169 HashMap::Entry* e = GetEntries()->Lookup(code, HashForCodeObject(code), true); |
| 2170 ASSERT(e->value == NULL); | 2170 ASSERT(e->value == NULL); |
| 2171 e->value = TagLineInfo(line_info); | 2171 e->value = TagLineInfo(line_info); |
| 2172 } | 2172 } |
| 2173 | 2173 |
| 2174 | 2174 |
| 2175 } } // namespace v8::internal | 2175 } } // namespace v8::internal |
| 2176 #endif | 2176 #endif |
| OLD | NEW |