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

Side by Side 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: Addresses comments. 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/IceTargetLowering.h ('k') | src/IceTargetLoweringARM32.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 //===- subzero/src/IceTargetLowering.cpp - Basic lowering implementation --===// 1 //===- subzero/src/IceTargetLowering.cpp - Basic lowering implementation --===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 /// 9 ///
10 /// \file 10 /// \file
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 break; 433 break;
434 case Inst::Phi: 434 case Inst::Phi:
435 lowerPhi(llvm::cast<InstPhi>(Instr)); 435 lowerPhi(llvm::cast<InstPhi>(Instr));
436 break; 436 break;
437 case Inst::Ret: 437 case Inst::Ret:
438 lowerRet(llvm::cast<InstRet>(Instr)); 438 lowerRet(llvm::cast<InstRet>(Instr));
439 break; 439 break;
440 case Inst::Select: 440 case Inst::Select:
441 lowerSelect(llvm::cast<InstSelect>(Instr)); 441 lowerSelect(llvm::cast<InstSelect>(Instr));
442 break; 442 break;
443 case Inst::ShuffleVector:
444 lowerShuffleVector(llvm::cast<InstShuffleVector>(Instr));
445 break;
443 case Inst::Store: 446 case Inst::Store:
444 lowerStore(llvm::cast<InstStore>(Instr)); 447 lowerStore(llvm::cast<InstStore>(Instr));
445 break; 448 break;
446 case Inst::Switch: 449 case Inst::Switch:
447 lowerSwitch(llvm::cast<InstSwitch>(Instr)); 450 lowerSwitch(llvm::cast<InstSwitch>(Instr));
448 break; 451 break;
449 case Inst::Unreachable: 452 case Inst::Unreachable:
450 lowerUnreachable(llvm::cast<InstUnreachable>(Instr)); 453 lowerUnreachable(llvm::cast<InstUnreachable>(Instr));
451 break; 454 break;
452 default: 455 default:
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 case TARGET_LOWERING_CLASS_FOR(X): \ 903 case TARGET_LOWERING_CLASS_FOR(X): \
901 return ::X::createTargetHeaderLowering(Ctx); 904 return ::X::createTargetHeaderLowering(Ctx);
902 #include "SZTargets.def" 905 #include "SZTargets.def"
903 #undef SUBZERO_TARGET 906 #undef SUBZERO_TARGET
904 } 907 }
905 } 908 }
906 909
907 TargetHeaderLowering::~TargetHeaderLowering() = default; 910 TargetHeaderLowering::~TargetHeaderLowering() = default;
908 911
909 } // end of namespace Ice 912 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceTargetLowering.h ('k') | src/IceTargetLoweringARM32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698