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

Side by Side Diff: src/compiler.cc

Issue 2260483002: Include only stuff you need, part 3: includes in isolate.h. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | src/debug/debug.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 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 "src/compiler.h" 5 #include "src/compiler.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <memory> 8 #include <memory>
9 9
10 #include "src/asmjs/asm-js.h" 10 #include "src/asmjs/asm-js.h"
11 #include "src/asmjs/asm-typer.h" 11 #include "src/asmjs/asm-typer.h"
12 #include "src/ast/ast-numbering.h" 12 #include "src/ast/ast-numbering.h"
13 #include "src/ast/prettyprinter.h" 13 #include "src/ast/prettyprinter.h"
14 #include "src/ast/scopes.h" 14 #include "src/ast/scopes.h"
15 #include "src/bootstrapper.h" 15 #include "src/bootstrapper.h"
16 #include "src/codegen.h" 16 #include "src/codegen.h"
17 #include "src/compilation-cache.h" 17 #include "src/compilation-cache.h"
18 #include "src/compiler-dispatcher/optimizing-compile-dispatcher.h"
18 #include "src/compiler/pipeline.h" 19 #include "src/compiler/pipeline.h"
19 #include "src/crankshaft/hydrogen.h" 20 #include "src/crankshaft/hydrogen.h"
20 #include "src/debug/debug.h" 21 #include "src/debug/debug.h"
21 #include "src/debug/liveedit.h" 22 #include "src/debug/liveedit.h"
22 #include "src/deoptimizer.h" 23 #include "src/deoptimizer.h"
23 #include "src/frames-inl.h" 24 #include "src/frames-inl.h"
24 #include "src/full-codegen/full-codegen.h" 25 #include "src/full-codegen/full-codegen.h"
25 #include "src/globals.h" 26 #include "src/globals.h"
26 #include "src/heap/heap.h" 27 #include "src/heap/heap.h"
27 #include "src/interpreter/interpreter.h" 28 #include "src/interpreter/interpreter.h"
(...skipping 1936 matching lines...) Expand 10 before | Expand all | Expand 10 after
1964 DCHECK(shared->is_compiled()); 1965 DCHECK(shared->is_compiled());
1965 function->set_literals(cached.literals); 1966 function->set_literals(cached.literals);
1966 } else if (shared->is_compiled()) { 1967 } else if (shared->is_compiled()) {
1967 // TODO(mvstanton): pass pretenure flag to EnsureLiterals. 1968 // TODO(mvstanton): pass pretenure flag to EnsureLiterals.
1968 JSFunction::EnsureLiterals(function); 1969 JSFunction::EnsureLiterals(function);
1969 } 1970 }
1970 } 1971 }
1971 1972
1972 } // namespace internal 1973 } // namespace internal
1973 } // namespace v8 1974 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | src/debug/debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698