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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 //#define X(tag, emit) | 136 //#define X(tag, emit) |
137 | 137 |
138 #define ICETYPEX8632_TABLE \ | 138 #define ICETYPEX8632_TABLE \ |
139 /* tag, element type, cvt, sdss, pack, width, fld */ \ | 139 /* tag, element type, cvt, sdss, pack, width, fld */ \ |
140 X(IceType_void, IceType_void, "?" , "" , "" , "", "") \ | 140 X(IceType_void, IceType_void, "?" , "" , "" , "", "") \ |
141 X(IceType_i1, IceType_void, "si", "" , "" , "b", "") \ | 141 X(IceType_i1, IceType_void, "si", "" , "" , "b", "") \ |
142 X(IceType_i8, IceType_void, "si", "" , "" , "b", "") \ | 142 X(IceType_i8, IceType_void, "si", "" , "" , "b", "") \ |
143 X(IceType_i16, IceType_void, "si", "" , "" , "w", "") \ | 143 X(IceType_i16, IceType_void, "si", "" , "" , "w", "") \ |
144 X(IceType_i32, IceType_void, "si", "" , "" , "l", "") \ | 144 X(IceType_i32, IceType_void, "si", "" , "" , "l", "") \ |
145 X(IceType_i64, IceType_void, "si", "" , "" , "q", "") \ | 145 X(IceType_i64, IceType_void, "si", "" , "" , "q", "") \ |
146 X(IceType_f32, IceType_void, "ss", "ss", "" , "", "s") \ | 146 X(IceType_f32, IceType_void, "ss", "ss", "d", "", "s") \ |
147 X(IceType_f64, IceType_void, "sd", "sd", "" , "", "l") \ | 147 X(IceType_f64, IceType_void, "sd", "sd", "q", "", "l") \ |
148 X(IceType_v4i1, IceType_i32 , "?" , "" , "d", "", "") \ | 148 X(IceType_v4i1, IceType_i32 , "?" , "" , "d", "", "") \ |
149 X(IceType_v8i1, IceType_i16 , "?" , "" , "w", "", "") \ | 149 X(IceType_v8i1, IceType_i16 , "?" , "" , "w", "", "") \ |
150 X(IceType_v16i1, IceType_i8 , "?" , "" , "b", "", "") \ | 150 X(IceType_v16i1, IceType_i8 , "?" , "" , "b", "", "") \ |
151 X(IceType_v16i8, IceType_i8 , "?" , "" , "b", "", "") \ | 151 X(IceType_v16i8, IceType_i8 , "?" , "" , "b", "", "") \ |
152 X(IceType_v8i16, IceType_i16 , "?" , "" , "w", "", "") \ | 152 X(IceType_v8i16, IceType_i16 , "?" , "" , "w", "", "") \ |
153 X(IceType_v4i32, IceType_i32 , "dq", "" , "d", "", "") \ | 153 X(IceType_v4i32, IceType_i32 , "dq", "" , "d", "", "") \ |
154 X(IceType_v4f32, IceType_f32 , "ps", "" , "" , "", "") \ | 154 X(IceType_v4f32, IceType_f32 , "ps", "" , "d", "", "") \ |
155 //#define X(tag, elementty, cvt, sdss, pack, width, fld) | 155 //#define X(tag, elementty, cvt, sdss, pack, width, fld) |
156 | 156 |
157 #endif // SUBZERO_SRC_ICEINSTX8632_DEF | 157 #endif // SUBZERO_SRC_ICEINSTX8632_DEF |
OLD | NEW |