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

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

Issue 2284313003: Separate CompilationInfo into its own file. (Closed)
Patch Set: fix Created 4 years, 3 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/full-codegen/x87/full-codegen-x87.cc ('k') | src/ic/ic-inl.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 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 #include "src/gdb-jit.h" 5 #include "src/gdb-jit.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "src/base/bits.h" 9 #include "src/base/bits.h"
10 #include "src/base/platform/platform.h" 10 #include "src/base/platform/platform.h"
11 #include "src/bootstrapper.h" 11 #include "src/bootstrapper.h"
12 #include "src/compiler.h"
13 #include "src/frames-inl.h" 12 #include "src/frames-inl.h"
14 #include "src/frames.h" 13 #include "src/frames.h"
15 #include "src/global-handles.h" 14 #include "src/global-handles.h"
16 #include "src/messages.h" 15 #include "src/messages.h"
17 #include "src/objects.h" 16 #include "src/objects.h"
18 #include "src/ostreams.h" 17 #include "src/ostreams.h"
19 #include "src/snapshot/natives.h" 18 #include "src/snapshot/natives.h"
20 #include "src/splay-tree-inl.h" 19 #include "src/splay-tree-inl.h"
21 20
22 namespace v8 { 21 namespace v8 {
(...skipping 2191 matching lines...) Expand 10 before | Expand all | Expand 10 after
2214 LineInfo* line_info = reinterpret_cast<LineInfo*>(event->user_data); 2213 LineInfo* line_info = reinterpret_cast<LineInfo*>(event->user_data);
2215 PutLineInfo(reinterpret_cast<Address>(event->code_start), line_info); 2214 PutLineInfo(reinterpret_cast<Address>(event->code_start), line_info);
2216 break; 2215 break;
2217 } 2216 }
2218 } 2217 }
2219 } 2218 }
2220 #endif 2219 #endif
2221 } // namespace GDBJITInterface 2220 } // namespace GDBJITInterface
2222 } // namespace internal 2221 } // namespace internal
2223 } // namespace v8 2222 } // namespace v8
OLDNEW
« no previous file with comments | « src/full-codegen/x87/full-codegen-x87.cc ('k') | src/ic/ic-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698