| OLD | NEW |
| 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 24 matching lines...) Expand all Loading... |
| 35 public: | 35 public: |
| 36 enum InstKindMIPS32 { k__Start = Inst::Target, Ret }; | 36 enum InstKindMIPS32 { k__Start = Inst::Target, Ret }; |
| 37 | 37 |
| 38 static const char *getWidthString(Type Ty); | 38 static const char *getWidthString(Type Ty); |
| 39 | 39 |
| 40 void dump(const Cfg *Func) const override; | 40 void dump(const Cfg *Func) const override; |
| 41 | 41 |
| 42 protected: | 42 protected: |
| 43 InstMIPS32(Cfg *Func, InstKindMIPS32 Kind, SizeT Maxsrcs, Variable *Dest) | 43 InstMIPS32(Cfg *Func, InstKindMIPS32 Kind, SizeT Maxsrcs, Variable *Dest) |
| 44 : InstTarget(Func, static_cast<InstKind>(Kind), Maxsrcs, Dest) {} | 44 : InstTarget(Func, static_cast<InstKind>(Kind), Maxsrcs, Dest) {} |
| 45 ~InstMIPS32() override {} | |
| 46 static bool isClassof(const Inst *Inst, InstKindMIPS32 MyKind) { | 45 static bool isClassof(const Inst *Inst, InstKindMIPS32 MyKind) { |
| 47 return Inst->getKind() == static_cast<InstKind>(MyKind); | 46 return Inst->getKind() == static_cast<InstKind>(MyKind); |
| 48 } | 47 } |
| 49 }; | 48 }; |
| 50 | 49 |
| 51 /// Ret pseudo-instruction. This is actually a "jr" instruction with | 50 /// Ret pseudo-instruction. This is actually a "jr" instruction with |
| 52 /// an "ra" register operand, but epilogue lowering will search for a Ret | 51 /// an "ra" register operand, but epilogue lowering will search for a Ret |
| 53 /// instead of a generic "jr". This instruction also takes a Source | 52 /// instead of a generic "jr". This instruction also takes a Source |
| 54 /// operand (for non-void returning functions) for liveness analysis, though | 53 /// operand (for non-void returning functions) for liveness analysis, though |
| 55 /// a FakeUse before the ret would do just as well. | 54 /// a FakeUse before the ret would do just as well. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 67 return new (Func->allocate<InstMIPS32Ret>()) | 66 return new (Func->allocate<InstMIPS32Ret>()) |
| 68 InstMIPS32Ret(Func, RA, Source); | 67 InstMIPS32Ret(Func, RA, Source); |
| 69 } | 68 } |
| 70 void emit(const Cfg *Func) const override; | 69 void emit(const Cfg *Func) const override; |
| 71 void emitIAS(const Cfg *Func) const override; | 70 void emitIAS(const Cfg *Func) const override; |
| 72 void dump(const Cfg *Func) const override; | 71 void dump(const Cfg *Func) const override; |
| 73 static bool classof(const Inst *Inst) { return isClassof(Inst, Ret); } | 72 static bool classof(const Inst *Inst) { return isClassof(Inst, Ret); } |
| 74 | 73 |
| 75 private: | 74 private: |
| 76 InstMIPS32Ret(Cfg *Func, Variable *RA, Variable *Source); | 75 InstMIPS32Ret(Cfg *Func, Variable *RA, Variable *Source); |
| 77 ~InstMIPS32Ret() override {} | |
| 78 }; | 76 }; |
| 79 | 77 |
| 80 } // end of namespace Ice | 78 } // end of namespace Ice |
| 81 | 79 |
| 82 #endif // SUBZERO_SRC_ICEINSTMIPS32_H | 80 #endif // SUBZERO_SRC_ICEINSTMIPS32_H |
| OLD | NEW |