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

Unified Diff: src/compiler/x64/instruction-selector-x64.cc

Issue 2354863003: [turbofan] Also allow TaggedSigned/Pointer memory operand. (Closed)
Patch Set: Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/x64/instruction-selector-x64.cc
diff --git a/src/compiler/x64/instruction-selector-x64.cc b/src/compiler/x64/instruction-selector-x64.cc
index fca630fc6d6e1fcbf1a91e4218f1f50b7b50b55b..56cf1818af7508490e5083c601f58b2beba3f2b1 100644
--- a/src/compiler/x64/instruction-selector-x64.cc
+++ b/src/compiler/x64/instruction-selector-x64.cc
@@ -61,7 +61,9 @@ class X64OperandGenerator final : public OperandGenerator {
case kX64Cmp:
case kX64Test:
return rep == MachineRepresentation::kWord64 ||
- rep == MachineRepresentation::kTagged;
+ rep == MachineRepresentation::kTagged ||
+ rep == MachineRepresentation::kTaggedSigned ||
+ rep == MachineRepresentation::kTaggedPointer;
Jarin 2016/09/21 06:49:55 IsAnyTagged(rep) ?
Benedikt Meurer 2016/09/21 06:50:10 Done.
case kX64Cmp32:
case kX64Test32:
return rep == MachineRepresentation::kWord32;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698