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

Unified Diff: src/compiler/instruction.h

Issue 2347563004: [turbofan] Avoid large deopt blocks (Closed)
Patch Set: feedback Created 4 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 | « no previous file | src/compiler/instruction.cc » ('j') | src/compiler/register-allocator.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/instruction.h
diff --git a/src/compiler/instruction.h b/src/compiler/instruction.h
index 72299efedda8a5e8fbe0b281466a791f993a4d94..cbe7868a6c960cc5f5074c9d862e004116f99e14 100644
--- a/src/compiler/instruction.h
+++ b/src/compiler/instruction.h
@@ -1266,9 +1266,6 @@ class InstructionBlock final : public ZoneObject {
bool must_deconstruct_frame() const { return must_deconstruct_frame_; }
void mark_must_deconstruct_frame() { must_deconstruct_frame_ = true; }
- void set_last_deferred(RpoNumber last) { last_deferred_ = last; }
- RpoNumber last_deferred() const { return last_deferred_; }
-
private:
Successors successors_;
Predecessors predecessors_;
@@ -1284,7 +1281,6 @@ class InstructionBlock final : public ZoneObject {
bool needs_frame_;
bool must_construct_frame_;
bool must_deconstruct_frame_;
- RpoNumber last_deferred_;
};
class InstructionSequence;
« no previous file with comments | « no previous file | src/compiler/instruction.cc » ('j') | src/compiler/register-allocator.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698