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

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

Issue 2108793003: [turbofan] Drop the obsolete TypeGuard operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@MathRandom
Patch Set: Created 4 years, 5 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-intrinsic-lowering-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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 } 410 }
411 case IrOpcode::kEffectPhi: { 411 case IrOpcode::kEffectPhi: {
412 // EffectPhi input count matches parent control node. 412 // EffectPhi input count matches parent control node.
413 CHECK_EQ(0, value_count); 413 CHECK_EQ(0, value_count);
414 CHECK_EQ(1, control_count); 414 CHECK_EQ(1, control_count);
415 Node* control = NodeProperties::GetControlInput(node, 0); 415 Node* control = NodeProperties::GetControlInput(node, 0);
416 CHECK_EQ(effect_count, control->op()->ControlInputCount()); 416 CHECK_EQ(effect_count, control->op()->ControlInputCount());
417 CHECK_EQ(input_count, 1 + effect_count); 417 CHECK_EQ(input_count, 1 + effect_count);
418 break; 418 break;
419 } 419 }
420 case IrOpcode::kTypeGuard:
421 // TODO(bmeurer): what are the constraints on these?
422 break;
423 case IrOpcode::kCheckpoint: 420 case IrOpcode::kCheckpoint:
424 // Type is empty. 421 // Type is empty.
425 CheckNotTyped(node); 422 CheckNotTyped(node);
426 break; 423 break;
427 case IrOpcode::kBeginRegion: 424 case IrOpcode::kBeginRegion:
428 // TODO(rossberg): what are the constraints on these? 425 // TODO(rossberg): what are the constraints on these?
429 break; 426 break;
430 case IrOpcode::kFinishRegion: { 427 case IrOpcode::kFinishRegion: {
431 // TODO(rossberg): what are the constraints on these? 428 // TODO(rossberg): what are the constraints on these?
432 // Type must be subsumed by input type. 429 // Type must be subsumed by input type.
(...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after
1493 replacement->op()->EffectOutputCount() > 0); 1490 replacement->op()->EffectOutputCount() > 0);
1494 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1491 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1495 replacement->opcode() == IrOpcode::kFrameState); 1492 replacement->opcode() == IrOpcode::kFrameState);
1496 } 1493 }
1497 1494
1498 #endif // DEBUG 1495 #endif // DEBUG
1499 1496
1500 } // namespace compiler 1497 } // namespace compiler
1501 } // namespace internal 1498 } // namespace internal
1502 } // namespace v8 1499 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | test/unittests/compiler/js-intrinsic-lowering-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698