| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |