OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <limits> | 5 #include <limits> |
6 | 6 |
7 #include "src/compiler/common-operator.h" | 7 #include "src/compiler/common-operator.h" |
8 #include "src/compiler/opcodes.h" | 8 #include "src/compiler/opcodes.h" |
9 #include "src/compiler/operator.h" | 9 #include "src/compiler/operator.h" |
10 #include "src/compiler/operator-properties.h" | 10 #include "src/compiler/operator-properties.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 &CommonOperatorBuilder::Name, IrOpcode::k##Name, properties, \ | 47 &CommonOperatorBuilder::Name, IrOpcode::k##Name, properties, \ |
48 value_input_count, effect_input_count, control_input_count, \ | 48 value_input_count, effect_input_count, control_input_count, \ |
49 value_output_count, effect_output_count, control_output_count \ | 49 value_output_count, effect_output_count, control_output_count \ |
50 } | 50 } |
51 SHARED(Always, Operator::kPure, 0, 0, 0, 1, 0, 0), | 51 SHARED(Always, Operator::kPure, 0, 0, 0, 1, 0, 0), |
52 SHARED(Dead, Operator::kFoldable, 0, 0, 0, 0, 0, 1), | 52 SHARED(Dead, Operator::kFoldable, 0, 0, 0, 0, 0, 1), |
53 SHARED(End, Operator::kKontrol, 0, 0, 1, 0, 0, 0), | 53 SHARED(End, Operator::kKontrol, 0, 0, 1, 0, 0, 0), |
54 SHARED(IfTrue, Operator::kKontrol, 0, 0, 1, 0, 0, 1), | 54 SHARED(IfTrue, Operator::kKontrol, 0, 0, 1, 0, 0, 1), |
55 SHARED(IfFalse, Operator::kKontrol, 0, 0, 1, 0, 0, 1), | 55 SHARED(IfFalse, Operator::kKontrol, 0, 0, 1, 0, 0, 1), |
56 SHARED(IfSuccess, Operator::kKontrol, 0, 0, 1, 0, 0, 1), | 56 SHARED(IfSuccess, Operator::kKontrol, 0, 0, 1, 0, 0, 1), |
57 SHARED(IfException, Operator::kKontrol, 0, 0, 1, 0, 0, 1), | 57 SHARED(IfException, Operator::kKontrol, 0, 0, 1, 1, 0, 1), |
58 SHARED(Throw, Operator::kFoldable, 1, 1, 1, 0, 0, 1), | 58 SHARED(Throw, Operator::kFoldable, 1, 1, 1, 0, 0, 1), |
59 SHARED(Return, Operator::kNoThrow, 1, 1, 1, 0, 0, 1) | 59 SHARED(Return, Operator::kNoThrow, 1, 1, 1, 0, 0, 1) |
60 #undef SHARED | 60 #undef SHARED |
61 }; | 61 }; |
62 | 62 |
63 | 63 |
64 class CommonSharedOperatorTest | 64 class CommonSharedOperatorTest |
65 : public TestWithZone, | 65 : public TestWithZone, |
66 public ::testing::WithParamInterface<SharedOperator> {}; | 66 public ::testing::WithParamInterface<SharedOperator> {}; |
67 | 67 |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 EXPECT_EQ(arguments + 1, OperatorProperties::GetTotalInputCount(op)); | 339 EXPECT_EQ(arguments + 1, OperatorProperties::GetTotalInputCount(op)); |
340 EXPECT_EQ(0, op->ControlOutputCount()); | 340 EXPECT_EQ(0, op->ControlOutputCount()); |
341 EXPECT_EQ(0, op->EffectOutputCount()); | 341 EXPECT_EQ(0, op->EffectOutputCount()); |
342 EXPECT_EQ(1, op->ValueOutputCount()); | 342 EXPECT_EQ(1, op->ValueOutputCount()); |
343 } | 343 } |
344 } | 344 } |
345 | 345 |
346 } // namespace compiler | 346 } // namespace compiler |
347 } // namespace internal | 347 } // namespace internal |
348 } // namespace v8 | 348 } // namespace v8 |
OLD | NEW |