6081382ea554d3723318b6912fa339e8a041c552
[cacao.git] / src / vm / jit / powerpc / codegen.h
1 /* src/vm/jit/powerpc/codegen.h - code generation macros and definitions for
2                                   32-bit PowerPC
3
4    Copyright (C) 1996-2005, 2006, 2007, 2008
5    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
6
7    This file is part of CACAO.
8
9    This program is free software; you can redistribute it and/or
10    modify it under the terms of the GNU General Public License as
11    published by the Free Software Foundation; either version 2, or (at
12    your option) any later version.
13
14    This program is distributed in the hope that it will be useful, but
15    WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17    General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22    02110-1301, USA.
23
24 */
25
26
27 #ifndef _CODEGEN_H
28 #define _CODEGEN_H
29
30 #include "config.h"
31
32 #include "md-abi.h"
33
34 #include "vm/global.h"
35 #include "vm/jit/jit.hpp"
36 #include "vm/jit/reg.h"
37
38
39 /* additional functions and macros to generate code ***************************/
40
41 /* MCODECHECK(icnt) */
42
43 #define MCODECHECK(icnt) \
44     do { \
45         if ((cd->mcodeptr + (icnt) * 4) > cd->mcodeend) \
46             codegen_increase(cd); \
47     } while (0)
48
49
50 /* M_INTMOVE:
51      generates an integer-move from register a to b.
52      if a and b are the same int-register, no code will be generated.
53 */ 
54
55 #define M_INTMOVE(a,b) \
56     do { \
57         if ((a) != (b)) { \
58             M_MOV(a, b); \
59         } \
60     } while (0)
61
62 #define M_LNGMOVE(a,b) \
63     do { \
64         if (GET_HIGH_REG(a) == GET_LOW_REG(b)) { \
65             assert((GET_LOW_REG(a) != GET_HIGH_REG(b))); \
66             M_INTMOVE(GET_HIGH_REG(a), GET_HIGH_REG(b)); \
67             M_INTMOVE(GET_LOW_REG(a), GET_LOW_REG(b)); \
68         } else { \
69             M_INTMOVE(GET_LOW_REG(a), GET_LOW_REG(b)); \
70             M_INTMOVE(GET_HIGH_REG(a), GET_HIGH_REG(b)); \
71         } \
72     } while (0)
73
74
75 /* M_FLTMOVE:
76     generates a floating-point-move from register a to b.
77     if a and b are the same float-register, no code will be generated
78 */ 
79
80 #define M_FLTMOVE(a,b) \
81     do { \
82         if ((a) != (b)) { \
83             M_FMOV(a, b); \
84         } \
85     } while (0)
86
87
88 #define ICONST(d,c)                     emit_iconst(cd, (d), (c))
89
90 #define LCONST(reg,c) \
91     ICONST(GET_HIGH_REG((reg)), (s4) ((s8) (c) >> 32)); \
92     ICONST(GET_LOW_REG((reg)), (s4) ((s8) (c)));
93
94
95 #define ALIGNCODENOP \
96     if ((s4) ((ptrint) cd->mcodeptr & 7)) { \
97         M_NOP; \
98     }
99
100
101 /* branch defines *************************************************************/
102
103 #define BRANCH_NOPS \
104     do { \
105         if (CODEGENDATA_HAS_FLAG_LONGBRANCHES(cd)) { \
106             M_NOP; \
107             M_NOP; \
108         } \
109         else { \
110             M_NOP; \
111         } \
112     } while (0)
113
114
115 /* patcher defines ************************************************************/
116
117 #define PATCHER_CALL_SIZE    1 * 4      /* an instruction is 4-bytes long     */
118
119 #define PATCHER_NOPS \
120     do { \
121         M_NOP; \
122     } while (0)
123
124
125 /* macros to create code ******************************************************/
126
127 #define M_OP3(opcode,y,oe,rc,d,a,b) \
128     do { \
129         *((u4 *) cd->mcodeptr) = (((opcode) << 26) | ((d) << 21) | ((a) << 16) | ((b) << 11) | ((oe) << 10) | ((y) << 1) | (rc)); \
130         cd->mcodeptr += 4; \
131     } while (0)
132
133 #define M_OP3_GET_A(x)                (((x) >> 16) & 0x1f  )
134 #define M_OP3_GET_B(x)                (((x) >> 11) & 0x1f  )
135
136
137 #define M_OP4(x,y,rc,d,a,b,c) \
138     do { \
139         *((u4 *) cd->mcodeptr) = (((x) << 26) | ((d) << 21) | ((a) << 16) | ((b) << 11) | ((c) << 6) | ((y) << 1) | (rc)); \
140         cd->mcodeptr += 4; \
141     } while (0)
142
143
144 #define M_OP2_IMM(x,d,a,i) \
145     do { \
146         *((u4 *) cd->mcodeptr) = (((x) << 26) | ((d) << 21) | ((a) << 16) | ((i) & 0xffff)); \
147         cd->mcodeptr += 4; \
148     } while (0)
149
150 #define M_INSTR_OP2_IMM_D(x)            (((x) >> 21) & 0x1f  )
151 #define M_INSTR_OP2_IMM_A(x)            (((x) >> 16) & 0x1f  )
152 #define M_INSTR_OP2_IMM_I(x)            ( (x)        & 0xffff)
153
154
155 #define M_BMASK     0x03fffffc                      /* (((1 << 26) - 1) & ~3) */
156 #define M_BCMASK    0x0000fffc                      /* (((1 << 16) - 1) & ~3) */
157
158 #define M_B(LI,AA,LK) \
159     do { \
160         *((u4 *) cd->mcodeptr) = ((18 << 26) | ((((LI) * 4) + 4) & M_BMASK) | ((AA) << 1) | (LK)); \
161         cd->mcodeptr += 4; \
162     } while (0)
163
164 #define M_BC(BO,BI,BD,AA,LK) \
165     do { \
166         *((u4 *) cd->mcodeptr) = ((16 << 26) | ((BO) << 21) | ((BI) << 16) | ((((BD) * 4) + 4) & M_BCMASK) | ((AA) << 1) | (LK)); \
167         cd->mcodeptr += 4; \
168     } while (0)
169
170
171 /* machine instruction macros **************************************************
172
173    Argument order:
174
175    machine instruction macro:
176        Same order as for the mnemonic (d, s1, s2).
177
178    emit macro:
179        Same order as in the instruction encoding.
180
181 *******************************************************************************/
182
183 #define MI_and(rA,rS,rB)                M_OP3(31,  28, 0, 0, rS, rA, rB)
184 #define MI_anddot(rA,rS,rB)             M_OP3(31,  28, 0, 1, rS, rA, rB)
185 #define MI_andi(rA,rS,UIMM)             M_OP2_IMM(28, rS, rA, UIMM)
186 #define MI_illegal                      M_OP3( 0,   0, 0, 0,  0,  0,  0)
187 #define MI_lwarx(rD,rA,rB)              M_OP3(31,  20, 0, 0, rD, rA, rB)
188 #define MI_or(rA,rS,rB)                 M_OP3(31, 444, 0, 0, rS, rA, rB)
189 #define MI_ordot(rA,rS,rB)              M_OP3(31, 444, 0, 1, rS, rA, rB)
190 #define MI_ori(rA,rS,UIMM)              M_OP2_IMM(24, rS, rA, UIMM)
191 #define MI_stwcxdot(rS,rA,rB)           M_OP3(31, 150, 0, 1, rS, rA, rB)
192 #define MI_subf(rD,rA,rB)               M_OP3(31,  40, 0, 0, rD, rA, rB)
193 #define MI_subfdot(rD,rA,rB)            M_OP3(31,  40, 0, 1, rD, rA, rB)
194 #define MI_sync                         M_OP3(31, 598, 0, 0,  0,  0,  0)
195
196
197 /* HIR macros ******************************************************************
198
199    Argument order:
200
201    HIR macro:
202        Default usage in CACAO (s1, s2, d).
203
204    machine instruction macro:
205        Same order as for the mnemonic (d, s1, s2).
206
207 *******************************************************************************/
208
209 /* integer instructions *******************************************************/
210
211 #define M_IAND(a,b,d)                   MI_and(d, a, b)
212 #define M_IAND_IMM(a,b,d)               MI_andi(d, a, b)
213 #define M_ILLEGAL                       MI_illegal
214 #define M_IOR(a,b,d)                    MI_or(d, a, b)
215 #define M_IOR_IMM(a,b,d)                MI_ori(d, a, b)
216 #define M_IOR_TST(a,b,d)                MI_ordot(d, a, b)
217 #define M_ISUB(a,b,d)                   MI_subf(d, b, a)
218 #define M_ISUB_TST(a,b,d)               MI_subfdot(d, b, a)
219 #define M_MOV(a,d)                      MI_or(d, a, a)
220 #define M_NOP                           MI_ori(0, 0, 0)
221
222
223 #define M_ADDC(a,b,c)                   M_OP3(31, 10, 0, 0, c, a, b)
224 #define M_ADDE(a,b,c)                   M_OP3(31, 138, 0, 0, c, a, b)
225 #define M_ADDIC(a,b,c)                  M_OP2_IMM(12, c, a, b)
226 #define M_ADDICTST(a,b,c)               M_OP2_IMM(13, c, a, b)
227 #define M_ADDIS(a,b,c)                  M_OP2_IMM(15, c, a, b)
228 #define M_ADDME(a,b)                    M_OP3(31, 234, 0, 0, b, a, 0)
229 #define M_ADDZE(a,b)                    M_OP3(31, 202, 0, 0, b, a, 0)
230 #define M_ADDZE(a,b)                    M_OP3(31, 202, 0, 0, b, a, 0)
231 #define M_ANDIS(a,b,c)                  M_OP2_IMM(29, a, c, b)
232 #define M_BEQ(a)                        M_BC(12, 2, a, 0, 0)
233 #define M_BGE(a)                        M_BC(4,  0, a, 0, 0)
234 #define M_BGT(a)                        M_BC(12, 1, a, 0, 0)
235 #define M_BL(a)                         M_B(a, 0, 1)
236 #define M_BLDU(a,b,c)                   M_OP2_IMM(34, a, b, c)
237 #define M_BLE(a)                        M_BC(4,  1, a, 0, 0)
238 #define M_BLT(a)                        M_BC(12, 0, a, 0, 0)
239 #define M_BNAN(a)                       M_BC(12, 3, a, 0, 0)
240 #define M_BNE(a)                        M_BC(4,  2, a, 0, 0)
241 #define M_BR(a)                         M_B(a, 0, 0)
242 #define M_BSEXT(a,b)                    M_OP3(31, 954, 0, 0, a, b, 0)
243 #define M_BST(a,b,c)                    M_OP2_IMM(38, a, b, c)
244 #define M_CMP(a,b)                      M_OP3(31, 0, 0, 0, 0, a, b)
245 #define M_CMPI(a,b)                     M_OP2_IMM(11, 0, a, b)
246 #define M_CMPU(a,b)                     M_OP3(31, 32, 0, 0, 0, a, b)
247 #define M_CMPUI(a,b)                    M_OP2_IMM(10, 0, a, b)
248 #define M_CNTLZ(a,b)                    M_OP3(31, 26, 0, 0, a, b, 0)
249 #define M_CZEXT(a,b)                    M_RLWINM(a,0,16,31,b)
250 #define M_IADD(a,b,c)                   M_OP3(31, 266, 0, 0, c, a, b)
251 #define M_IADD_IMM(a,b,c)               M_OP2_IMM(14, c, a, b)
252 #define M_IDIV(a,b,c)                   M_OP3(31, 491, 0, 0, c, a, b)
253 #define M_IMUL(a,b,c)                   M_OP3(31, 235, 0, 0, c, a, b)
254 #define M_IMUL_IMM(a,b,c)               M_OP2_IMM(7, c, a, b)
255 #define M_JSR                           M_OP3(19, 528, 0, 1, 20, 0, 0)
256 #define M_LBZX(a,b,c)                   M_OP3(31, 87, 0, 0, a, b, c)
257 #define M_LHAX(a,b,c)                   M_OP3(31, 343, 0, 0, a, b, c)
258 #define M_LHZX(a,b,c)                   M_OP3(31, 279, 0, 0, a, b, c)
259 #define M_LWZX(a,b,c)                   M_OP3(31, 23, 0, 0, a, b, c)
260 #define M_MFCTR(a)                      M_OP3(31, 339, 0, 0, a, 9, 0)
261 #define M_MFLR(a)                       M_OP3(31, 339, 0, 0, a, 8, 0)
262 #define M_MFXER(a)                      M_OP3(31, 339, 0, 0, a, 1, 0)
263 #define M_MTCTR(a)                      M_OP3(31, 467, 0, 0, a, 9, 0)
264 #define M_MTLR(a)                       M_OP3(31, 467, 0, 0, a, 8, 0)
265 #define M_MTXER(a)                      M_OP3(31, 467, 0, 0, a, 1, 0)
266 #define M_NEG(a,b)                      M_OP3(31, 104, 0, 0, b, a, 0)
267 #define M_NOT(a,b)                      M_OP3(31, 124, 0, 0, a, b, a)
268 #define M_ORIS(a,b,c)                   M_OP2_IMM(25, a, c, b)
269 #define M_RET                           M_OP3(19, 16, 0, 0, 20, 0, 0)
270 #define M_RLWINM(a,b,c,d,e)             M_OP4(21, d, 0, a, e, b, c)
271 #define M_RTS                           M_OP3(19, 528, 0, 0, 20, 0, 0)
272 #define M_SLDU(a,b,c)                   M_OP2_IMM(40, a, b, c)
273 #define M_SLL(a,b,c)                    M_OP3(31, 24, 0, 0, a, c, b)
274 #define M_SLL_IMM(a,b,c)                M_RLWINM(a,b,0,31-(b),c)
275 #define M_SRA(a,b,c)                    M_OP3(31, 792, 0, 0, a, c, b)
276 #define M_SRA_IMM(a,b,c)                M_OP3(31, 824, 0, 0, a, c, b)
277 #define M_SRL(a,b,c)                    M_OP3(31, 536, 0, 0, a, c, b)
278 #define M_SRL_IMM(a,b,c)                M_RLWINM(a,32-(b),b,31,c)
279 #define M_SSEXT(a,b)                    M_OP3(31, 922, 0, 0, a, b, 0)
280 #define M_SST(a,b,c)                    M_OP2_IMM(44, a, b, c)
281 #define M_STBX(a,b,c)                   M_OP3(31, 215, 0, 0, a, b, c)
282 #define M_STHX(a,b,c)                   M_OP3(31, 407, 0, 0, a, b, c)
283 #define M_STWUX(a,b,c)                  M_OP3(31,183,0,0,a,b,c)
284 #define M_STWX(a,b,c)                   M_OP3(31, 151, 0, 0, a, b, c)
285 #define M_SUBC(a,b,c)                   M_OP3(31, 8, 0, 0, c, b, a)
286 #define M_SUBE(a,b,c)                   M_OP3(31, 136, 0, 0, c, b, a)
287 #define M_SUBFIC(a,b,c)                 M_OP2_IMM(8, c, a, b)
288 #define M_SUBFZE(a,b)                   M_OP3(31, 200, 0, 0, b, a, 0)
289 #define M_SUBIC(a,b,c)                  M_OP2_IMM(8, c, b, a)
290 #define M_SUBME(a,b)                    M_OP3(31, 232, 0, 0, b, a, 0)
291 #define M_SUBZE(a,b)                    M_OP3(31, 200, 0, 0, b, a, 0)
292 #define M_TRAP                          M_OP3(31, 4, 0, 0, 31, 0, 0)
293 #define M_TRAPGEU(a,b)                  M_OP3(31, 4, 0, 0, 5, a, b)
294 #define M_TST(a)                        M_OP3(31, 444, 0, 1, a, a, a)
295 #define M_XOR(a,b,c)                    M_OP3(31, 316, 0, 0, a, c, b)
296 #define M_XORIS(a,b,c)                  M_OP2_IMM(27, a, c, b)
297 #define M_XOR_IMM(a,b,c)                M_OP2_IMM(26, a, c, b)
298
299
300 #define M_LDAH(a,b,c)                   M_ADDIS(b, c, a)
301 #define M_LDATST(a,b,c)                 M_ADDICTST(b, c, a)
302 #define M_CLR(a)                        M_IADD_IMM(0, 0, a)
303
304
305 #define M_ILD_INTERN(a,b,disp)          M_OP2_IMM(32,a,b,disp)
306
307 #define M_ILD(a,b,disp) \
308     do { \
309         s4 lo = (short) (disp); \
310         s4 hi = (short) (((disp) - lo) >> 16); \
311         if (hi == 0) { \
312             M_ILD_INTERN(a,b,lo); \
313         } else { \
314             M_ADDIS(b,hi,a); \
315             M_ILD_INTERN(a,a,lo); \
316         } \
317     } while (0)
318
319 #define M_LLD_INTERN(a,b,disp) \
320     do { \
321         M_ILD_INTERN(GET_HIGH_REG(a), b, disp); \
322         M_ILD_INTERN(GET_LOW_REG(a), b, disp + 4); \
323     } while (0)
324
325 #define M_LLD(a,b,disp) \
326     do { \
327         s4 lo = (short) (disp); \
328         s4 hi = (short) (((disp) - lo) >> 16); \
329         if (hi == 0) { \
330             M_LLD_INTERN(a,b,lo); \
331         } else { \
332             M_ADDIS(b,hi,a); \
333             M_LLD_INTERN(a,GET_LOW_REG(a),lo); \
334         } \
335     } while (0)
336
337 #define M_IST_INTERN(a,b,disp)          M_OP2_IMM(36,a,b,disp)
338
339 /* Stores with displacement overflow should only happen with PUTFIELD
340    or on the stack. The PUTFIELD instruction does not use REG_ITMP3
341    and a reg_of_var call should not use REG_ITMP3!!! */
342
343 #define M_IST(a,b,disp) \
344     do { \
345         s4 lo = (short) (disp); \
346         s4 hi = (short) (((disp) - lo) >> 16); \
347         if (hi == 0) { \
348             M_IST_INTERN(a,b,lo); \
349         } else { \
350             M_ADDIS(b,hi,REG_ITMP3); \
351             M_IST_INTERN(a,REG_ITMP3,lo); \
352         } \
353     } while (0)
354
355 #define M_LST_INTERN(a,b,disp) \
356     do { \
357         M_IST_INTERN(GET_HIGH_REG(a), b, disp); \
358         M_IST_INTERN(GET_LOW_REG(a), b, disp + 4); \
359     } while (0)
360
361 #define M_LST(a,b,disp) \
362     do { \
363         s4 lo = (short) (disp); \
364         s4 hi = (short) (((disp) - lo) >> 16); \
365         if (hi == 0) { \
366             M_LST_INTERN(a,b,lo); \
367         } else { \
368             M_ADDIS(b,hi,REG_ITMP3); \
369             M_LST_INTERN(a,REG_ITMP3, lo); \
370         } \
371     } while (0)
372
373 #define M_STWU_INTERN(a,b,disp)         M_OP2_IMM(37,a,b,disp)
374
375 #define M_STWU(a,b,disp) \
376     do { \
377         s4 lo = (disp) & 0x0000ffff; \
378         s4 hi = ((disp) >> 16); \
379         if (((disp) >= -32678) && ((disp) <= 32767)) { \
380             M_STWU_INTERN(a,b,lo); \
381         } else { \
382             M_ADDIS(REG_ZERO,hi,REG_ITMP3); \
383             M_IOR_IMM(REG_ITMP3,lo,REG_ITMP3); \
384             M_STWUX(REG_SP,REG_SP,REG_ITMP3); \
385         } \
386     } while (0)
387
388 #define M_LDA_INTERN(a,b,c)             M_IADD_IMM(b, c, a)
389
390 #define M_LDA(a,b,disp) \
391     do { \
392         s4 lo = (short) (disp); \
393         s4 hi = (short) (((disp) - lo) >> 16); \
394         if (hi == 0) { \
395             M_LDA_INTERN(a,b,lo); \
396         } else { \
397             M_ADDIS(b,hi,a); \
398             M_LDA_INTERN(a,a,lo); \
399         } \
400     } while (0)
401
402
403 #define M_AADD(a,b,d)                   M_IADD(a, b, d)
404 #define M_AADD_IMM(a,b,d)               M_IADD_IMM(a, b, d)
405 #define M_ALD_INTERN(a,b,disp)          M_ILD_INTERN(a,b,disp)
406 #define M_ALD(a,b,disp)                 M_ILD(a,b,disp)
407 #define M_AST_INTERN(a,b,disp)          M_IST_INTERN(a,b,disp)
408 #define M_AST(a,b,disp)                 M_IST(a,b,disp)
409
410
411 /* floating point instructions ************************************************/
412
413 #define M_CVTDF(a,b)                    M_OP3(63, 12, 0, 0, b, 0, a)
414 #define M_CVTDL(a,b)                    M_OP3(63, 14, 0, 0, b, 0, a)
415 #define M_CVTDL_C(a,b)                  M_OP3(63, 15, 0, 0, b, 0, a)
416 #define M_DADD(a,b,c)                   M_OP3(63, 21, 0, 0, c, a, b)
417 #define M_DDIV(a,b,c)                   M_OP3(63, 18, 0, 0, c, a, b)
418 #define M_DMUL(a,b,c)                   M_OP4(63, 25, 0, c, a, 0, b)
419 #define M_DSQRT(a,b)                    M_OP3(63, 22, 0, 0, b, 0, a)
420 #define M_DSUB(a,b,c)                   M_OP3(63, 20, 0, 0, c, a, b)
421 #define M_FABS(a,b)                     M_OP3(63, 264, 0, 0, b, 0, a)
422 #define M_FADD(a,b,c)                   M_OP3(59, 21, 0, 0, c, a, b)
423 #define M_FCMPO(a,b)                    M_OP3(63, 32, 0, 0, 0, a, b)
424 #define M_FCMPU(a,b)                    M_OP3(63, 0, 0, 0, 0, a, b)
425 #define M_FDIV(a,b,c)                   M_OP3(59, 18, 0, 0, c, a, b)
426 #define M_FMOV(a,b)                     M_OP3(63, 72, 0, 0, b, 0, a)
427 #define M_FMOVN(a,b)                    M_OP3(63, 40, 0, 0, b, 0, a)
428 #define M_FMUL(a,b,c)                   M_OP4(59, 25, 0, c, a, 0, b)
429 #define M_FSQRT(a,b)                    M_OP3(59, 22, 0, 0, b, 0, a)
430 #define M_FSUB(a,b,c)                   M_OP3(59, 20, 0, 0, c, a, b)
431 #define M_LFDX(a,b,c)                   M_OP3(31, 599, 0, 0, a, b, c)
432 #define M_LFSX(a,b,c)                   M_OP3(31, 535, 0, 0, a, b, c)
433 #define M_STFDX(a,b,c)                  M_OP3(31, 727, 0, 0, a, b, c)
434 #define M_STFIWX(a,b,c)                 M_OP3(31, 983, 0, 0, a, b, c)
435 #define M_STFSX(a,b,c)                  M_OP3(31, 663, 0, 0, a, b, c)
436
437
438 #define M_FLD_INTERN(a,b,disp)          M_OP2_IMM(48,a,b,disp)
439
440 #define M_FLD(a,b,disp) \
441     do { \
442         s4 lo = (short) (disp); \
443         s4 hi = (short) (((disp) - lo) >> 16); \
444         if (hi == 0) { \
445             M_FLD_INTERN(a,b,lo); \
446         } else { \
447             M_ADDIS(b,hi,REG_ITMP3); \
448             M_FLD_INTERN(a,REG_ITMP3,lo); \
449         } \
450     } while (0)
451
452 #define M_DLD_INTERN(a,b,disp)          M_OP2_IMM(50,a,b,disp)
453
454 #define M_DLD(a,b,disp) \
455     do { \
456         s4 lo = (short) (disp); \
457         s4 hi = (short) (((disp) - lo) >> 16); \
458         if (hi == 0) { \
459             M_DLD_INTERN(a,b,lo); \
460         } else { \
461             M_ADDIS(b,hi,REG_ITMP3); \
462             M_DLD_INTERN(a,REG_ITMP3,lo); \
463         } \
464     } while (0)
465
466 #define M_FST_INTERN(a,b,disp)          M_OP2_IMM(52,a,b,disp)
467
468 #define M_FST(a,b,disp) \
469     do { \
470         s4 lo = (short) (disp); \
471         s4 hi = (short) (((disp) - lo) >> 16); \
472         if (hi == 0) { \
473             M_FST_INTERN(a,b,lo); \
474         } else { \
475             M_ADDIS(b,hi,REG_ITMP3); \
476             M_FST_INTERN(a,REG_ITMP3,lo); \
477         } \
478     } while (0)
479
480 #define M_DST_INTERN(a,b,disp)          M_OP2_IMM(54,a,b,disp)
481
482 #define M_DST(a,b,disp) \
483     do { \
484         s4 lo = (short) (disp); \
485         s4 hi = (short) (((disp) - lo) >> 16); \
486         if (hi == 0) { \
487             M_DST_INTERN(a,b,lo); \
488         } else { \
489             M_ADDIS(b,hi,REG_ITMP3); \
490             M_DST_INTERN(a,REG_ITMP3,lo); \
491         } \
492     } while (0)
493
494 #endif /* _CODEGEN_H */
495
496
497 /*
498  * These are local overrides for various environment variables in Emacs.
499  * Please do not remove this and leave it at the end of the file, where
500  * Emacs will automagically detect them.
501  * ---------------------------------------------------------------------
502  * Local variables:
503  * mode: c
504  * indent-tabs-mode: t
505  * c-basic-offset: 4
506  * tab-width: 4
507  * End:
508  */