| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 9f7524ccefb7a4dc85ae9ee1677840b14e8d1bad..52411eba28aded05442168f939e15d2f11c5f7d4 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -61,6 +61,7 @@
|
| #ifdef ENABLE_DISASSEMBLER
|
| #include "src/disasm.h"
|
| #include "src/disassembler.h"
|
| +#include "src/eh-frame.h"
|
| #endif
|
|
|
| namespace v8 {
|
| @@ -14418,6 +14419,13 @@ void Code::Disassemble(const char* name, std::ostream& os) { // NOLINT
|
| it.rinfo()->Print(GetIsolate(), os);
|
| }
|
| os << "\n";
|
| +
|
| + if (has_unwinding_info()) {
|
| + os << "UnwindingInfo (size = " << unwinding_info_size() << ")\n";
|
| + EhFrameWriter::DisassembleToStream(os, unwinding_info_start(),
|
| + unwinding_info_end());
|
| + os << "\n";
|
| + }
|
| }
|
| #endif // ENABLE_DISASSEMBLER
|
|
|
|
|