OLD | NEW |
1 //===- subzero/src/IceInstX86Base.h - Generic x86 instructions -*- C++ -*--===// | 1 //===- subzero/src/IceInstX86Base.h - Generic x86 instructions -*- 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 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1144 template <class Machine> | 1144 template <class Machine> |
1145 class InstX86Movzx | 1145 class InstX86Movzx |
1146 : public InstX86BaseUnaryopGPR<Machine, InstX86Base<Machine>::Movzx> { | 1146 : public InstX86BaseUnaryopGPR<Machine, InstX86Base<Machine>::Movzx> { |
1147 public: | 1147 public: |
1148 static InstX86Movzx *create(Cfg *Func, Variable *Dest, Operand *Src) { | 1148 static InstX86Movzx *create(Cfg *Func, Variable *Dest, Operand *Src) { |
1149 assert(typeWidthInBytes(Dest->getType()) > | 1149 assert(typeWidthInBytes(Dest->getType()) > |
1150 typeWidthInBytes(Src->getType())); | 1150 typeWidthInBytes(Src->getType())); |
1151 return new (Func->allocate<InstX86Movzx>()) InstX86Movzx(Func, Dest, Src); | 1151 return new (Func->allocate<InstX86Movzx>()) InstX86Movzx(Func, Dest, Src); |
1152 } | 1152 } |
1153 | 1153 |
| 1154 void emit(const Cfg *Func) const override; |
| 1155 |
1154 void emitIAS(const Cfg *Func) const override; | 1156 void emitIAS(const Cfg *Func) const override; |
1155 | 1157 |
1156 private: | 1158 private: |
1157 InstX86Movzx(Cfg *Func, Variable *Dest, Operand *Src) | 1159 InstX86Movzx(Cfg *Func, Variable *Dest, Operand *Src) |
1158 : InstX86BaseUnaryopGPR<Machine, InstX86Base<Machine>::Movzx>(Func, Dest, | 1160 : InstX86BaseUnaryopGPR<Machine, InstX86Base<Machine>::Movzx>(Func, Dest, |
1159 Src) {} | 1161 Src) {} |
1160 }; | 1162 }; |
1161 | 1163 |
1162 template <class Machine> | 1164 template <class Machine> |
1163 class InstX86Movd | 1165 class InstX86Movd |
(...skipping 2272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3436 &InstX86Base<Machine>::Traits::Assembler::psrl}; \ | 3438 &InstX86Base<Machine>::Traits::Assembler::psrl}; \ |
3437 } \ | 3439 } \ |
3438 } | 3440 } |
3439 | 3441 |
3440 } // end of namespace X86Internal | 3442 } // end of namespace X86Internal |
3441 } // end of namespace Ice | 3443 } // end of namespace Ice |
3442 | 3444 |
3443 #include "IceInstX86BaseImpl.h" | 3445 #include "IceInstX86BaseImpl.h" |
3444 | 3446 |
3445 #endif // SUBZERO_SRC_ICEINSTX86BASE_H | 3447 #endif // SUBZERO_SRC_ICEINSTX86BASE_H |
OLD | NEW |