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

Side by Side Diff: src/IceInstMIPS32.h

Issue 2377783002: Subzero, MIPS32: MOVZ instruction encoding (Closed)
Patch Set: Created 4 years, 2 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/IceAssemblerMIPS32.cpp ('k') | src/IceInstMIPS32.cpp » ('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/IceInstMIPS32.h - MIPS32 machine instrs --*- C++ -*-----===// 1 //===- subzero/src/IceInstMIPS32.h - MIPS32 machine instrs --*- C++ -*-----===//
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 1267 matching lines...) Expand 10 before | Expand all | Expand 10 after
1278 template <> void InstMIPS32Mflo::emitIAS(const Cfg *Func) const; 1278 template <> void InstMIPS32Mflo::emitIAS(const Cfg *Func) const;
1279 template <> void InstMIPS32Mfhi::emit(const Cfg *Func) const; 1279 template <> void InstMIPS32Mfhi::emit(const Cfg *Func) const;
1280 template <> void InstMIPS32Mfhi::emitIAS(const Cfg *Func) const; 1280 template <> void InstMIPS32Mfhi::emitIAS(const Cfg *Func) const;
1281 template <> void InstMIPS32Mov_d::emitIAS(const Cfg *Func) const; 1281 template <> void InstMIPS32Mov_d::emitIAS(const Cfg *Func) const;
1282 template <> void InstMIPS32Mov_s::emitIAS(const Cfg *Func) const; 1282 template <> void InstMIPS32Mov_s::emitIAS(const Cfg *Func) const;
1283 template <> void InstMIPS32Movf::emitIAS(const Cfg *Func) const; 1283 template <> void InstMIPS32Movf::emitIAS(const Cfg *Func) const;
1284 template <> void InstMIPS32Movn::emitIAS(const Cfg *Func) const; 1284 template <> void InstMIPS32Movn::emitIAS(const Cfg *Func) const;
1285 template <> void InstMIPS32Movn_d::emitIAS(const Cfg *Func) const; 1285 template <> void InstMIPS32Movn_d::emitIAS(const Cfg *Func) const;
1286 template <> void InstMIPS32Movn_s::emitIAS(const Cfg *Func) const; 1286 template <> void InstMIPS32Movn_s::emitIAS(const Cfg *Func) const;
1287 template <> void InstMIPS32Movt::emitIAS(const Cfg *Func) const; 1287 template <> void InstMIPS32Movt::emitIAS(const Cfg *Func) const;
1288 template <> void InstMIPS32Movz::emitIAS(const Cfg *Func) const;
1288 template <> void InstMIPS32Movz_d::emitIAS(const Cfg *Func) const; 1289 template <> void InstMIPS32Movz_d::emitIAS(const Cfg *Func) const;
1289 template <> void InstMIPS32Movz_s::emitIAS(const Cfg *Func) const; 1290 template <> void InstMIPS32Movz_s::emitIAS(const Cfg *Func) const;
1290 template <> void InstMIPS32Mtc1::emit(const Cfg *Func) const; 1291 template <> void InstMIPS32Mtc1::emit(const Cfg *Func) const;
1291 template <> void InstMIPS32Mtc1::emitIAS(const Cfg *Func) const; 1292 template <> void InstMIPS32Mtc1::emitIAS(const Cfg *Func) const;
1292 template <> void InstMIPS32Mtlo::emit(const Cfg *Func) const; 1293 template <> void InstMIPS32Mtlo::emit(const Cfg *Func) const;
1293 template <> void InstMIPS32Mtlo::emitIAS(const Cfg *Func) const; 1294 template <> void InstMIPS32Mtlo::emitIAS(const Cfg *Func) const;
1294 template <> void InstMIPS32Mthi::emit(const Cfg *Func) const; 1295 template <> void InstMIPS32Mthi::emit(const Cfg *Func) const;
1295 template <> void InstMIPS32Mthi::emitIAS(const Cfg *Func) const; 1296 template <> void InstMIPS32Mthi::emitIAS(const Cfg *Func) const;
1296 template <> void InstMIPS32Mul::emitIAS(const Cfg *Func) const; 1297 template <> void InstMIPS32Mul::emitIAS(const Cfg *Func) const;
1297 template <> void InstMIPS32Mul_d::emitIAS(const Cfg *Func) const; 1298 template <> void InstMIPS32Mul_d::emitIAS(const Cfg *Func) const;
(...skipping 24 matching lines...) Expand all
1322 template <> void InstMIPS32Trunc_l_s::emitIAS(const Cfg *Func) const; 1323 template <> void InstMIPS32Trunc_l_s::emitIAS(const Cfg *Func) const;
1323 template <> void InstMIPS32Trunc_w_d::emitIAS(const Cfg *Func) const; 1324 template <> void InstMIPS32Trunc_w_d::emitIAS(const Cfg *Func) const;
1324 template <> void InstMIPS32Trunc_w_s::emitIAS(const Cfg *Func) const; 1325 template <> void InstMIPS32Trunc_w_s::emitIAS(const Cfg *Func) const;
1325 template <> void InstMIPS32Xor::emitIAS(const Cfg *Func) const; 1326 template <> void InstMIPS32Xor::emitIAS(const Cfg *Func) const;
1326 template <> void InstMIPS32Xori::emitIAS(const Cfg *Func) const; 1327 template <> void InstMIPS32Xori::emitIAS(const Cfg *Func) const;
1327 1328
1328 } // end of namespace MIPS32 1329 } // end of namespace MIPS32
1329 } // end of namespace Ice 1330 } // end of namespace Ice
1330 1331
1331 #endif // SUBZERO_SRC_ICEINSTMIPS32_H 1332 #endif // SUBZERO_SRC_ICEINSTMIPS32_H
OLDNEW
« no previous file with comments | « src/IceAssemblerMIPS32.cpp ('k') | src/IceInstMIPS32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698