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

Unified Diff: src/perf-jit.cc

Issue 2023503002: Reland Implement .eh_frame writer and disassembler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@eh-frame-base
Patch Set: SaveRegisterToStack => RegisterSavedToStack. 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
Index: src/perf-jit.cc
diff --git a/src/perf-jit.cc b/src/perf-jit.cc
index 3ac179ec8f3e2447a053b45acff4f4c3312b004f..56919aaa411807bfbbd3fbd5e1573c2409a116a1 100644
--- a/src/perf-jit.cc
+++ b/src/perf-jit.cc
@@ -324,8 +324,6 @@ void PerfJitLogger::LogWriteDebugInfo(Code* code, SharedFunctionInfo* shared) {
}
void PerfJitLogger::LogWriteUnwindingInfo(Code* code) {
- EhFrameHdr eh_frame_hdr(code);
-
PerfJitCodeUnwindingInfo unwinding_info_header;
unwinding_info_header.event_ = PerfJitCodeLoad::kUnwindingInfo;
unwinding_info_header.time_stamp_ = GetTimestamp();
@@ -348,16 +346,14 @@ void PerfJitLogger::LogWriteUnwindingInfo(Code* code) {
sizeof(unwinding_info_header));
if (code->has_unwinding_info()) {
- // The last EhFrameHdr::kRecordSize bytes were a placeholder for the header.
- // Discard them and write the actual eh_frame_hdr (below).
- DCHECK_GE(code->unwinding_info_size(), EhFrameHdr::kRecordSize);
LogWriteBytes(reinterpret_cast<const char*>(code->unwinding_info_start()),
- code->unwinding_info_size() - EhFrameHdr::kRecordSize);
+ code->unwinding_info_size());
+ } else {
+ EhFrameHdr dummy_eh_frame_hdr = EhFrameHdr::CreateEmptyHeader();
+ LogWriteBytes(reinterpret_cast<const char*>(&dummy_eh_frame_hdr),
+ EhFrameHdr::kRecordSize);
}
- LogWriteBytes(reinterpret_cast<const char*>(&eh_frame_hdr),
- EhFrameHdr::kRecordSize);
-
char padding_bytes[] = "\0\0\0\0\0\0\0\0";
DCHECK_LT(padding_size, sizeof(padding_bytes));
LogWriteBytes(padding_bytes, padding_size);

Powered by Google App Engine
This is Rietveld 408576698