Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 |
| OLD | NEW |