1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
/* Subroutines for insn-output.c for AT&T we32000 Family.
Contributed by John Wehle (john@feith1.uucp)
Copyright (C) 1991, 1992, 1997 Free Software Foundation, Inc.
This file is part of GNU CC.
GNU CC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.
GNU CC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#include "config.h"
#include <stdio.h>
#include "rtl.h"
#include "real.h"
void
output_move_double (operands)
rtx *operands;
{
rtx lsw_operands[2];
rtx lsw_sreg = NULL;
rtx msw_dreg = NULL;
if (GET_CODE (operands[0]) == REG)
{
lsw_operands[0] = gen_rtx (REG, SImode, REGNO (operands[0]) + 1);
msw_dreg = operands[0];
}
else if (GET_CODE (operands[0]) == MEM && offsettable_memref_p (operands[0]))
lsw_operands[0] = adj_offsettable_operand (operands[0], 4);
else
abort ();
if (GET_CODE (operands[1]) == REG)
{
lsw_operands[1] = gen_rtx (REG, SImode, REGNO (operands[1]) + 1);
lsw_sreg = lsw_operands[1];
}
else if (GET_CODE (operands[1]) == MEM && offsettable_memref_p (operands[1]))
{
lsw_operands[1] = adj_offsettable_operand (operands[1], 4);
lsw_sreg = operands[1];
for ( ; ; )
{
if (REG_P (lsw_sreg))
break;
if (CONSTANT_ADDRESS_P (lsw_sreg))
{
lsw_sreg = NULL;
break;
}
if (GET_CODE (lsw_sreg) == MEM)
{
lsw_sreg = XEXP (lsw_sreg, 0);
continue;
}
if (GET_CODE (lsw_sreg) == PLUS)
{
if (CONSTANT_ADDRESS_P (XEXP (lsw_sreg, 1)))
{
lsw_sreg = XEXP (lsw_sreg, 0);
continue;
}
else if (CONSTANT_ADDRESS_P (XEXP (lsw_sreg, 0)))
{
lsw_sreg = XEXP (lsw_sreg, 1);
continue;
}
}
abort ();
}
}
else if (GET_CODE (operands[1]) == CONST_DOUBLE)
{
lsw_operands[1] = GEN_INT (CONST_DOUBLE_HIGH (operands[1]));
operands[1] = GEN_INT (CONST_DOUBLE_LOW (operands[1]));
}
else if (GET_CODE (operands[1]) == CONST_INT)
{
lsw_operands[1] = operands[1];
operands[1] = const0_rtx;
}
else
abort ();
if (!msw_dreg || !lsw_sreg || REGNO (msw_dreg) != REGNO (lsw_sreg))
{
output_asm_insn ("movw %1, %0", operands);
output_asm_insn ("movw %1, %0", lsw_operands);
}
else
{
output_asm_insn ("movw %1, %0", lsw_operands);
output_asm_insn ("movw %1, %0", operands);
}
}
void
output_push_double (operands)
rtx *operands;
{
rtx lsw_operands[1];
if (GET_CODE (operands[0]) == REG)
lsw_operands[0] = gen_rtx (REG, SImode, REGNO (operands[0]) + 1);
else if (GET_CODE (operands[0]) == MEM && offsettable_memref_p (operands[0]))
lsw_operands[0] = adj_offsettable_operand (operands[0], 4);
else if (GET_CODE (operands[0]) == CONST_DOUBLE)
{
lsw_operands[0] = GEN_INT (CONST_DOUBLE_HIGH (operands[0]));
operands[0] = GEN_INT (CONST_DOUBLE_LOW (operands[0]));
}
else if (GET_CODE (operands[0]) == CONST_INT)
{
lsw_operands[0] = operands[0];
operands[0] = const0_rtx;
}
else
abort ();
output_asm_insn ("pushw %0", operands);
output_asm_insn ("pushw %0", lsw_operands);
}
|