Index: src/compiler/common-operator.cc |
diff --git a/src/compiler/common-operator.cc b/src/compiler/common-operator.cc |
index 460c47b1803fe8e4e83c7000a6c2c966790b21e8..30f70d87ca6ac3a3a651671a22c3d22c4d4ffd29 100644 |
--- a/src/compiler/common-operator.cc |
+++ b/src/compiler/common-operator.cc |
@@ -103,24 +103,28 @@ std::ostream& operator<<(std::ostream& os, FrameStateCallInfo const& info) { |
} |
-#define CACHED_OP_LIST(V) \ |
- V(Dead, Operator::kFoldable, 0, 0, 0, 1) \ |
- V(End, Operator::kFoldable, 0, 0, 1, 0) \ |
- V(IfTrue, Operator::kFoldable, 0, 0, 1, 1) \ |
- V(IfFalse, Operator::kFoldable, 0, 0, 1, 1) \ |
- V(Throw, Operator::kFoldable, 1, 1, 1, 1) \ |
- V(Return, Operator::kNoProperties, 1, 1, 1, 1) |
+#define CACHED_OP_LIST(V) \ |
+ V(Dead, Operator::kFoldable, 0, 0, 0, 0, 0, 1) \ |
+ V(End, Operator::kFoldable, 0, 0, 1, 0, 0, 0) \ |
+ V(IfTrue, Operator::kFoldable, 0, 0, 1, 0, 0, 1) \ |
+ V(IfFalse, Operator::kFoldable, 0, 0, 1, 0, 0, 1) \ |
+ V(Throw, Operator::kFoldable, 1, 1, 1, 0, 0, 1) \ |
+ V(Return, Operator::kNoProperties, 1, 1, 1, 0, 0, 1) \ |
+ V(OsrNormalEntry, Operator::kFoldable, 0, 1, 1, 0, 1, 1) \ |
+ V(OsrLoopEntry, Operator::kFoldable, 0, 1, 1, 0, 1, 1) |
struct CommonOperatorGlobalCache FINAL { |
-#define CACHED(Name, properties, value_input_count, effect_input_count, \ |
- control_input_count, control_output_count) \ |
- struct Name##Operator FINAL : public Operator { \ |
- Name##Operator() \ |
- : Operator(IrOpcode::k##Name, properties, #Name, value_input_count, \ |
- effect_input_count, control_input_count, 0, 0, \ |
- control_output_count) {} \ |
- }; \ |
+#define CACHED(Name, properties, value_input_count, effect_input_count, \ |
+ control_input_count, value_output_count, effect_output_count, \ |
+ control_output_count) \ |
+ struct Name##Operator FINAL : public Operator { \ |
+ Name##Operator() \ |
+ : Operator(IrOpcode::k##Name, properties, #Name, value_input_count, \ |
+ effect_input_count, control_input_count, \ |
+ value_output_count, effect_output_count, \ |
+ control_output_count) {} \ |
+ }; \ |
Name##Operator k##Name##Operator; |
CACHED_OP_LIST(CACHED) |
#undef CACHED |
@@ -148,10 +152,11 @@ CommonOperatorBuilder::CommonOperatorBuilder(Zone* zone) |
: cache_(kCache.Get()), zone_(zone) {} |
-#define CACHED(Name, properties, value_input_count, effect_input_count, \ |
- control_input_count, control_output_count) \ |
- const Operator* CommonOperatorBuilder::Name() { \ |
- return &cache_.k##Name##Operator; \ |
+#define CACHED(Name, properties, value_input_count, effect_input_count, \ |
+ control_input_count, value_output_count, effect_output_count, \ |
+ control_output_count) \ |
+ const Operator* CommonOperatorBuilder::Name() { \ |
+ return &cache_.k##Name##Operator; \ |
} |
CACHED_OP_LIST(CACHED) |
#undef CACHED |
@@ -214,6 +219,15 @@ const Operator* CommonOperatorBuilder::Parameter(int index) { |
} |
+const Operator* CommonOperatorBuilder::OsrValue(int index) { |
+ return new (zone()) Operator1<int>( // -- |
+ IrOpcode::kOsrValue, Operator::kPure, // opcode |
+ "OsrValue", // name |
+ 0, 0, 1, 1, 0, 0, // counts |
+ index); // parameter |
+} |
+ |
+ |
const Operator* CommonOperatorBuilder::Int32Constant(int32_t value) { |
return new (zone()) Operator1<int32_t>( // -- |
IrOpcode::kInt32Constant, Operator::kPure, // opcode |