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

Side by Side Diff: src/frames.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/frames.h" 5 #include "src/frames.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <sstream> 8 #include <sstream>
9 9
10 #include "src/ast/ast.h"
11 #include "src/base/bits.h" 10 #include "src/base/bits.h"
12 #include "src/deoptimizer.h" 11 #include "src/deoptimizer.h"
13 #include "src/frames-inl.h" 12 #include "src/frames-inl.h"
14 #include "src/full-codegen/full-codegen.h" 13 #include "src/full-codegen/full-codegen.h"
marja 2016/08/17 12:07:30 Ditto; here we'll get ast.h via full-codegen.h any
15 #include "src/register-configuration.h" 14 #include "src/register-configuration.h"
16 #include "src/safepoint-table.h" 15 #include "src/safepoint-table.h"
17 #include "src/string-stream.h" 16 #include "src/string-stream.h"
18 #include "src/vm-state-inl.h" 17 #include "src/vm-state-inl.h"
19 #include "src/wasm/wasm-debug.h" 18 #include "src/wasm/wasm-debug.h"
20 #include "src/wasm/wasm-module.h" 19 #include "src/wasm/wasm-module.h"
21 20
22 namespace v8 { 21 namespace v8 {
23 namespace internal { 22 namespace internal {
24 23
(...skipping 1885 matching lines...) Expand 10 before | Expand all | Expand 10 after
1910 for (StackFrameIterator it(isolate); !it.done(); it.Advance()) { 1909 for (StackFrameIterator it(isolate); !it.done(); it.Advance()) {
1911 StackFrame* frame = AllocateFrameCopy(it.frame(), zone); 1910 StackFrame* frame = AllocateFrameCopy(it.frame(), zone);
1912 list.Add(frame, zone); 1911 list.Add(frame, zone);
1913 } 1912 }
1914 return list.ToVector(); 1913 return list.ToVector();
1915 } 1914 }
1916 1915
1917 1916
1918 } // namespace internal 1917 } // namespace internal
1919 } // namespace v8 1918 } // namespace v8
OLDNEW
« src/compiler.h ('K') | « src/crankshaft/typing.h ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698