OLD | NEW |
1 //===- subzero/src/IceInstX8632.h - x86-32 machine instructions -*- C++ -*-===// | 1 //===- subzero/src/IceInstX8632.h - x86-32 machine 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 // This file declares the InstX8632 and OperandX8632 classes and | 10 // This file declares the InstX8632 and OperandX8632 classes and |
11 // their subclasses. This represents the machine instructions and | 11 // their subclasses. This represents the machine instructions and |
12 // operands used for x86-32 code selection. | 12 // operands used for x86-32 code selection. |
13 // | 13 // |
14 //===----------------------------------------------------------------------===// | 14 //===----------------------------------------------------------------------===// |
15 | 15 |
16 #ifndef SUBZERO_SRC_ICEINSTX8632_H | 16 #ifndef SUBZERO_SRC_ICEINSTX8632_H |
17 #define SUBZERO_SRC_ICEINSTX8632_H | 17 #define SUBZERO_SRC_ICEINSTX8632_H |
18 | 18 |
19 #include "assembler_ia32.h" | 19 #include "assembler_ia32.h" |
| 20 #include "IceConditionCodesX8632.h" |
20 #include "IceDefs.h" | 21 #include "IceDefs.h" |
21 #include "IceInst.h" | 22 #include "IceInst.h" |
22 #include "IceConditionCodesX8632.h" | |
23 #include "IceInstX8632.def" | 23 #include "IceInstX8632.def" |
24 #include "IceOperand.h" | 24 #include "IceOperand.h" |
25 | 25 |
26 namespace Ice { | 26 namespace Ice { |
27 | 27 |
28 class TargetX8632; | 28 class TargetX8632; |
29 | 29 |
30 // OperandX8632 extends the Operand hierarchy. Its subclasses are | 30 // OperandX8632 extends the Operand hierarchy. Its subclasses are |
31 // OperandX8632Mem and VariableSplit. | 31 // OperandX8632Mem and VariableSplit. |
32 class OperandX8632 : public Operand { | 32 class OperandX8632 : public Operand { |
(...skipping 1670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1703 template <> void InstX8632Pinsr::emitIAS(const Cfg *Func) const; | 1703 template <> void InstX8632Pinsr::emitIAS(const Cfg *Func) const; |
1704 template <> void InstX8632Movsx::emitIAS(const Cfg *Func) const; | 1704 template <> void InstX8632Movsx::emitIAS(const Cfg *Func) const; |
1705 template <> void InstX8632Movzx::emitIAS(const Cfg *Func) const; | 1705 template <> void InstX8632Movzx::emitIAS(const Cfg *Func) const; |
1706 template <> void InstX8632Pmull::emitIAS(const Cfg *Func) const; | 1706 template <> void InstX8632Pmull::emitIAS(const Cfg *Func) const; |
1707 template <> void InstX8632Pshufd::emitIAS(const Cfg *Func) const; | 1707 template <> void InstX8632Pshufd::emitIAS(const Cfg *Func) const; |
1708 template <> void InstX8632Shufps::emitIAS(const Cfg *Func) const; | 1708 template <> void InstX8632Shufps::emitIAS(const Cfg *Func) const; |
1709 | 1709 |
1710 } // end of namespace Ice | 1710 } // end of namespace Ice |
1711 | 1711 |
1712 #endif // SUBZERO_SRC_ICEINSTX8632_H | 1712 #endif // SUBZERO_SRC_ICEINSTX8632_H |
OLD | NEW |