Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Unified Diff: src/objects.cc

Issue 2143033002: Revert of Implement .eh_frame writer and disassembler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@eh-frame-base
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/full-codegen/full-codegen.cc ('k') | src/perf-jit.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index 01c2e1a4c99f9c424af9bf567d331cb0ca9df11a..18ebc29e2ed750e4595e06f6e3b1781823e1aa39 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -61,7 +61,6 @@
#ifdef ENABLE_DISASSEMBLER
#include "src/disasm.h"
#include "src/disassembler.h"
-#include "src/eh-frame.h"
#endif
namespace v8 {
@@ -14373,14 +14372,6 @@
it.rinfo()->Print(GetIsolate(), os);
}
os << "\n";
-
- if (has_unwinding_info()) {
- os << "UnwindingInfo (size = " << unwinding_info_size() << ")\n";
- EhFrameDisassembler eh_frame_disassembler(unwinding_info_start(),
- unwinding_info_end());
- eh_frame_disassembler.DisassembleToStream(os);
- os << "\n";
- }
}
#endif // ENABLE_DISASSEMBLER
« no previous file with comments | « src/full-codegen/full-codegen.cc ('k') | src/perf-jit.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698