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

Side by Side Diff: src/compiler.cc

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/compiler.h ('k') | src/contexts.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 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 "v8.h" 5 #include "src/v8.h"
6 6
7 #include "compiler.h" 7 #include "src/compiler.h"
8 8
9 #include "bootstrapper.h" 9 #include "src/bootstrapper.h"
10 #include "codegen.h" 10 #include "src/codegen.h"
11 #include "compilation-cache.h" 11 #include "src/compilation-cache.h"
12 #include "cpu-profiler.h" 12 #include "src/cpu-profiler.h"
13 #include "debug.h" 13 #include "src/debug.h"
14 #include "deoptimizer.h" 14 #include "src/deoptimizer.h"
15 #include "full-codegen.h" 15 #include "src/full-codegen.h"
16 #include "gdb-jit.h" 16 #include "src/gdb-jit.h"
17 #include "typing.h" 17 #include "src/typing.h"
18 #include "hydrogen.h" 18 #include "src/hydrogen.h"
19 #include "isolate-inl.h" 19 #include "src/isolate-inl.h"
20 #include "lithium.h" 20 #include "src/lithium.h"
21 #include "liveedit.h" 21 #include "src/liveedit.h"
22 #include "parser.h" 22 #include "src/parser.h"
23 #include "rewriter.h" 23 #include "src/rewriter.h"
24 #include "runtime-profiler.h" 24 #include "src/runtime-profiler.h"
25 #include "scanner-character-streams.h" 25 #include "src/scanner-character-streams.h"
26 #include "scopeinfo.h" 26 #include "src/scopeinfo.h"
27 #include "scopes.h" 27 #include "src/scopes.h"
28 #include "vm-state-inl.h" 28 #include "src/vm-state-inl.h"
29 29
30 namespace v8 { 30 namespace v8 {
31 namespace internal { 31 namespace internal {
32 32
33 33
34 CompilationInfo::CompilationInfo(Handle<Script> script, 34 CompilationInfo::CompilationInfo(Handle<Script> script,
35 Zone* zone) 35 Zone* zone)
36 : flags_(StrictModeField::encode(SLOPPY)), 36 : flags_(StrictModeField::encode(SLOPPY)),
37 script_(script), 37 script_(script),
38 osr_ast_id_(BailoutId::None()), 38 osr_ast_id_(BailoutId::None()),
(...skipping 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1296 AllowHandleDereference allow_deref; 1296 AllowHandleDereference allow_deref;
1297 bool tracing_on = info()->IsStub() 1297 bool tracing_on = info()->IsStub()
1298 ? FLAG_trace_hydrogen_stubs 1298 ? FLAG_trace_hydrogen_stubs
1299 : (FLAG_trace_hydrogen && 1299 : (FLAG_trace_hydrogen &&
1300 info()->closure()->PassesFilter(FLAG_trace_hydrogen_filter)); 1300 info()->closure()->PassesFilter(FLAG_trace_hydrogen_filter));
1301 return (tracing_on && 1301 return (tracing_on &&
1302 OS::StrChr(const_cast<char*>(FLAG_trace_phase), name_[0]) != NULL); 1302 OS::StrChr(const_cast<char*>(FLAG_trace_phase), name_[0]) != NULL);
1303 } 1303 }
1304 1304
1305 } } // namespace v8::internal 1305 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/compiler.h ('k') | src/contexts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698