| OLD | NEW |
| 1 //===- subzero/src/IceInstX8664.def - X-macros for x86-64 insts -*- C++ -*-===// | 1 //===- subzero/src/IceInstX8664.def - X-macros for x86-64 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-64 instructions in the | 10 // This file defines properties of lowered x86-64 instructions in the |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 X(Cmpps_lt, "lt") \ | 286 X(Cmpps_lt, "lt") \ |
| 287 X(Cmpps_le, "le") \ | 287 X(Cmpps_le, "le") \ |
| 288 X(Cmpps_unord, "unord") \ | 288 X(Cmpps_unord, "unord") \ |
| 289 X(Cmpps_neq, "neq") \ | 289 X(Cmpps_neq, "neq") \ |
| 290 X(Cmpps_nlt, "nlt") \ | 290 X(Cmpps_nlt, "nlt") \ |
| 291 X(Cmpps_nle, "nle") \ | 291 X(Cmpps_nle, "nle") \ |
| 292 X(Cmpps_ord, "ord") | 292 X(Cmpps_ord, "ord") |
| 293 //#define X(val, emit) | 293 //#define X(val, emit) |
| 294 | 294 |
| 295 #define ICETYPEX8664_TABLE \ | 295 #define ICETYPEX8664_TABLE \ |
| 296 /* tag, element type, cvt , sdss, pdps, spsd, pack, width, fld */ \ | 296 /* tag, element type, cvt , sdss, pdps, spsd, pack, unpack, width, fld */ \ |
| 297 X(void, void, "?", "", "", "", "", "", "") \ | 297 X(void, void, "?", "", "", "", "", "", "", "") \ |
| 298 X(i1, void, "si", "", "", "", "", "b", "") \ | 298 X(i1, void, "si", "", "", "", "", "", "b", "") \ |
| 299 X(i8, void, "si", "", "", "", "", "b", "") \ | 299 X(i8, void, "si", "", "", "", "", "", "b", "") \ |
| 300 X(i16, void, "si", "", "", "", "", "w", "") \ | 300 X(i16, void, "si", "", "", "", "", "", "w", "") \ |
| 301 X(i32, void, "si", "", "", "", "", "l", "") \ | 301 X(i32, void, "si", "", "", "", "", "", "l", "") \ |
| 302 X(i64, void, "si", "", "", "", "", "q", "") \ | 302 X(i64, void, "si", "", "", "", "", "", "q", "") \ |
| 303 X(f32, void, "ss", "ss", "ps", "ss", "d", "", "s") \ | 303 X(f32, void, "ss", "ss", "ps", "ss", "d", "", "", "s") \ |
| 304 X(f64, void, "sd", "sd", "pd", "sd", "q", "", "l") \ | 304 X(f64, void, "sd", "sd", "pd", "sd", "q", "", "", "l") \ |
| 305 X(v4i1, i32, "?", "", "", "", "d", "", "") \ | 305 X(v4i1, i32, "?", "", "", "", "d", "dq", "", "") \ |
| 306 X(v8i1, i16, "?", "", "", "", "w", "", "") \ | 306 X(v8i1, i16, "?", "", "", "", "w", "wd", "", "") \ |
| 307 X(v16i1, i8, "?", "", "", "", "b", "", "") \ | 307 X(v16i1, i8, "?", "", "", "", "b", "bw", "", "") \ |
| 308 X(v16i8, i8, "?", "", "", "", "b", "", "") \ | 308 X(v16i8, i8, "?", "", "", "", "b", "bw", "", "") \ |
| 309 X(v8i16, i16, "?", "", "", "", "w", "", "") \ | 309 X(v8i16, i16, "?", "", "", "", "w", "wd", "", "") \ |
| 310 X(v4i32, i32, "dq", "", "", "", "d", "", "") \ | 310 X(v4i32, i32, "dq", "", "", "", "d", "dq", "", "") \ |
| 311 X(v4f32, f32, "ps", "", "ps", "ps", "d", "", "") | 311 X(v4f32, f32, "ps", "", "ps", "ps", "d", "dq", "", "") |
| 312 //#define X(tag, elementty, cvt, sdss, pdps, pack, width, fld) | 312 //#define X(tag, elementty, cvt, sdss, pdps, pack, unpack, width, fld) |
| 313 | 313 |
| 314 #endif // SUBZERO_SRC_ICEINSTX8664_DEF | 314 #endif // SUBZERO_SRC_ICEINSTX8664_DEF |
| OLD | NEW |