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 <sstream> | 7 #include <sstream> |
8 | 8 |
9 #include "src/v8.h" | |
10 | |
11 #include "src/ast.h" | 9 #include "src/ast.h" |
12 #include "src/base/bits.h" | 10 #include "src/base/bits.h" |
13 #include "src/deoptimizer.h" | 11 #include "src/deoptimizer.h" |
14 #include "src/frames-inl.h" | 12 #include "src/frames-inl.h" |
15 #include "src/full-codegen/full-codegen.h" | 13 #include "src/full-codegen/full-codegen.h" |
16 #include "src/safepoint-table.h" | 14 #include "src/safepoint-table.h" |
17 #include "src/scopeinfo.h" | 15 #include "src/scopeinfo.h" |
18 #include "src/string-stream.h" | 16 #include "src/string-stream.h" |
19 #include "src/vm-state-inl.h" | 17 #include "src/vm-state-inl.h" |
20 | 18 |
(...skipping 1532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1553 for (StackFrameIterator it(isolate); !it.done(); it.Advance()) { | 1551 for (StackFrameIterator it(isolate); !it.done(); it.Advance()) { |
1554 StackFrame* frame = AllocateFrameCopy(it.frame(), zone); | 1552 StackFrame* frame = AllocateFrameCopy(it.frame(), zone); |
1555 list.Add(frame, zone); | 1553 list.Add(frame, zone); |
1556 } | 1554 } |
1557 return list.ToVector(); | 1555 return list.ToVector(); |
1558 } | 1556 } |
1559 | 1557 |
1560 | 1558 |
1561 } // namespace internal | 1559 } // namespace internal |
1562 } // namespace v8 | 1560 } // namespace v8 |
OLD | NEW |