| 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/ast.h" | 9 #include "src/ast/ast.h" |
| 10 #include "src/ast/scopeinfo.h" |
| 10 #include "src/base/bits.h" | 11 #include "src/base/bits.h" |
| 11 #include "src/deoptimizer.h" | 12 #include "src/deoptimizer.h" |
| 12 #include "src/frames-inl.h" | 13 #include "src/frames-inl.h" |
| 13 #include "src/full-codegen/full-codegen.h" | 14 #include "src/full-codegen/full-codegen.h" |
| 14 #include "src/register-configuration.h" | 15 #include "src/register-configuration.h" |
| 15 #include "src/safepoint-table.h" | 16 #include "src/safepoint-table.h" |
| 16 #include "src/scopeinfo.h" | |
| 17 #include "src/string-stream.h" | 17 #include "src/string-stream.h" |
| 18 #include "src/vm-state-inl.h" | 18 #include "src/vm-state-inl.h" |
| 19 | 19 |
| 20 namespace v8 { | 20 namespace v8 { |
| 21 namespace internal { | 21 namespace internal { |
| 22 | 22 |
| 23 ReturnAddressLocationResolver | 23 ReturnAddressLocationResolver |
| 24 StackFrame::return_address_location_resolver_ = NULL; | 24 StackFrame::return_address_location_resolver_ = NULL; |
| 25 | 25 |
| 26 | 26 |
| (...skipping 1552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1579 for (StackFrameIterator it(isolate); !it.done(); it.Advance()) { | 1579 for (StackFrameIterator it(isolate); !it.done(); it.Advance()) { |
| 1580 StackFrame* frame = AllocateFrameCopy(it.frame(), zone); | 1580 StackFrame* frame = AllocateFrameCopy(it.frame(), zone); |
| 1581 list.Add(frame, zone); | 1581 list.Add(frame, zone); |
| 1582 } | 1582 } |
| 1583 return list.ToVector(); | 1583 return list.ToVector(); |
| 1584 } | 1584 } |
| 1585 | 1585 |
| 1586 | 1586 |
| 1587 } // namespace internal | 1587 } // namespace internal |
| 1588 } // namespace v8 | 1588 } // namespace v8 |
| OLD | NEW |