Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/compiler/verifier.cc

Issue 2666783007: [turbo] Rename CallFunction* JSOperators to Call*. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/typer.cc ('k') | test/unittests/compiler/js-builtin-reducer-unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 break; 675 break;
676 } 676 }
677 677
678 case IrOpcode::kJSConstruct: 678 case IrOpcode::kJSConstruct:
679 case IrOpcode::kJSConstructWithSpread: 679 case IrOpcode::kJSConstructWithSpread:
680 case IrOpcode::kJSConvertReceiver: 680 case IrOpcode::kJSConvertReceiver:
681 // Type is Receiver. 681 // Type is Receiver.
682 CheckTypeIs(node, Type::Receiver()); 682 CheckTypeIs(node, Type::Receiver());
683 break; 683 break;
684 case IrOpcode::kJSCallForwardVarargs: 684 case IrOpcode::kJSCallForwardVarargs:
685 case IrOpcode::kJSCallFunction: 685 case IrOpcode::kJSCall:
686 case IrOpcode::kJSCallFunctionWithSpread: 686 case IrOpcode::kJSCallWithSpread:
687 case IrOpcode::kJSCallRuntime: 687 case IrOpcode::kJSCallRuntime:
688 // Type can be anything. 688 // Type can be anything.
689 CheckTypeIs(node, Type::Any()); 689 CheckTypeIs(node, Type::Any());
690 break; 690 break;
691 691
692 case IrOpcode::kJSForInPrepare: { 692 case IrOpcode::kJSForInPrepare: {
693 // TODO(bmeurer): What are the constraints on thse? 693 // TODO(bmeurer): What are the constraints on thse?
694 CheckTypeIs(node, Type::Any()); 694 CheckTypeIs(node, Type::Any());
695 break; 695 break;
696 } 696 }
(...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after
1701 replacement->op()->EffectOutputCount() > 0); 1701 replacement->op()->EffectOutputCount() > 0);
1702 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1702 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1703 replacement->opcode() == IrOpcode::kFrameState); 1703 replacement->opcode() == IrOpcode::kFrameState);
1704 } 1704 }
1705 1705
1706 #endif // DEBUG 1706 #endif // DEBUG
1707 1707
1708 } // namespace compiler 1708 } // namespace compiler
1709 } // namespace internal 1709 } // namespace internal
1710 } // namespace v8 1710 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | test/unittests/compiler/js-builtin-reducer-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698