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

Side by Side Diff: src/IceInstMIPS32.h

Issue 2337023003: Subzero, MIPS32: lowerSelect for i1, i8, i16, i32, f32, f64 (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addressing review comments Created 4 years, 3 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 | « no previous file | src/IceInstMIPS32.cpp » ('j') | src/IceTargetLoweringMIPS32.cpp » ('J')
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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 Lui, 221 Lui,
222 Lw, 222 Lw,
223 Lwc1, 223 Lwc1,
224 Mfc1, 224 Mfc1,
225 Mfhi, 225 Mfhi,
226 Mflo, 226 Mflo,
227 Mov, // actually a pseudo op for addi rd, rs, 0 227 Mov, // actually a pseudo op for addi rd, rs, 0
228 Mov_d, 228 Mov_d,
229 Mov_s, 229 Mov_s,
230 Movf, 230 Movf,
231 Movn,
232 Movn_d,
233 Movn_s,
231 Movt, 234 Movt,
235 Movz,
236 Movz_d,
237 Movz_s,
232 Mtc1, 238 Mtc1,
233 Mthi, 239 Mthi,
234 Mtlo, 240 Mtlo,
235 Mul, 241 Mul,
236 Mul_d, 242 Mul_d,
237 Mul_s, 243 Mul_s,
238 Mult, 244 Mult,
239 Multu, 245 Multu,
240 Or, 246 Or,
241 Ori, 247 Ori,
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
1071 using InstMIPS32Ldc1 = InstMIPS32Load<InstMIPS32::Ldc1>; 1077 using InstMIPS32Ldc1 = InstMIPS32Load<InstMIPS32::Ldc1>;
1072 using InstMIPS32Lui = InstMIPS32UnaryopGPR<InstMIPS32::Lui>; 1078 using InstMIPS32Lui = InstMIPS32UnaryopGPR<InstMIPS32::Lui>;
1073 using InstMIPS32Lw = InstMIPS32Load<InstMIPS32::Lw>; 1079 using InstMIPS32Lw = InstMIPS32Load<InstMIPS32::Lw>;
1074 using InstMIPS32Lwc1 = InstMIPS32Load<InstMIPS32::Lwc1>; 1080 using InstMIPS32Lwc1 = InstMIPS32Load<InstMIPS32::Lwc1>;
1075 using InstMIPS32Mfc1 = InstMIPS32TwoAddrGPR<InstMIPS32::Mfc1>; 1081 using InstMIPS32Mfc1 = InstMIPS32TwoAddrGPR<InstMIPS32::Mfc1>;
1076 using InstMIPS32Mfhi = InstMIPS32UnaryopGPR<InstMIPS32::Mfhi>; 1082 using InstMIPS32Mfhi = InstMIPS32UnaryopGPR<InstMIPS32::Mfhi>;
1077 using InstMIPS32Mflo = InstMIPS32UnaryopGPR<InstMIPS32::Mflo>; 1083 using InstMIPS32Mflo = InstMIPS32UnaryopGPR<InstMIPS32::Mflo>;
1078 using InstMIPS32Mov_d = InstMIPS32TwoAddrFPR<InstMIPS32::Mov_d>; 1084 using InstMIPS32Mov_d = InstMIPS32TwoAddrFPR<InstMIPS32::Mov_d>;
1079 using InstMIPS32Mov_s = InstMIPS32TwoAddrFPR<InstMIPS32::Mov_s>; 1085 using InstMIPS32Mov_s = InstMIPS32TwoAddrFPR<InstMIPS32::Mov_s>;
1080 using InstMIPS32Movf = InstMIPS32MovConditional<InstMIPS32::Movf>; 1086 using InstMIPS32Movf = InstMIPS32MovConditional<InstMIPS32::Movf>;
1087 using InstMIPS32Movn = InstMIPS32ThreeAddrGPR<InstMIPS32::Movn>;
1088 using InstMIPS32Movn_d = InstMIPS32ThreeAddrGPR<InstMIPS32::Movn_d>;
1089 using InstMIPS32Movn_s = InstMIPS32ThreeAddrGPR<InstMIPS32::Movn_s>;
1081 using InstMIPS32Movt = InstMIPS32MovConditional<InstMIPS32::Movt>; 1090 using InstMIPS32Movt = InstMIPS32MovConditional<InstMIPS32::Movt>;
1091 using InstMIPS32Movz = InstMIPS32ThreeAddrGPR<InstMIPS32::Movz>;
1092 using InstMIPS32Movz_d = InstMIPS32ThreeAddrGPR<InstMIPS32::Movz_d>;
1093 using InstMIPS32Movz_s = InstMIPS32ThreeAddrGPR<InstMIPS32::Movz_s>;
1082 using InstMIPS32Mtc1 = InstMIPS32TwoAddrGPR<InstMIPS32::Mtc1>; 1094 using InstMIPS32Mtc1 = InstMIPS32TwoAddrGPR<InstMIPS32::Mtc1>;
1083 using InstMIPS32Mthi = InstMIPS32UnaryopGPR<InstMIPS32::Mthi>; 1095 using InstMIPS32Mthi = InstMIPS32UnaryopGPR<InstMIPS32::Mthi>;
1084 using InstMIPS32Mtlo = InstMIPS32UnaryopGPR<InstMIPS32::Mtlo>; 1096 using InstMIPS32Mtlo = InstMIPS32UnaryopGPR<InstMIPS32::Mtlo>;
1085 using InstMIPS32Mul = InstMIPS32ThreeAddrGPR<InstMIPS32::Mul>; 1097 using InstMIPS32Mul = InstMIPS32ThreeAddrGPR<InstMIPS32::Mul>;
1086 using InstMIPS32Mul_d = InstMIPS32ThreeAddrFPR<InstMIPS32::Mul_d>; 1098 using InstMIPS32Mul_d = InstMIPS32ThreeAddrFPR<InstMIPS32::Mul_d>;
1087 using InstMIPS32Mul_s = InstMIPS32ThreeAddrFPR<InstMIPS32::Mul_s>; 1099 using InstMIPS32Mul_s = InstMIPS32ThreeAddrFPR<InstMIPS32::Mul_s>;
1088 using InstMIPS32Mult = InstMIPS32ThreeAddrGPR<InstMIPS32::Mult>; 1100 using InstMIPS32Mult = InstMIPS32ThreeAddrGPR<InstMIPS32::Mult>;
1089 using InstMIPS32Multu = InstMIPS32ThreeAddrGPR<InstMIPS32::Multu>; 1101 using InstMIPS32Multu = InstMIPS32ThreeAddrGPR<InstMIPS32::Multu>;
1090 using InstMIPS32Or = InstMIPS32ThreeAddrGPR<InstMIPS32::Or>; 1102 using InstMIPS32Or = InstMIPS32ThreeAddrGPR<InstMIPS32::Or>;
1091 using InstMIPS32Ori = InstMIPS32Imm16<InstMIPS32::Ori>; 1103 using InstMIPS32Ori = InstMIPS32Imm16<InstMIPS32::Ori>;
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
1164 template <> void InstMIPS32Mtlo::emit(const Cfg *Func) const; 1176 template <> void InstMIPS32Mtlo::emit(const Cfg *Func) const;
1165 template <> void InstMIPS32Mthi::emit(const Cfg *Func) const; 1177 template <> void InstMIPS32Mthi::emit(const Cfg *Func) const;
1166 template <> void InstMIPS32Mult::emit(const Cfg *Func) const; 1178 template <> void InstMIPS32Mult::emit(const Cfg *Func) const;
1167 template <> void InstMIPS32Multu::emit(const Cfg *Func) const; 1179 template <> void InstMIPS32Multu::emit(const Cfg *Func) const;
1168 template <> void InstMIPS32Lui::emit(const Cfg *Func) const; 1180 template <> void InstMIPS32Lui::emit(const Cfg *Func) const;
1169 1181
1170 } // end of namespace MIPS32 1182 } // end of namespace MIPS32
1171 } // end of namespace Ice 1183 } // end of namespace Ice
1172 1184
1173 #endif // SUBZERO_SRC_ICEINSTMIPS32_H 1185 #endif // SUBZERO_SRC_ICEINSTMIPS32_H
OLDNEW
« no previous file with comments | « no previous file | src/IceInstMIPS32.cpp » ('j') | src/IceTargetLoweringMIPS32.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698