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

Side by Side Diff: src/IceInstMIPS32.cpp

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.h ('k') | src/IceTargetLoweringMIPS32.h » ('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.cpp - Mips32 instruction implementation --===// 1 //===- subzero/src/IceInstMips32.cpp - Mips32 instruction implementation --===//
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 } 50 }
51 51
52 template <> const char *InstMIPS32Addiu::Opcode = "addiu"; 52 template <> const char *InstMIPS32Addiu::Opcode = "addiu";
53 template <> const char *InstMIPS32Lui::Opcode = "lui"; 53 template <> const char *InstMIPS32Lui::Opcode = "lui";
54 template <> const char *InstMIPS32La::Opcode = "la"; 54 template <> const char *InstMIPS32La::Opcode = "la";
55 // Three-addr ops 55 // Three-addr ops
56 template <> const char *InstMIPS32Add::Opcode = "add"; 56 template <> const char *InstMIPS32Add::Opcode = "add";
57 template <> const char *InstMIPS32Addu::Opcode = "addu"; 57 template <> const char *InstMIPS32Addu::Opcode = "addu";
58 template <> const char *InstMIPS32And::Opcode = "and"; 58 template <> const char *InstMIPS32And::Opcode = "and";
59 template <> const char *InstMIPS32Andi::Opcode = "andi"; 59 template <> const char *InstMIPS32Andi::Opcode = "andi";
60 template <> const char *InstMIPS32Div::Opcode = "div";
61 template <> const char *InstMIPS32Divu::Opcode = "divu";
60 template <> const char *InstMIPS32Mfhi::Opcode = "mfhi"; 62 template <> const char *InstMIPS32Mfhi::Opcode = "mfhi";
61 template <> const char *InstMIPS32Mflo::Opcode = "mflo"; 63 template <> const char *InstMIPS32Mflo::Opcode = "mflo";
62 template <> const char *InstMIPS32Mthi::Opcode = "mthi"; 64 template <> const char *InstMIPS32Mthi::Opcode = "mthi";
63 template <> const char *InstMIPS32Mtlo::Opcode = "mtlo"; 65 template <> const char *InstMIPS32Mtlo::Opcode = "mtlo";
64 template <> const char *InstMIPS32Mul::Opcode = "mul"; 66 template <> const char *InstMIPS32Mul::Opcode = "mul";
65 template <> const char *InstMIPS32Mult::Opcode = "mult"; 67 template <> const char *InstMIPS32Mult::Opcode = "mult";
66 template <> const char *InstMIPS32Multu::Opcode = "multu"; 68 template <> const char *InstMIPS32Multu::Opcode = "multu";
67 template <> const char *InstMIPS32Or::Opcode = "or"; 69 template <> const char *InstMIPS32Or::Opcode = "or";
68 template <> const char *InstMIPS32Ori::Opcode = "ori"; 70 template <> const char *InstMIPS32Ori::Opcode = "ori";
69 template <> const char *InstMIPS32Sll::Opcode = "sll"; 71 template <> const char *InstMIPS32Sll::Opcode = "sll";
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 } 460 }
459 461
460 Str << "\t"; 462 Str << "\t";
461 getDest()->emit(Func); 463 getDest()->emit(Func);
462 Str << ", "; 464 Str << ", ";
463 getSrc(0)->emit(Func); 465 getSrc(0)->emit(Func);
464 } 466 }
465 467
466 } // end of namespace MIPS32 468 } // end of namespace MIPS32
467 } // end of namespace Ice 469 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceInstMIPS32.h ('k') | src/IceTargetLoweringMIPS32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698