xref: /netbsd-src/external/gpl3/gdb/dist/sim/m32r/cpux.c (revision 05d8e8fe083a4bc28647839371f28bad98396c12)
1 /* Misc. support for CPU family m32rxf.
2 
3 THIS FILE IS MACHINE GENERATED WITH CGEN.
4 
5 Copyright (C) 1996-2024 Free Software Foundation, Inc.
6 
7 This file is part of the GNU simulators.
8 
9    This file is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3, or (at your option)
12    any later version.
13 
14    It is distributed in the hope that it will be useful, but WITHOUT
15    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
17    License for more details.
18 
19    You should have received a copy of the GNU General Public License along
20    with this program; if not, write to the Free Software Foundation, Inc.,
21    51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
22 
23 */
24 
25 #define WANT_CPU m32rxf
26 #define WANT_CPU_M32RXF
27 
28 #include "sim-main.h"
29 #include "cgen-ops.h"
30 
31 /* Get the value of h-pc.  */
32 
33 USI
34 m32rxf_h_pc_get (SIM_CPU *current_cpu)
35 {
36   return CPU (h_pc);
37 }
38 
39 /* Set a value for h-pc.  */
40 
41 void
42 m32rxf_h_pc_set (SIM_CPU *current_cpu, USI newval)
43 {
44   CPU (h_pc) = newval;
45 }
46 
47 /* Get the value of h-gr.  */
48 
49 SI
50 m32rxf_h_gr_get (SIM_CPU *current_cpu, UINT regno)
51 {
52   return CPU (h_gr[regno]);
53 }
54 
55 /* Set a value for h-gr.  */
56 
57 void
58 m32rxf_h_gr_set (SIM_CPU *current_cpu, UINT regno, SI newval)
59 {
60   CPU (h_gr[regno]) = newval;
61 }
62 
63 /* Get the value of h-cr.  */
64 
65 USI
66 m32rxf_h_cr_get (SIM_CPU *current_cpu, UINT regno)
67 {
68   return GET_H_CR (regno);
69 }
70 
71 /* Set a value for h-cr.  */
72 
73 void
74 m32rxf_h_cr_set (SIM_CPU *current_cpu, UINT regno, USI newval)
75 {
76   SET_H_CR (regno, newval);
77 }
78 
79 /* Get the value of h-accum.  */
80 
81 DI
82 m32rxf_h_accum_get (SIM_CPU *current_cpu)
83 {
84   return GET_H_ACCUM ();
85 }
86 
87 /* Set a value for h-accum.  */
88 
89 void
90 m32rxf_h_accum_set (SIM_CPU *current_cpu, DI newval)
91 {
92   SET_H_ACCUM (newval);
93 }
94 
95 /* Get the value of h-accums.  */
96 
97 DI
98 m32rxf_h_accums_get (SIM_CPU *current_cpu, UINT regno)
99 {
100   return GET_H_ACCUMS (regno);
101 }
102 
103 /* Set a value for h-accums.  */
104 
105 void
106 m32rxf_h_accums_set (SIM_CPU *current_cpu, UINT regno, DI newval)
107 {
108   SET_H_ACCUMS (regno, newval);
109 }
110 
111 /* Get the value of h-cond.  */
112 
113 BI
114 m32rxf_h_cond_get (SIM_CPU *current_cpu)
115 {
116   return CPU (h_cond);
117 }
118 
119 /* Set a value for h-cond.  */
120 
121 void
122 m32rxf_h_cond_set (SIM_CPU *current_cpu, BI newval)
123 {
124   CPU (h_cond) = newval;
125 }
126 
127 /* Get the value of h-psw.  */
128 
129 UQI
130 m32rxf_h_psw_get (SIM_CPU *current_cpu)
131 {
132   return GET_H_PSW ();
133 }
134 
135 /* Set a value for h-psw.  */
136 
137 void
138 m32rxf_h_psw_set (SIM_CPU *current_cpu, UQI newval)
139 {
140   SET_H_PSW (newval);
141 }
142 
143 /* Get the value of h-bpsw.  */
144 
145 UQI
146 m32rxf_h_bpsw_get (SIM_CPU *current_cpu)
147 {
148   return CPU (h_bpsw);
149 }
150 
151 /* Set a value for h-bpsw.  */
152 
153 void
154 m32rxf_h_bpsw_set (SIM_CPU *current_cpu, UQI newval)
155 {
156   CPU (h_bpsw) = newval;
157 }
158 
159 /* Get the value of h-bbpsw.  */
160 
161 UQI
162 m32rxf_h_bbpsw_get (SIM_CPU *current_cpu)
163 {
164   return CPU (h_bbpsw);
165 }
166 
167 /* Set a value for h-bbpsw.  */
168 
169 void
170 m32rxf_h_bbpsw_set (SIM_CPU *current_cpu, UQI newval)
171 {
172   CPU (h_bbpsw) = newval;
173 }
174 
175 /* Get the value of h-lock.  */
176 
177 BI
178 m32rxf_h_lock_get (SIM_CPU *current_cpu)
179 {
180   return CPU (h_lock);
181 }
182 
183 /* Set a value for h-lock.  */
184 
185 void
186 m32rxf_h_lock_set (SIM_CPU *current_cpu, BI newval)
187 {
188   CPU (h_lock) = newval;
189 }
190