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

Side by Side Diff: src/isolate.cc

Issue 2246203005: include only stuff you need, part 1: ast.h, ast-value-factory.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
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/isolate.h" 5 #include "src/isolate.h"
6 6
7 #include <stdlib.h> 7 #include <stdlib.h>
8 8
9 #include <fstream> // NOLINT(readability/streams) 9 #include <fstream> // NOLINT(readability/streams)
10 #include <sstream> 10 #include <sstream>
11 11
12 #include "src/ast/ast.h"
13 #include "src/ast/context-slot-cache.h" 12 #include "src/ast/context-slot-cache.h"
14 #include "src/base/platform/platform.h" 13 #include "src/base/platform/platform.h"
15 #include "src/base/sys-info.h" 14 #include "src/base/sys-info.h"
16 #include "src/base/utils/random-number-generator.h" 15 #include "src/base/utils/random-number-generator.h"
17 #include "src/basic-block-profiler.h" 16 #include "src/basic-block-profiler.h"
18 #include "src/bootstrapper.h" 17 #include "src/bootstrapper.h"
19 #include "src/codegen.h" 18 #include "src/codegen.h"
20 #include "src/compilation-cache.h" 19 #include "src/compilation-cache.h"
21 #include "src/compilation-statistics.h" 20 #include "src/compilation-statistics.h"
22 #include "src/crankshaft/hydrogen.h" 21 #include "src/crankshaft/hydrogen.h"
(...skipping 3173 matching lines...) Expand 10 before | Expand all | Expand 10 after
3196 // Then check whether this scope intercepts. 3195 // Then check whether this scope intercepts.
3197 if ((flag & intercept_mask_)) { 3196 if ((flag & intercept_mask_)) {
3198 intercepted_flags_ |= flag; 3197 intercepted_flags_ |= flag;
3199 return true; 3198 return true;
3200 } 3199 }
3201 return false; 3200 return false;
3202 } 3201 }
3203 3202
3204 } // namespace internal 3203 } // namespace internal
3205 } // namespace v8 3204 } // namespace v8
OLDNEW
« src/frames.cc ('K') | « src/frames.cc ('k') | src/parsing/parameter-initializer-rewriter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698