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

Side by Side Diff: src/IceTargetLoweringMIPS32.h

Issue 2354293002: Subzero, MIPS32: Intrinsic call Ctlz for i32 (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: 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
OLDNEW
1 //===- subzero/src/IceTargetLoweringMIPS32.h - MIPS32 lowering ---*- C++-*-===// 1 //===- subzero/src/IceTargetLoweringMIPS32.h - MIPS32 lowering ---*- 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 } 257 }
258 258
259 void _c_un_d(Variable *Src0, Variable *Src1) { 259 void _c_un_d(Variable *Src0, Variable *Src1) {
260 Context.insert<InstMIPS32C_un_d>(Src0, Src1); 260 Context.insert<InstMIPS32C_un_d>(Src0, Src1);
261 } 261 }
262 262
263 void _c_un_s(Variable *Src0, Variable *Src1) { 263 void _c_un_s(Variable *Src0, Variable *Src1) {
264 Context.insert<InstMIPS32C_un_s>(Src0, Src1); 264 Context.insert<InstMIPS32C_un_s>(Src0, Src1);
265 } 265 }
266 266
267 void _clz(Variable *Dest, Variable *Src) {
268 Context.insert<InstMIPS32Clz>(Dest, Src);
269 }
270
267 void _cvt_d_l(Variable *Dest, Variable *Src) { 271 void _cvt_d_l(Variable *Dest, Variable *Src) {
268 Context.insert<InstMIPS32Cvt_d_l>(Dest, Src); 272 Context.insert<InstMIPS32Cvt_d_l>(Dest, Src);
269 } 273 }
270 274
271 void _cvt_d_s(Variable *Dest, Variable *Src) { 275 void _cvt_d_s(Variable *Dest, Variable *Src) {
272 Context.insert<InstMIPS32Cvt_d_s>(Dest, Src); 276 Context.insert<InstMIPS32Cvt_d_s>(Dest, Src);
273 } 277 }
274 278
275 void _cvt_d_w(Variable *Dest, Variable *Src) { 279 void _cvt_d_w(Variable *Dest, Variable *Src) {
276 Context.insert<InstMIPS32Cvt_d_w>(Dest, Src); 280 Context.insert<InstMIPS32Cvt_d_w>(Dest, Src);
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
849 explicit TargetHeaderMIPS32(GlobalContext *Ctx); 853 explicit TargetHeaderMIPS32(GlobalContext *Ctx);
850 854
851 private: 855 private:
852 ~TargetHeaderMIPS32() = default; 856 ~TargetHeaderMIPS32() = default;
853 }; 857 };
854 858
855 } // end of namespace MIPS32 859 } // end of namespace MIPS32
856 } // end of namespace Ice 860 } // end of namespace Ice
857 861
858 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H 862 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698