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

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

Issue 304153016: Use full include paths everywhere (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/func-name-inferrer.cc ('k') | src/gdb-jit.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 #ifndef V8_GDB_JIT_H_ 5 #ifndef V8_GDB_JIT_H_
6 #define V8_GDB_JIT_H_ 6 #define V8_GDB_JIT_H_
7 7
8 #include "allocation.h" 8 #include "src/allocation.h"
9 9
10 // 10 //
11 // Basic implementation of GDB JIT Interface client. 11 // Basic implementation of GDB JIT Interface client.
12 // GBD JIT Interface is supported in GDB 7.0 and above. 12 // GBD JIT Interface is supported in GDB 7.0 and above.
13 // Currently on x64 and ia32 architectures and Linux OS are supported. 13 // Currently on x64 and ia32 architectures and Linux OS are supported.
14 // 14 //
15 15
16 #ifdef ENABLE_GDB_JIT_INTERFACE 16 #ifdef ENABLE_GDB_JIT_INTERFACE
17 #include "v8.h" 17 #include "src/v8.h"
18 #include "factory.h" 18 #include "src/factory.h"
19 19
20 namespace v8 { 20 namespace v8 {
21 namespace internal { 21 namespace internal {
22 22
23 class CompilationInfo; 23 class CompilationInfo;
24 24
25 #define CODE_TAGS_LIST(V) \ 25 #define CODE_TAGS_LIST(V) \
26 V(LOAD_IC) \ 26 V(LOAD_IC) \
27 V(KEYED_LOAD_IC) \ 27 V(KEYED_LOAD_IC) \
28 V(STORE_IC) \ 28 V(STORE_IC) \
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 }; 108 };
109 109
110 #define GDBJIT(action) GDBJITInterface::action 110 #define GDBJIT(action) GDBJITInterface::action
111 111
112 } } // namespace v8::internal 112 } } // namespace v8::internal
113 #else 113 #else
114 #define GDBJIT(action) ((void) 0) 114 #define GDBJIT(action) ((void) 0)
115 #endif 115 #endif
116 116
117 #endif 117 #endif
OLDNEW
« no previous file with comments | « src/func-name-inferrer.cc ('k') | src/gdb-jit.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698