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

Unified Diff: src/IceTargetLowering.cpp

Issue 1897243002: Subzero. Rematerializes shufflevector instructions. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Adds some comments to the pattern matching implementation. 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 side-by-side diff with in-line comments
Download patch
Index: src/IceTargetLowering.cpp
diff --git a/src/IceTargetLowering.cpp b/src/IceTargetLowering.cpp
index 496845c67ed8bf63645f5e85bd56d51130a87eee..275516e9fdb61cf524b27a3ea80a5b5d478403e9 100644
--- a/src/IceTargetLowering.cpp
+++ b/src/IceTargetLowering.cpp
@@ -440,6 +440,9 @@ void TargetLowering::lower() {
case Inst::Select:
lowerSelect(llvm::cast<InstSelect>(Instr));
break;
+ case Inst::ShuffleVector:
+ lowerShuffleVector(llvm::cast<InstShuffleVector>(Instr));
+ break;
case Inst::Store:
lowerStore(llvm::cast<InstStore>(Instr));
break;
« src/IceInst.h ('K') | « src/IceTargetLowering.h ('k') | src/IceTargetLoweringARM32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698