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

Unified Diff: src/compiler/operator-properties.h

Issue 983153002: [turbofan] Add an extra frame state for deoptimization before binary op. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Tweak Created 5 years, 9 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/compiler/node-properties.cc ('k') | src/compiler/operator-properties.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/operator-properties.h
diff --git a/src/compiler/operator-properties.h b/src/compiler/operator-properties.h
index 37c9755ed7aceb68536a1823ce22356b51ee1788..15ce2e105f2873390bbdafe44a255aebbe33a1f6 100644
--- a/src/compiler/operator-properties.h
+++ b/src/compiler/operator-properties.h
@@ -18,14 +18,11 @@ class Operator;
class OperatorProperties FINAL {
public:
static bool HasContextInput(const Operator* op);
- static bool HasFrameStateInput(const Operator* op);
-
static int GetContextInputCount(const Operator* op) {
return HasContextInput(op) ? 1 : 0;
}
- static int GetFrameStateInputCount(const Operator* op) {
- return HasFrameStateInput(op) ? 1 : 0;
- }
+ static int GetFrameStateInputCount(const Operator* op);
+
static int GetTotalInputCount(const Operator* op);
static bool IsBasicBlockBegin(const Operator* op);
« no previous file with comments | « src/compiler/node-properties.cc ('k') | src/compiler/operator-properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698