| OLD | NEW |
| 1 //===- subzero/src/IceInstX8664.h - x86-64 machine instructions -*- C++ -*-===// | 1 //===- subzero/src/IceInstX8664.h - x86-64 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 /// \file | 10 /// \file |
| 11 /// This file used to house all the X8664 instructions. Subzero has been | 11 /// (Note: x86 instructions are templates, and they are defined in |
| 12 /// modified to use templates for X86 instructions, so all those definitions are | 12 /// src/IceInstX86Base.) |
| 13 /// are in IceInstX86Base.h | |
| 14 /// | 13 /// |
| 15 /// When interacting with the X8664 target (which should only happen in the | 14 /// When interacting with the X8664 target (which should only happen in the |
| 16 /// X8664 TargetLowering) clients have should use the Ice::X8664::Traits::Insts | 15 /// X8664 TargetLowering) clients have should use the Ice::X8664::Traits::Insts |
| 17 /// traits, which hides all the template verboseness behind a type alias. | 16 /// traits, which hides all the template verboseness behind a type alias. |
| 18 /// | 17 /// |
| 19 /// For example, to create an X8664 MOV Instruction, clients should do | 18 /// For example, to create an X8664 MOV Instruction, clients should do |
| 20 /// | 19 /// |
| 21 /// ::Ice::X8664::Traits::Insts::Mov::create | 20 /// ::Ice::X8664::Traits::Insts::Mov::create |
| 22 /// | 21 /// |
| 23 //===----------------------------------------------------------------------===// | 22 //===----------------------------------------------------------------------===// |
| 24 | 23 |
| 25 #ifndef SUBZERO_SRC_ICEINSTX8664_H | 24 #ifndef SUBZERO_SRC_ICEINSTX8664_H |
| 26 #define SUBZERO_SRC_ICEINSTX8664_H | 25 #define SUBZERO_SRC_ICEINSTX8664_H |
| 27 | 26 |
| 28 #include "IceDefs.h" | 27 #include "IceDefs.h" |
| 29 #include "IceInst.h" | 28 #include "IceInst.h" |
| 30 #include "IceInstX86Base.h" | 29 #include "IceInstX86Base.h" |
| 31 #include "IceOperand.h" | 30 #include "IceOperand.h" |
| 32 #include "IceTargetLoweringX8664Traits.h" | 31 #include "IceTargetLoweringX8664Traits.h" |
| 33 | 32 |
| 34 #endif // SUBZERO_SRC_ICEINSTX8664_H | 33 #endif // SUBZERO_SRC_ICEINSTX8664_H |
| OLD | NEW |