Virtio register pow2 memory regions
[qemu-kvm/fedora.git] / tcg / tcg-opc.h
blob4d91d117db41901f25862e7ad369f413c110469b
1 /*
2 * Tiny Code Generator for QEMU
4 * Copyright (c) 2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
24 #include "dyngen-opc.h"
26 #ifndef DEF2
27 #define DEF2(name, oargs, iargs, cargs, flags) DEF(name, oargs + iargs + cargs, 0)
28 #endif
30 /* predefined ops */
31 DEF2(end, 0, 0, 0, 0) /* must be kept first */
32 DEF2(nop, 0, 0, 0, 0)
33 DEF2(nop1, 0, 0, 1, 0)
34 DEF2(nop2, 0, 0, 2, 0)
35 DEF2(nop3, 0, 0, 3, 0)
36 DEF2(nopn, 0, 0, 1, 0) /* variable number of parameters */
37 /* macro handling */
38 DEF2(macro_2, 2, 0, 1, 0)
39 DEF2(macro_start, 0, 0, 2, 0)
40 DEF2(macro_end, 0, 0, 2, 0)
41 DEF2(macro_goto, 0, 0, 3, 0)
43 DEF2(discard, 1, 0, 0, 0)
45 DEF2(set_label, 0, 0, 1, 0)
46 DEF2(call, 0, 1, 2, TCG_OPF_SIDE_EFFECTS) /* variable number of parameters */
47 DEF2(jmp, 0, 1, 0, TCG_OPF_BB_END | TCG_OPF_SIDE_EFFECTS)
48 DEF2(br, 0, 0, 1, TCG_OPF_BB_END | TCG_OPF_SIDE_EFFECTS)
50 DEF2(mov_i32, 1, 1, 0, 0)
51 DEF2(movi_i32, 1, 0, 1, 0)
52 /* load/store */
53 DEF2(ld8u_i32, 1, 1, 1, 0)
54 DEF2(ld8s_i32, 1, 1, 1, 0)
55 DEF2(ld16u_i32, 1, 1, 1, 0)
56 DEF2(ld16s_i32, 1, 1, 1, 0)
57 DEF2(ld_i32, 1, 1, 1, 0)
58 DEF2(st8_i32, 0, 2, 1, TCG_OPF_SIDE_EFFECTS)
59 DEF2(st16_i32, 0, 2, 1, TCG_OPF_SIDE_EFFECTS)
60 DEF2(st_i32, 0, 2, 1, TCG_OPF_SIDE_EFFECTS)
61 /* arith */
62 DEF2(add_i32, 1, 2, 0, 0)
63 DEF2(sub_i32, 1, 2, 0, 0)
64 DEF2(mul_i32, 1, 2, 0, 0)
65 #ifdef TCG_TARGET_HAS_div_i32
66 DEF2(div_i32, 1, 2, 0, 0)
67 DEF2(divu_i32, 1, 2, 0, 0)
68 DEF2(rem_i32, 1, 2, 0, 0)
69 DEF2(remu_i32, 1, 2, 0, 0)
70 #else
71 DEF2(div2_i32, 2, 3, 0, 0)
72 DEF2(divu2_i32, 2, 3, 0, 0)
73 #endif
74 DEF2(and_i32, 1, 2, 0, 0)
75 DEF2(or_i32, 1, 2, 0, 0)
76 DEF2(xor_i32, 1, 2, 0, 0)
77 /* shifts */
78 DEF2(shl_i32, 1, 2, 0, 0)
79 DEF2(shr_i32, 1, 2, 0, 0)
80 DEF2(sar_i32, 1, 2, 0, 0)
82 DEF2(brcond_i32, 0, 2, 2, TCG_OPF_BB_END | TCG_OPF_SIDE_EFFECTS)
83 #if TCG_TARGET_REG_BITS == 32
84 DEF2(add2_i32, 2, 4, 0, 0)
85 DEF2(sub2_i32, 2, 4, 0, 0)
86 DEF2(brcond2_i32, 0, 4, 2, TCG_OPF_BB_END | TCG_OPF_SIDE_EFFECTS)
87 DEF2(mulu2_i32, 2, 2, 0, 0)
88 #endif
89 #ifdef TCG_TARGET_HAS_ext8s_i32
90 DEF2(ext8s_i32, 1, 1, 0, 0)
91 #endif
92 #ifdef TCG_TARGET_HAS_ext16s_i32
93 DEF2(ext16s_i32, 1, 1, 0, 0)
94 #endif
95 #ifdef TCG_TARGET_HAS_bswap_i32
96 DEF2(bswap_i32, 1, 1, 0, 0)
97 #endif
99 #if TCG_TARGET_REG_BITS == 64
100 DEF2(mov_i64, 1, 1, 0, 0)
101 DEF2(movi_i64, 1, 0, 1, 0)
102 /* load/store */
103 DEF2(ld8u_i64, 1, 1, 1, 0)
104 DEF2(ld8s_i64, 1, 1, 1, 0)
105 DEF2(ld16u_i64, 1, 1, 1, 0)
106 DEF2(ld16s_i64, 1, 1, 1, 0)
107 DEF2(ld32u_i64, 1, 1, 1, 0)
108 DEF2(ld32s_i64, 1, 1, 1, 0)
109 DEF2(ld_i64, 1, 1, 1, 0)
110 DEF2(st8_i64, 0, 2, 1, TCG_OPF_SIDE_EFFECTS)
111 DEF2(st16_i64, 0, 2, 1, TCG_OPF_SIDE_EFFECTS)
112 DEF2(st32_i64, 0, 2, 1, TCG_OPF_SIDE_EFFECTS)
113 DEF2(st_i64, 0, 2, 1, TCG_OPF_SIDE_EFFECTS)
114 /* arith */
115 DEF2(add_i64, 1, 2, 0, 0)
116 DEF2(sub_i64, 1, 2, 0, 0)
117 DEF2(mul_i64, 1, 2, 0, 0)
118 #ifdef TCG_TARGET_HAS_div_i64
119 DEF2(div_i64, 1, 2, 0, 0)
120 DEF2(divu_i64, 1, 2, 0, 0)
121 DEF2(rem_i64, 1, 2, 0, 0)
122 DEF2(remu_i64, 1, 2, 0, 0)
123 #else
124 DEF2(div2_i64, 2, 3, 0, 0)
125 DEF2(divu2_i64, 2, 3, 0, 0)
126 #endif
127 DEF2(and_i64, 1, 2, 0, 0)
128 DEF2(or_i64, 1, 2, 0, 0)
129 DEF2(xor_i64, 1, 2, 0, 0)
130 /* shifts */
131 DEF2(shl_i64, 1, 2, 0, 0)
132 DEF2(shr_i64, 1, 2, 0, 0)
133 DEF2(sar_i64, 1, 2, 0, 0)
135 DEF2(brcond_i64, 0, 2, 2, TCG_OPF_BB_END | TCG_OPF_SIDE_EFFECTS)
136 #ifdef TCG_TARGET_HAS_ext8s_i64
137 DEF2(ext8s_i64, 1, 1, 0, 0)
138 #endif
139 #ifdef TCG_TARGET_HAS_ext16s_i64
140 DEF2(ext16s_i64, 1, 1, 0, 0)
141 #endif
142 #ifdef TCG_TARGET_HAS_ext32s_i64
143 DEF2(ext32s_i64, 1, 1, 0, 0)
144 #endif
145 #ifdef TCG_TARGET_HAS_bswap_i64
146 DEF2(bswap_i64, 1, 1, 0, 0)
147 #endif
148 #endif
150 /* QEMU specific */
151 DEF2(exit_tb, 0, 0, 1, TCG_OPF_BB_END | TCG_OPF_SIDE_EFFECTS)
152 DEF2(goto_tb, 0, 0, 1, TCG_OPF_BB_END | TCG_OPF_SIDE_EFFECTS)
153 /* Note: even if TARGET_LONG_BITS is not defined, the INDEX_op
154 constants must be defined */
155 #if TCG_TARGET_REG_BITS == 32
156 #if TARGET_LONG_BITS == 32
157 DEF2(qemu_ld8u, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
158 #else
159 DEF2(qemu_ld8u, 1, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
160 #endif
161 #if TARGET_LONG_BITS == 32
162 DEF2(qemu_ld8s, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
163 #else
164 DEF2(qemu_ld8s, 1, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
165 #endif
166 #if TARGET_LONG_BITS == 32
167 DEF2(qemu_ld16u, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
168 #else
169 DEF2(qemu_ld16u, 1, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
170 #endif
171 #if TARGET_LONG_BITS == 32
172 DEF2(qemu_ld16s, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
173 #else
174 DEF2(qemu_ld16s, 1, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
175 #endif
176 #if TARGET_LONG_BITS == 32
177 DEF2(qemu_ld32u, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
178 #else
179 DEF2(qemu_ld32u, 1, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
180 #endif
181 #if TARGET_LONG_BITS == 32
182 DEF2(qemu_ld32s, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
183 #else
184 DEF2(qemu_ld32s, 1, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
185 #endif
186 #if TARGET_LONG_BITS == 32
187 DEF2(qemu_ld64, 2, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
188 #else
189 DEF2(qemu_ld64, 2, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
190 #endif
192 #if TARGET_LONG_BITS == 32
193 DEF2(qemu_st8, 0, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
194 #else
195 DEF2(qemu_st8, 0, 3, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
196 #endif
197 #if TARGET_LONG_BITS == 32
198 DEF2(qemu_st16, 0, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
199 #else
200 DEF2(qemu_st16, 0, 3, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
201 #endif
202 #if TARGET_LONG_BITS == 32
203 DEF2(qemu_st32, 0, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
204 #else
205 DEF2(qemu_st32, 0, 3, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
206 #endif
207 #if TARGET_LONG_BITS == 32
208 DEF2(qemu_st64, 0, 3, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
209 #else
210 DEF2(qemu_st64, 0, 4, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
211 #endif
213 #else /* TCG_TARGET_REG_BITS == 32 */
215 DEF2(qemu_ld8u, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
216 DEF2(qemu_ld8s, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
217 DEF2(qemu_ld16u, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
218 DEF2(qemu_ld16s, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
219 DEF2(qemu_ld32u, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
220 DEF2(qemu_ld32s, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
221 DEF2(qemu_ld64, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
223 DEF2(qemu_st8, 0, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
224 DEF2(qemu_st16, 0, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
225 DEF2(qemu_st32, 0, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
226 DEF2(qemu_st64, 0, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS)
228 #endif /* TCG_TARGET_REG_BITS != 32 */
230 #undef DEF2