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

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

Issue 2729163002: [turbofan] compute arguments length in deoptimizer (Closed)
Patch Set: fix comment Created 3 years, 9 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') | src/deoptimizer.h » ('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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 CHECK(NodeProperties::GetValueInput(node, i)->opcode() == 491 CHECK(NodeProperties::GetValueInput(node, i)->opcode() ==
492 IrOpcode::kStateValues || 492 IrOpcode::kStateValues ||
493 NodeProperties::GetValueInput(node, i)->opcode() == 493 NodeProperties::GetValueInput(node, i)->opcode() ==
494 IrOpcode::kTypedStateValues); 494 IrOpcode::kTypedStateValues);
495 } 495 }
496 break; 496 break;
497 } 497 }
498 case IrOpcode::kStateValues: 498 case IrOpcode::kStateValues:
499 case IrOpcode::kTypedStateValues: 499 case IrOpcode::kTypedStateValues:
500 case IrOpcode::kArgumentsElementsState: 500 case IrOpcode::kArgumentsElementsState:
501 case IrOpcode::kArgumentsLengthState:
501 case IrOpcode::kObjectState: 502 case IrOpcode::kObjectState:
502 case IrOpcode::kTypedObjectState: 503 case IrOpcode::kTypedObjectState:
503 // TODO(jarin): what are the constraints on these? 504 // TODO(jarin): what are the constraints on these?
504 break; 505 break;
505 case IrOpcode::kCall: 506 case IrOpcode::kCall:
506 // TODO(rossberg): what are the constraints on these? 507 // TODO(rossberg): what are the constraints on these?
507 break; 508 break;
508 case IrOpcode::kTailCall: 509 case IrOpcode::kTailCall:
509 // TODO(bmeurer): what are the constraints on these? 510 // TODO(bmeurer): what are the constraints on these?
510 break; 511 break;
(...skipping 1212 matching lines...) Expand 10 before | Expand all | Expand 10 after
1723 replacement->op()->EffectOutputCount() > 0); 1724 replacement->op()->EffectOutputCount() > 0);
1724 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1725 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1725 replacement->opcode() == IrOpcode::kFrameState); 1726 replacement->opcode() == IrOpcode::kFrameState);
1726 } 1727 }
1727 1728
1728 #endif // DEBUG 1729 #endif // DEBUG
1729 1730
1730 } // namespace compiler 1731 } // namespace compiler
1731 } // namespace internal 1732 } // namespace internal
1732 } // namespace v8 1733 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | src/deoptimizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698