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

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

Issue 1376333003: Eliminate no_frame_range data (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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/strings-storage.h ('k') | src/x87/lithium-codegen-x87.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/x64/lithium-codegen-x64.cc
diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc
index dbdd146a1ebbee7665d265a4667247e033b27419..e32b54957f0f0872f61d62271f70021b5bc9ef33 100644
--- a/src/x64/lithium-codegen-x64.cc
+++ b/src/x64/lithium-codegen-x64.cc
@@ -153,7 +153,6 @@ bool LCodeGen::GeneratePrologue() {
} else {
__ Prologue(info()->IsCodePreAgingActive());
}
- info()->AddNoFrameRange(0, masm_->pc_offset());
}
// Reserve space for the stack slots needed by the code.
@@ -2712,11 +2711,9 @@ void LCodeGen::DoReturn(LReturn* instr) {
if (info()->saves_caller_doubles()) {
RestoreCallerDoubles();
}
- int no_frame_start = -1;
if (NeedsEagerFrame()) {
__ movp(rsp, rbp);
__ popq(rbp);
- no_frame_start = masm_->pc_offset();
}
if (instr->has_constant_parameter_count()) {
__ Ret((ToInteger32(instr->constant_parameter_count()) + 1) * kPointerSize,
@@ -2732,9 +2729,6 @@ void LCodeGen::DoReturn(LReturn* instr) {
__ addp(rsp, reg);
__ jmp(return_addr_reg);
}
- if (no_frame_start != -1) {
- info_->AddNoFrameRange(no_frame_start, masm_->pc_offset());
- }
}
« no previous file with comments | « src/strings-storage.h ('k') | src/x87/lithium-codegen-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698