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

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

Issue 1894523002: [turbofan] Introduce ObjectIsString operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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') | no next file » | 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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 break; 742 break;
743 case IrOpcode::kReferenceEqual: { 743 case IrOpcode::kReferenceEqual: {
744 // (Unique, Any) -> Boolean and 744 // (Unique, Any) -> Boolean and
745 // (Any, Unique) -> Boolean 745 // (Any, Unique) -> Boolean
746 CheckUpperIs(node, Type::Boolean()); 746 CheckUpperIs(node, Type::Boolean());
747 break; 747 break;
748 } 748 }
749 case IrOpcode::kObjectIsNumber: 749 case IrOpcode::kObjectIsNumber:
750 case IrOpcode::kObjectIsReceiver: 750 case IrOpcode::kObjectIsReceiver:
751 case IrOpcode::kObjectIsSmi: 751 case IrOpcode::kObjectIsSmi:
752 case IrOpcode::kObjectIsString:
752 case IrOpcode::kObjectIsUndetectable: 753 case IrOpcode::kObjectIsUndetectable:
753 CheckValueInputIs(node, 0, Type::Any()); 754 CheckValueInputIs(node, 0, Type::Any());
754 CheckUpperIs(node, Type::Boolean()); 755 CheckUpperIs(node, Type::Boolean());
755 break; 756 break;
756 case IrOpcode::kAllocate: 757 case IrOpcode::kAllocate:
757 CheckValueInputIs(node, 0, Type::PlainNumber()); 758 CheckValueInputIs(node, 0, Type::PlainNumber());
758 CheckUpperIs(node, Type::TaggedPointer()); 759 CheckUpperIs(node, Type::TaggedPointer());
759 break; 760 break;
760 761
761 case IrOpcode::kChangeTaggedToInt32: { 762 case IrOpcode::kChangeTaggedToInt32: {
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
1316 replacement->op()->EffectOutputCount() > 0); 1317 replacement->op()->EffectOutputCount() > 0);
1317 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1318 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1318 replacement->opcode() == IrOpcode::kFrameState); 1319 replacement->opcode() == IrOpcode::kFrameState);
1319 } 1320 }
1320 1321
1321 #endif // DEBUG 1322 #endif // DEBUG
1322 1323
1323 } // namespace compiler 1324 } // namespace compiler
1324 } // namespace internal 1325 } // namespace internal
1325 } // namespace v8 1326 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698