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