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

Side by Side Diff: src/gdb-jit.cc

Issue 333013002: Check alpha-sorting of includes during presubmit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « src/gdb-jit.h ('k') | src/heap.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 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
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
OLDNEW
« no previous file with comments | « src/gdb-jit.h ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698