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

Unified Diff: src/mips/lithium-codegen-mips.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/ia32/lithium-codegen-ia32.cc ('k') | src/mips64/lithium-codegen-mips64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips/lithium-codegen-mips.cc
diff --git a/src/mips/lithium-codegen-mips.cc b/src/mips/lithium-codegen-mips.cc
index bf158b4c43a9da0713a86b625d9be2e148e53f9a..58bf1a01ffa11545cf161020354d8207b6abbabd 100644
--- a/src/mips/lithium-codegen-mips.cc
+++ b/src/mips/lithium-codegen-mips.cc
@@ -165,7 +165,6 @@ bool LCodeGen::GeneratePrologue() {
__ Prologue(info()->IsCodePreAgingActive());
}
frame_is_built_ = true;
- info_->AddNoFrameRange(0, masm_->pc_offset());
}
// Reserve space for the stack slots needed by the code.
@@ -2686,10 +2685,8 @@ void LCodeGen::DoReturn(LReturn* instr) {
if (info()->saves_caller_doubles()) {
RestoreCallerDoubles();
}
- int no_frame_start = -1;
if (NeedsEagerFrame()) {
__ mov(sp, fp);
- no_frame_start = masm_->pc_offset();
__ Pop(ra, fp);
}
if (instr->has_constant_parameter_count()) {
@@ -2708,10 +2705,6 @@ void LCodeGen::DoReturn(LReturn* instr) {
}
__ Jump(ra);
-
- if (no_frame_start != -1) {
- info_->AddNoFrameRange(no_frame_start, masm_->pc_offset());
- }
}
« no previous file with comments | « src/ia32/lithium-codegen-ia32.cc ('k') | src/mips64/lithium-codegen-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698