OLD | NEW |
1 //===- subzero/src/IceInstX8632.def - X-macros for x86-32 insts -*- C++ -*-===// | 1 //===- subzero/src/IceInstX8632.def - X-macros for x86-32 insts -*- 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 defines properties of lowered x86-32 instructions in the | 10 // This file defines properties of lowered x86-32 instructions in the |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 X(Cmpps_lt, "lt") \ | 205 X(Cmpps_lt, "lt") \ |
206 X(Cmpps_le, "le") \ | 206 X(Cmpps_le, "le") \ |
207 X(Cmpps_unord, "unord") \ | 207 X(Cmpps_unord, "unord") \ |
208 X(Cmpps_neq, "neq") \ | 208 X(Cmpps_neq, "neq") \ |
209 X(Cmpps_nlt, "nlt") \ | 209 X(Cmpps_nlt, "nlt") \ |
210 X(Cmpps_nle, "nle") \ | 210 X(Cmpps_nle, "nle") \ |
211 X(Cmpps_ord, "ord") | 211 X(Cmpps_ord, "ord") |
212 //#define X(val, emit) | 212 //#define X(val, emit) |
213 | 213 |
214 #define ICETYPEX8632_TABLE \ | 214 #define ICETYPEX8632_TABLE \ |
215 /* tag, element type, cvt , sdss, pdps, spsd, pack, width, fld */ \ | 215 /* tag, element type, cvt , sdss, pdps, spsd, pack, unpack, width, fld */ \ |
216 X(void, void, "?", "", "", "", "", "", "") \ | 216 X(void, void, "?", "", "", "", "", "", "", "") \ |
217 X(i1, void, "si", "", "", "", "", "b", "") \ | 217 X(i1, void, "si", "", "", "", "", "", "b", "") \ |
218 X(i8, void, "si", "", "", "", "", "b", "") \ | 218 X(i8, void, "si", "", "", "", "", "", "b", "") \ |
219 X(i16, void, "si", "", "", "", "", "w", "") \ | 219 X(i16, void, "si", "", "", "", "", "", "w", "") \ |
220 X(i32, void, "si", "", "", "", "", "l", "") \ | 220 X(i32, void, "si", "", "", "", "", "", "l", "") \ |
221 X(i64, void, "si", "", "", "", "", "q", "") \ | 221 X(i64, void, "si", "", "", "", "", "", "q", "") \ |
222 X(f32, void, "ss", "ss", "ps", "ss", "d", "", "s") \ | 222 X(f32, void, "ss", "ss", "ps", "ss", "d", "", "", "s") \ |
223 X(f64, void, "sd", "sd", "pd", "sd", "q", "", "l") \ | 223 X(f64, void, "sd", "sd", "pd", "sd", "q", "", "", "l") \ |
224 X(v4i1, i32, "?", "", "", "", "d", "", "") \ | 224 X(v4i1, i32, "?", "", "", "", "d", "dq", "", "") \ |
225 X(v8i1, i16, "?", "", "", "", "w", "", "") \ | 225 X(v8i1, i16, "?", "", "", "", "w", "wd", "", "") \ |
226 X(v16i1, i8, "?", "", "", "", "b", "", "") \ | 226 X(v16i1, i8, "?", "", "", "", "b", "bw", "", "") \ |
227 X(v16i8, i8, "?", "", "", "", "b", "", "") \ | 227 X(v16i8, i8, "?", "", "", "", "b", "bw", "", "") \ |
228 X(v8i16, i16, "?", "", "", "", "w", "", "") \ | 228 X(v8i16, i16, "?", "", "", "", "w", "wd", "", "") \ |
229 X(v4i32, i32, "dq", "", "", "", "d", "", "") \ | 229 X(v4i32, i32, "dq", "", "", "", "d", "dq", "", "") \ |
230 X(v4f32, f32, "ps", "", "ps", "ps", "d", "", "") | 230 X(v4f32, f32, "ps", "", "ps", "ps", "d", "dq", "", "") |
231 //#define X(tag, elementty, cvt, sdss, pdps, spsd, pack, width, fld) | 231 //#define X(tag, elementty, cvt, sdss, pdps, spsd, pack, unpack, width, fld) |
232 | 232 |
233 #endif // SUBZERO_SRC_ICEINSTX8632_DEF | 233 #endif // SUBZERO_SRC_ICEINSTX8632_DEF |
OLD | NEW |