OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |