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

Side by Side Diff: src/IceTargetLoweringMIPS32.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/IceTargetLoweringMIPS32.h ('k') | src/IceTargetLoweringX86Base.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/IceTargetLoweringMIPS32.cpp - MIPS32 lowering ----------===// 1 //===- subzero/src/IceTargetLoweringMIPS32.cpp - MIPS32 lowering ----------===//
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 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after
1138 UnimplementedLoweringError(this, Instr); 1138 UnimplementedLoweringError(this, Instr);
1139 } 1139 }
1140 } 1140 }
1141 _ret(getPhysicalRegister(RegMIPS32::Reg_RA), Reg); 1141 _ret(getPhysicalRegister(RegMIPS32::Reg_RA), Reg);
1142 } 1142 }
1143 1143
1144 void TargetMIPS32::lowerSelect(const InstSelect *Instr) { 1144 void TargetMIPS32::lowerSelect(const InstSelect *Instr) {
1145 UnimplementedLoweringError(this, Instr); 1145 UnimplementedLoweringError(this, Instr);
1146 } 1146 }
1147 1147
1148 void TargetMIPS32::lowerShuffleVector(const InstShuffleVector *Instr) {
1149 UnimplementedLoweringError(this, Instr);
1150 }
1151
1148 void TargetMIPS32::lowerStore(const InstStore *Instr) { 1152 void TargetMIPS32::lowerStore(const InstStore *Instr) {
1149 UnimplementedLoweringError(this, Instr); 1153 UnimplementedLoweringError(this, Instr);
1150 } 1154 }
1151 1155
1152 void TargetMIPS32::doAddressOptStore() { UnimplementedError(getFlags()); } 1156 void TargetMIPS32::doAddressOptStore() { UnimplementedError(getFlags()); }
1153 1157
1154 void TargetMIPS32::lowerSwitch(const InstSwitch *Instr) { 1158 void TargetMIPS32::lowerSwitch(const InstSwitch *Instr) {
1155 UnimplementedLoweringError(this, Instr); 1159 UnimplementedLoweringError(this, Instr);
1156 } 1160 }
1157 1161
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
1321 Str << "\t.set\t" 1325 Str << "\t.set\t"
1322 << "nomips16\n"; 1326 << "nomips16\n";
1323 } 1327 }
1324 1328
1325 SmallBitVector TargetMIPS32::TypeToRegisterSet[RCMIPS32_NUM]; 1329 SmallBitVector TargetMIPS32::TypeToRegisterSet[RCMIPS32_NUM];
1326 SmallBitVector TargetMIPS32::TypeToRegisterSetUnfiltered[RCMIPS32_NUM]; 1330 SmallBitVector TargetMIPS32::TypeToRegisterSetUnfiltered[RCMIPS32_NUM];
1327 SmallBitVector TargetMIPS32::RegisterAliases[RegMIPS32::Reg_NUM]; 1331 SmallBitVector TargetMIPS32::RegisterAliases[RegMIPS32::Reg_NUM];
1328 1332
1329 } // end of namespace MIPS32 1333 } // end of namespace MIPS32
1330 } // end of namespace Ice 1334 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceTargetLoweringMIPS32.h ('k') | src/IceTargetLoweringX86Base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698