| 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 |
| 11 /// This file defines the InstX86Base template class, as well as the generic X86 | 11 /// \brief This file defines the InstX86Base template class, as well as the |
| 12 /// Instruction class hierarchy. Only X86 instructions common across all/most | 12 /// generic X86 Instruction class hierarchy. |
| 13 /// X86 targets should be defined here, with target-specific instructions | 13 /// |
| 14 /// declared in the target's traits. | 14 /// Only X86 instructions common across all/most X86 targets should be defined |
| 15 /// here, with target-specific instructions declared in the target's traits. |
| 15 /// | 16 /// |
| 16 //===----------------------------------------------------------------------===// | 17 //===----------------------------------------------------------------------===// |
| 17 | 18 |
| 18 #ifndef SUBZERO_SRC_ICEINSTX86BASE_H | 19 #ifndef SUBZERO_SRC_ICEINSTX86BASE_H |
| 19 #define SUBZERO_SRC_ICEINSTX86BASE_H | 20 #define SUBZERO_SRC_ICEINSTX86BASE_H |
| 20 | 21 |
| 21 #include "IceDefs.h" | 22 #include "IceDefs.h" |
| 22 #include "IceInst.h" | 23 #include "IceInst.h" |
| 23 #include "IceOperand.h" | 24 #include "IceOperand.h" |
| 24 | 25 |
| (...skipping 3190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3215 &InstX86Base<Machine>::Traits::Assembler::psrl}; \ | 3216 &InstX86Base<Machine>::Traits::Assembler::psrl}; \ |
| 3216 } \ | 3217 } \ |
| 3217 } | 3218 } |
| 3218 | 3219 |
| 3219 } // end of namespace X86Internal | 3220 } // end of namespace X86Internal |
| 3220 } // end of namespace Ice | 3221 } // end of namespace Ice |
| 3221 | 3222 |
| 3222 #include "IceInstX86BaseImpl.h" | 3223 #include "IceInstX86BaseImpl.h" |
| 3223 | 3224 |
| 3224 #endif // SUBZERO_SRC_ICEINSTX86BASE_H | 3225 #endif // SUBZERO_SRC_ICEINSTX86BASE_H |
| OLD | NEW |