Chromium Code Reviews

Unified Diff: src/x64/full-codegen-x64.cc

Issue 14253015: Skip samples where top function's stack frame is not setup properly (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Reverted build/common.gypi Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/x64/full-codegen-x64.cc
diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc
index a20d468bae4721f681b6efdcafb185c7bc54e83e..e0aef9a3707d8cda2255896a5ad46511b3db0265 100644
--- a/src/x64/full-codegen-x64.cc
+++ b/src/x64/full-codegen-x64.cc
@@ -405,6 +405,7 @@ void FullCodeGenerator::EmitReturnSequence() {
// Do not use the leave instruction here because it is too short to
// patch with the code required by the debugger.
__ movq(rsp, rbp);
+ info_->set_frame_destroy_offset(masm_->pc_offset());
__ pop(rbp);
int arguments_bytes = (info_->scope()->num_parameters() + 1) * kPointerSize;

Powered by Google App Engine