Index: src/compiler/js-operator.cc |
diff --git a/src/compiler/js-operator.cc b/src/compiler/js-operator.cc |
index a8f5692d54d4dce8c42f53895088f7736c4865f3..5b72eaf40ab54feb679e9b209e44e38195fe08cc 100644 |
--- a/src/compiler/js-operator.cc |
+++ b/src/compiler/js-operator.cc |
@@ -317,7 +317,8 @@ std::ostream& operator<<(std::ostream& os, DataPropertyParameters const& p) { |
} |
DataPropertyParameters const& DataPropertyParametersOf(const Operator* op) { |
- DCHECK(op->opcode() == IrOpcode::kJSStoreDataPropertyInLiteral); |
+ DCHECK(op->opcode() == IrOpcode::kJSStoreDataPropertyInLiteral || |
+ op->opcode() == IrOpcode::kJSCollectTypeProfile); |
return OpParameter<DataPropertyParameters>(op); |
} |
@@ -732,6 +733,17 @@ const Operator* JSOperatorBuilder::StoreDataPropertyInLiteral( |
parameters); // parameter |
} |
+const Operator* JSOperatorBuilder::CollectTypeProfile( |
+ const VectorSlotPair& feedback) { |
+ DataPropertyParameters parameters(feedback); |
+ return new (zone()) Operator1<DataPropertyParameters>( // -- |
+ IrOpcode::kJSCollectTypeProfile, |
+ Operator::kNoThrow, // opcode |
+ "JSCollectTypeProfile", // name |
+ 2, 1, 1, 0, 1, 0, // counts |
+ parameters); // parameter |
+} |
+ |
const Operator* JSOperatorBuilder::ToBoolean(ToBooleanHints hints) { |
// TODO(turbofan): Cache most important versions of this operator. |
return new (zone()) Operator1<ToBooleanHints>( //-- |