Chromium Code Reviews| 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 2762 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2773 using Cvt = InstX86Cvt<Machine>; | 2773 using Cvt = InstX86Cvt<Machine>; |
| 2774 using Icmp = InstX86Icmp<Machine>; | 2774 using Icmp = InstX86Icmp<Machine>; |
| 2775 using Ucomiss = InstX86Ucomiss<Machine>; | 2775 using Ucomiss = InstX86Ucomiss<Machine>; |
| 2776 using UD2 = InstX86UD2<Machine>; | 2776 using UD2 = InstX86UD2<Machine>; |
| 2777 using Test = InstX86Test<Machine>; | 2777 using Test = InstX86Test<Machine>; |
| 2778 using Mfence = InstX86Mfence<Machine>; | 2778 using Mfence = InstX86Mfence<Machine>; |
| 2779 using Store = InstX86Store<Machine>; | 2779 using Store = InstX86Store<Machine>; |
| 2780 using StoreP = InstX86StoreP<Machine>; | 2780 using StoreP = InstX86StoreP<Machine>; |
| 2781 using StoreQ = InstX86StoreQ<Machine>; | 2781 using StoreQ = InstX86StoreQ<Machine>; |
| 2782 using Nop = InstX86Nop<Machine>; | 2782 using Nop = InstX86Nop<Machine>; |
| 2783 using Fld = InstX86Fld<Machine>; | 2783 template <typename T = typename InstX86Base<Machine>::Traits> |
|
John
2015/07/29 17:43:16
These are not strictly needed, but adding them pre
| |
| 2784 using Fstp = InstX86Fstp<Machine>; | 2784 using Fld = typename std::enable_if<T::UsesX87, InstX86Fld<Machine>>::type; |
| 2785 template <typename T = typename InstX86Base<Machine>::Traits> | |
| 2786 using Fstp = typename std::enable_if<T::UsesX87, InstX86Fstp<Machine>>::type; | |
| 2785 using Pop = InstX86Pop<Machine>; | 2787 using Pop = InstX86Pop<Machine>; |
| 2786 using Push = InstX86Push<Machine>; | 2788 using Push = InstX86Push<Machine>; |
| 2787 using Ret = InstX86Ret<Machine>; | 2789 using Ret = InstX86Ret<Machine>; |
| 2788 using Setcc = InstX86Setcc<Machine>; | 2790 using Setcc = InstX86Setcc<Machine>; |
| 2789 using Xadd = InstX86Xadd<Machine>; | 2791 using Xadd = InstX86Xadd<Machine>; |
| 2790 using Xchg = InstX86Xchg<Machine>; | 2792 using Xchg = InstX86Xchg<Machine>; |
| 2791 }; | 2793 }; |
| 2792 | 2794 |
| 2793 /// X86 Instructions have static data (particularly, opcodes and instruction | 2795 /// X86 Instructions have static data (particularly, opcodes and instruction |
| 2794 /// emitters). Each X86 target needs to define all of these, so this macro is | 2796 /// emitters). Each X86 target needs to define all of these, so this macro is |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3139 &InstX86Base<Machine>::Traits::Assembler::psrl}; \ | 3141 &InstX86Base<Machine>::Traits::Assembler::psrl}; \ |
| 3140 } \ | 3142 } \ |
| 3141 } | 3143 } |
| 3142 | 3144 |
| 3143 } // end of namespace X86Internal | 3145 } // end of namespace X86Internal |
| 3144 } // end of namespace Ice | 3146 } // end of namespace Ice |
| 3145 | 3147 |
| 3146 #include "IceInstX86BaseImpl.h" | 3148 #include "IceInstX86BaseImpl.h" |
| 3147 | 3149 |
| 3148 #endif // SUBZERO_SRC_ICEINSTX86BASE_H | 3150 #endif // SUBZERO_SRC_ICEINSTX86BASE_H |
| OLD | NEW |