| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 X(IceType_i32, "si", "" , "" , "dword ptr") \ | 75 X(IceType_i32, "si", "" , "" , "dword ptr") \ |
| 76 X(IceType_i64, "si", "" , "" , "qword ptr") \ | 76 X(IceType_i64, "si", "" , "" , "qword ptr") \ |
| 77 X(IceType_f32, "ss", "ss", "" , "dword ptr") \ | 77 X(IceType_f32, "ss", "ss", "" , "dword ptr") \ |
| 78 X(IceType_f64, "sd", "sd", "" , "qword ptr") \ | 78 X(IceType_f64, "sd", "sd", "" , "qword ptr") \ |
| 79 X(IceType_v4i1, "?", "" , "" , "xmmword ptr") \ | 79 X(IceType_v4i1, "?", "" , "" , "xmmword ptr") \ |
| 80 X(IceType_v8i1, "?", "" , "" , "xmmword ptr") \ | 80 X(IceType_v8i1, "?", "" , "" , "xmmword ptr") \ |
| 81 X(IceType_v16i1, "?", "" , "" , "xmmword ptr") \ | 81 X(IceType_v16i1, "?", "" , "" , "xmmword ptr") \ |
| 82 X(IceType_v16i8, "?", "" , "b", "xmmword ptr") \ | 82 X(IceType_v16i8, "?", "" , "b", "xmmword ptr") \ |
| 83 X(IceType_v8i16, "?", "" , "w", "xmmword ptr") \ | 83 X(IceType_v8i16, "?", "" , "w", "xmmword ptr") \ |
| 84 X(IceType_v4i32, "dq", "" , "d", "xmmword ptr") \ | 84 X(IceType_v4i32, "dq", "" , "d", "xmmword ptr") \ |
| 85 X(IceType_v4f32, "ps", "" , "", "xmmword ptr") \ | 85 X(IceType_v4f32, "ps", "" , "" , "xmmword ptr") \ |
| 86 //#define X(tag, cvt, sdss, width) | 86 //#define X(tag, cvt, sdss, width) |
| 87 | 87 |
| 88 #endif // SUBZERO_SRC_ICEINSTX8632_DEF | 88 #endif // SUBZERO_SRC_ICEINSTX8632_DEF |
| OLD | NEW |