| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 X(Cmpps_lt, "lt") \ | 285 X(Cmpps_lt, "lt") \ |
| 286 X(Cmpps_le, "le") \ | 286 X(Cmpps_le, "le") \ |
| 287 X(Cmpps_unord, "unord") \ | 287 X(Cmpps_unord, "unord") \ |
| 288 X(Cmpps_neq, "neq") \ | 288 X(Cmpps_neq, "neq") \ |
| 289 X(Cmpps_nlt, "nlt") \ | 289 X(Cmpps_nlt, "nlt") \ |
| 290 X(Cmpps_nle, "nle") \ | 290 X(Cmpps_nle, "nle") \ |
| 291 X(Cmpps_ord, "ord") | 291 X(Cmpps_ord, "ord") |
| 292 //#define X(val, emit) | 292 //#define X(val, emit) |
| 293 | 293 |
| 294 #define ICETYPEX8664_TABLE \ | 294 #define ICETYPEX8664_TABLE \ |
| 295 /* tag , element type, cvt , sdss, pack, width, fld */ \ | 295 /* tag, element type, cvt , sdss, pack, width, fld */ \ |
| 296 X(IceType_void, IceType_void, "?", "", "", "", "") \ | 296 X(void, void, "?", "", "", "", "") \ |
| 297 X(IceType_i1, IceType_void, "si", "", "", "b", "") \ | 297 X(i1, void, "si", "", "", "b", "") \ |
| 298 X(IceType_i8, IceType_void, "si", "", "", "b", "") \ | 298 X(i8, void, "si", "", "", "b", "") \ |
| 299 X(IceType_i16, IceType_void, "si", "", "", "w", "") \ | 299 X(i16, void, "si", "", "", "w", "") \ |
| 300 X(IceType_i32, IceType_void, "si", "", "", "l", "") \ | 300 X(i32, void, "si", "", "", "l", "") \ |
| 301 X(IceType_i64, IceType_void, "si", "", "", "q", "") \ | 301 X(i64, void, "si", "", "", "q", "") \ |
| 302 X(IceType_f32, IceType_void, "ss", "ss", "d", "", "s") \ | 302 X(f32, void, "ss", "ss", "d", "", "s") \ |
| 303 X(IceType_f64, IceType_void, "sd", "sd", "q", "", "l") \ | 303 X(f64, void, "sd", "sd", "q", "", "l") \ |
| 304 X(IceType_v4i1, IceType_i32, "?", "", "d", "", "") \ | 304 X(v4i1, i32, "?", "", "d", "", "") \ |
| 305 X(IceType_v8i1, IceType_i16, "?", "", "w", "", "") \ | 305 X(v8i1, i16, "?", "", "w", "", "") \ |
| 306 X(IceType_v16i1, IceType_i8, "?", "", "b", "", "") \ | 306 X(v16i1, i8, "?", "", "b", "", "") \ |
| 307 X(IceType_v16i8, IceType_i8, "?", "", "b", "", "") \ | 307 X(v16i8, i8, "?", "", "b", "", "") \ |
| 308 X(IceType_v8i16, IceType_i16, "?", "", "w", "", "") \ | 308 X(v8i16, i16, "?", "", "w", "", "") \ |
| 309 X(IceType_v4i32, IceType_i32, "dq", "", "d", "", "") \ | 309 X(v4i32, i32, "dq", "", "d", "", "") \ |
| 310 X(IceType_v4f32, IceType_f32, "ps", "", "d", "", "") | 310 X(v4f32, f32, "ps", "", "d", "", "") |
| 311 //#define X(tag, elementty, cvt, sdss, pack, width, fld) | 311 //#define X(tag, elementty, cvt, sdss, pack, width, fld) |
| 312 | 312 |
| 313 #endif // SUBZERO_SRC_ICEINSTX8664_DEF | 313 #endif // SUBZERO_SRC_ICEINSTX8664_DEF |
| OLD | NEW |