2 * SPARC micro operations (templates for various register related
5 * Copyright (c) 2003 Fabrice Bellard
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 /* floating point registers moves */
23 void OPPROTO
glue(op_load_fpr_FT0_fpr
, REGNAME
)(void)
28 void OPPROTO
glue(op_store_FT0_fpr_fpr
, REGNAME
)(void)
33 void OPPROTO
glue(op_load_fpr_FT1_fpr
, REGNAME
)(void)
38 void OPPROTO
glue(op_store_FT1_fpr_fpr
, REGNAME
)(void)
43 /* double floating point registers moves */
44 void OPPROTO
glue(op_load_fpr_DT0_fpr
, REGNAME
)(void)
47 uint32_t *p
= (uint32_t *)®
;
53 void OPPROTO
glue(op_store_DT0_fpr_fpr
, REGNAME
)(void)
56 uint32_t *p
= (uint32_t *)®
;
62 void OPPROTO
glue(op_load_fpr_DT1_fpr
, REGNAME
)(void)
65 uint32_t *p
= (uint32_t *)®
;
71 void OPPROTO
glue(op_store_DT1_fpr_fpr
, REGNAME
)(void)
74 uint32_t *p
= (uint32_t *)®
;
80 #if defined(CONFIG_USER_ONLY)
81 /* quad floating point registers moves */
82 void OPPROTO
glue(op_load_fpr_QT0_fpr
, REGNAME
)(void)
85 uint32_t *p
= (uint32_t *)®
;
86 u
.l
.lowest
= *(p
+ 3);
93 void OPPROTO
glue(op_store_QT0_fpr_fpr
, REGNAME
)(void)
96 uint32_t *p
= (uint32_t *)®
;
98 *(p
+ 3) = u
.l
.lowest
;
100 *(p
+ 1) = u
.l
.upper
;
104 void OPPROTO
glue(op_load_fpr_QT1_fpr
, REGNAME
)(void)
107 uint32_t *p
= (uint32_t *)®
;
108 u
.l
.lowest
= *(p
+ 3);
109 u
.l
.lower
= *(p
+ 2);
110 u
.l
.upper
= *(p
+ 1);
115 void OPPROTO
glue(op_store_QT1_fpr_fpr
, REGNAME
)(void)
118 uint32_t *p
= (uint32_t *)®
;
120 *(p
+ 3) = u
.l
.lowest
;
121 *(p
+ 2) = u
.l
.lower
;
122 *(p
+ 1) = u
.l
.upper
;