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

Side by Side Diff: src/IceTargetLoweringMIPS32.h

Issue 1989303002: Subzero, MIPS32: Implements integer division instructions sdiv, udiv, srem, urem (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Workaround for DIV with three operands Created 4 years, 7 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/IceInstMIPS32.cpp ('k') | src/IceTargetLoweringMIPS32.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/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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 void _br(CfgNode *Target) { Context.insert<InstMIPS32Br>(Target); } 157 void _br(CfgNode *Target) { Context.insert<InstMIPS32Br>(Target); }
158 158
159 void _ret(Variable *RA, Variable *Src0 = nullptr) { 159 void _ret(Variable *RA, Variable *Src0 = nullptr) {
160 Context.insert<InstMIPS32Ret>(RA, Src0); 160 Context.insert<InstMIPS32Ret>(RA, Src0);
161 } 161 }
162 162
163 void _addiu(Variable *Dest, Variable *Src, uint32_t Imm) { 163 void _addiu(Variable *Dest, Variable *Src, uint32_t Imm) {
164 Context.insert<InstMIPS32Addiu>(Dest, Src, Imm); 164 Context.insert<InstMIPS32Addiu>(Dest, Src, Imm);
165 } 165 }
166 166
167 void _div(Variable *Dest, Variable *Src0, Variable *Src1) {
168 Context.insert<InstMIPS32Div>(Dest, Src0, Src1);
169 }
170
171 void _divu(Variable *Dest, Variable *Src0, Variable *Src1) {
172 Context.insert<InstMIPS32Divu>(Dest, Src0, Src1);
173 }
174
167 void _lui(Variable *Dest, uint32_t Imm) { 175 void _lui(Variable *Dest, uint32_t Imm) {
168 Context.insert<InstMIPS32Lui>(Dest, Imm); 176 Context.insert<InstMIPS32Lui>(Dest, Imm);
169 } 177 }
170 178
171 void _mov(Variable *Dest, Operand *Src0) { 179 void _mov(Variable *Dest, Operand *Src0) {
172 assert(Dest != nullptr); 180 assert(Dest != nullptr);
173 // Variable* Src0_ = llvm::dyn_cast<Variable>(Src0); 181 // Variable* Src0_ = llvm::dyn_cast<Variable>(Src0);
174 if (llvm::isa<ConstantRelocatable>(Src0)) { 182 if (llvm::isa<ConstantRelocatable>(Src0)) {
175 Context.insert<InstMIPS32La>(Dest, Src0); 183 Context.insert<InstMIPS32La>(Dest, Src0);
176 } else { 184 } else {
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 explicit TargetHeaderMIPS32(GlobalContext *Ctx); 428 explicit TargetHeaderMIPS32(GlobalContext *Ctx);
421 429
422 private: 430 private:
423 ~TargetHeaderMIPS32() = default; 431 ~TargetHeaderMIPS32() = default;
424 }; 432 };
425 433
426 } // end of namespace MIPS32 434 } // end of namespace MIPS32
427 } // end of namespace Ice 435 } // end of namespace Ice
428 436
429 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H 437 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H
OLDNEW
« no previous file with comments | « src/IceInstMIPS32.cpp ('k') | src/IceTargetLoweringMIPS32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698