Index: src/compiler/operator-properties-inl.h |
diff --git a/src/compiler/operator-properties-inl.h b/src/compiler/operator-properties-inl.h |
index 7830c1a1077099b290acaa1e8b2032b15e22193f..582d5e4ca7d416f3673b5e60c56c10b880f74ebb 100644 |
--- a/src/compiler/operator-properties-inl.h |
+++ b/src/compiler/operator-properties-inl.h |
@@ -123,21 +123,6 @@ inline bool OperatorProperties::IsBasicBlockBegin(Operator* op) { |
opcode == IrOpcode::kIfFalse; |
} |
-inline bool OperatorProperties::CanBeScheduled(Operator* op) { return true; } |
- |
-inline bool OperatorProperties::HasFixedSchedulePosition(Operator* op) { |
- IrOpcode::Value opcode = static_cast<IrOpcode::Value>(op->opcode()); |
- return (IrOpcode::IsControlOpcode(opcode)) || |
- opcode == IrOpcode::kParameter || opcode == IrOpcode::kEffectPhi || |
- opcode == IrOpcode::kPhi; |
-} |
- |
-inline bool OperatorProperties::IsScheduleRoot(Operator* op) { |
- uint8_t opcode = op->opcode(); |
- return opcode == IrOpcode::kEnd || opcode == IrOpcode::kEffectPhi || |
- opcode == IrOpcode::kPhi; |
-} |
- |
inline bool OperatorProperties::CanLazilyDeoptimize(Operator* op) { |
// TODO(jarin) This function allows turning on lazy deoptimization |
// incrementally. It will change as we turn on lazy deopt for |