| 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 "src/compiler/verifier.h" | 5 #include "src/compiler/verifier.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <queue> | 9 #include <queue> |
| 10 #include <sstream> | 10 #include <sstream> |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 case IrOpcode::kJSCreateScriptContext: { | 693 case IrOpcode::kJSCreateScriptContext: { |
| 694 // Type is Context, and operand is Internal. | 694 // Type is Context, and operand is Internal. |
| 695 Node* context = NodeProperties::GetContextInput(node); | 695 Node* context = NodeProperties::GetContextInput(node); |
| 696 // TODO(bmeurer): This should say CheckTypeIs, but we don't have type | 696 // TODO(bmeurer): This should say CheckTypeIs, but we don't have type |
| 697 // OtherInternal on certain contexts, i.e. those from OsrValue inputs. | 697 // OtherInternal on certain contexts, i.e. those from OsrValue inputs. |
| 698 CheckTypeMaybe(context, Type::OtherInternal()); | 698 CheckTypeMaybe(context, Type::OtherInternal()); |
| 699 CheckTypeIs(node, Type::OtherInternal()); | 699 CheckTypeIs(node, Type::OtherInternal()); |
| 700 break; | 700 break; |
| 701 } | 701 } |
| 702 | 702 |
| 703 case IrOpcode::kJSConstructForwardVarargs: |
| 703 case IrOpcode::kJSConstruct: | 704 case IrOpcode::kJSConstruct: |
| 704 case IrOpcode::kJSConstructWithSpread: | 705 case IrOpcode::kJSConstructWithSpread: |
| 705 case IrOpcode::kJSConvertReceiver: | 706 case IrOpcode::kJSConvertReceiver: |
| 706 // Type is Receiver. | 707 // Type is Receiver. |
| 707 CheckTypeIs(node, Type::Receiver()); | 708 CheckTypeIs(node, Type::Receiver()); |
| 708 break; | 709 break; |
| 709 case IrOpcode::kJSCallForwardVarargs: | 710 case IrOpcode::kJSCallForwardVarargs: |
| 710 case IrOpcode::kJSCall: | 711 case IrOpcode::kJSCall: |
| 711 case IrOpcode::kJSCallWithSpread: | 712 case IrOpcode::kJSCallWithSpread: |
| 712 case IrOpcode::kJSCallRuntime: | 713 case IrOpcode::kJSCallRuntime: |
| (...skipping 1047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1760 replacement->op()->EffectOutputCount() > 0); | 1761 replacement->op()->EffectOutputCount() > 0); |
| 1761 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 1762 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |
| 1762 replacement->opcode() == IrOpcode::kFrameState); | 1763 replacement->opcode() == IrOpcode::kFrameState); |
| 1763 } | 1764 } |
| 1764 | 1765 |
| 1765 #endif // DEBUG | 1766 #endif // DEBUG |
| 1766 | 1767 |
| 1767 } // namespace compiler | 1768 } // namespace compiler |
| 1768 } // namespace internal | 1769 } // namespace internal |
| 1769 } // namespace v8 | 1770 } // namespace v8 |
| OLD | NEW |