| 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 "test/cctest/compiler/simplified-graph-builder.h" | 5 #include "test/cctest/compiler/simplified-graph-builder.h" |
| 6 | 6 |
| 7 #include "src/compiler/operator-properties.h" | 7 #include "src/compiler/operator-properties.h" |
| 8 #include "src/compiler/operator-properties-inl.h" | 8 #include "src/compiler/operator-properties-inl.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 effect_ = NULL; | 36 effect_ = NULL; |
| 37 } | 37 } |
| 38 | 38 |
| 39 | 39 |
| 40 void SimplifiedGraphBuilder::End() { | 40 void SimplifiedGraphBuilder::End() { |
| 41 Node* end = graph()->NewNode(common()->End(), return_); | 41 Node* end = graph()->NewNode(common()->End(), return_); |
| 42 graph()->SetEnd(end); | 42 graph()->SetEnd(end); |
| 43 } | 43 } |
| 44 | 44 |
| 45 | 45 |
| 46 Node* SimplifiedGraphBuilder::MakeNode(Operator* op, int value_input_count, | 46 Node* SimplifiedGraphBuilder::MakeNode(const Operator* op, |
| 47 int value_input_count, |
| 47 Node** value_inputs) { | 48 Node** value_inputs) { |
| 48 DCHECK(op->InputCount() == value_input_count); | 49 DCHECK(op->InputCount() == value_input_count); |
| 49 | 50 |
| 50 DCHECK(!OperatorProperties::HasContextInput(op)); | 51 DCHECK(!OperatorProperties::HasContextInput(op)); |
| 51 DCHECK(!OperatorProperties::HasFrameStateInput(op)); | 52 DCHECK(!OperatorProperties::HasFrameStateInput(op)); |
| 52 bool has_control = OperatorProperties::GetControlInputCount(op) == 1; | 53 bool has_control = OperatorProperties::GetControlInputCount(op) == 1; |
| 53 bool has_effect = OperatorProperties::GetEffectInputCount(op) == 1; | 54 bool has_effect = OperatorProperties::GetEffectInputCount(op) == 1; |
| 54 | 55 |
| 55 DCHECK(OperatorProperties::GetControlInputCount(op) < 2); | 56 DCHECK(OperatorProperties::GetControlInputCount(op) < 2); |
| 56 DCHECK(OperatorProperties::GetEffectInputCount(op) < 2); | 57 DCHECK(OperatorProperties::GetEffectInputCount(op) < 2); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 80 UNREACHABLE(); | 81 UNREACHABLE(); |
| 81 } | 82 } |
| 82 } | 83 } |
| 83 | 84 |
| 84 return result; | 85 return result; |
| 85 } | 86 } |
| 86 | 87 |
| 87 } // namespace compiler | 88 } // namespace compiler |
| 88 } // namespace internal | 89 } // namespace internal |
| 89 } // namespace v8 | 90 } // namespace v8 |
| OLD | NEW |