]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/frv/sim-if.c
sim: standardize sim_create_inferior handling of argv a bit more
[thirdparty/binutils-gdb.git] / sim / frv / sim-if.c
CommitLineData
b34f6357 1/* Main simulator entry points specific to the FRV.
32d0add0 2 Copyright (C) 1998-2015 Free Software Foundation, Inc.
b34f6357
DB
3 Contributed by Red Hat.
4
5This file is part of the GNU simulators.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
4744ac1b
JB
9the Free Software Foundation; either version 3 of the License, or
10(at your option) any later version.
b34f6357
DB
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
4744ac1b
JB
17You should have received a copy of the GNU General Public License
18along with this program. If not, see <http://www.gnu.org/licenses/>. */
b34f6357
DB
19
20#define WANT_CPU
21#define WANT_CPU_FRVBF
22#include "sim-main.h"
23#ifdef HAVE_STDLIB_H
24#include <stdlib.h>
25#endif
26#include "sim-options.h"
27#include "libiberty.h"
28#include "bfd.h"
29#include "elf-bfd.h"
30
31static void free_state (SIM_DESC);
32static void print_frv_misc_cpu (SIM_CPU *cpu, int verbose);
33
34/* Records simulator descriptor so utilities like frv_dump_regs can be
35 called from gdb. */
36SIM_DESC current_state;
37\f
38/* Cover function of sim_state_free to free the cpu buffers as well. */
39
40static void
41free_state (SIM_DESC sd)
42{
43 if (STATE_MODULES (sd) != NULL)
44 sim_module_uninstall (sd);
45 sim_cpu_free_all (sd);
46 sim_state_free (sd);
47}
48
49/* Create an instance of the simulator. */
50
51SIM_DESC
52sim_open (kind, callback, abfd, argv)
53 SIM_OPEN_KIND kind;
54 host_callback *callback;
55 bfd *abfd;
56 char **argv;
57{
58 char c;
59 int i;
60 unsigned long elf_flags = 0;
61 SIM_DESC sd = sim_state_alloc (kind, callback);
62
63 /* The cpu data is kept in a separately allocated chunk of memory. */
64 if (sim_cpu_alloc_all (sd, 1, cgen_cpu_max_extra_bytes ()) != SIM_RC_OK)
65 {
66 free_state (sd);
67 return 0;
68 }
69
70#if 0 /* FIXME: pc is in mach-specific struct */
71 /* FIXME: watchpoints code shouldn't need this */
72 {
73 SIM_CPU *current_cpu = STATE_CPU (sd, 0);
74 STATE_WATCHPOINTS (sd)->pc = &(PC);
75 STATE_WATCHPOINTS (sd)->sizeof_pc = sizeof (PC);
76 }
77#endif
78
79 if (sim_pre_argv_init (sd, argv[0]) != SIM_RC_OK)
80 {
81 free_state (sd);
82 return 0;
83 }
84
85 /* These options override any module options.
86 Obviously ambiguity should be avoided, however the caller may wish to
87 augment the meaning of an option. */
88 sim_add_option_table (sd, NULL, frv_options);
89
90 /* getopt will print the error message so we just have to exit if this fails.
91 FIXME: Hmmm... in the case of gdb we need getopt to call
92 print_filtered. */
93 if (sim_parse_args (sd, argv) != SIM_RC_OK)
94 {
95 free_state (sd);
96 return 0;
97 }
98
b34f6357
DB
99 /* Allocate core managed memory if none specified by user.
100 Use address 4 here in case the user wanted address 0 unmapped. */
101 if (sim_core_read_buffer (sd, NULL, read_map, &c, 4, 1) == 0)
102 sim_do_commandf (sd, "memory region 0,0x%lx", FRV_DEFAULT_MEM_SIZE);
103
104 /* check for/establish the reference program image */
105 if (sim_analyze_program (sd,
106 (STATE_PROG_ARGV (sd) != NULL
107 ? *STATE_PROG_ARGV (sd)
108 : NULL),
109 abfd) != SIM_RC_OK)
110 {
111 free_state (sd);
112 return 0;
113 }
114
115 /* set machine and architecture correctly instead of defaulting to frv */
116 {
117 bfd *prog_bfd = STATE_PROG_BFD (sd);
118 if (prog_bfd != NULL)
119 {
120 struct elf_backend_data *backend_data;
121
122 if (bfd_get_arch (prog_bfd) != bfd_arch_frv)
123 {
124 sim_io_eprintf (sd, "%s: \"%s\" is not a FRV object file\n",
125 STATE_MY_NAME (sd),
126 bfd_get_filename (prog_bfd));
127 free_state (sd);
128 return 0;
129 }
130
131 backend_data = get_elf_backend_data (prog_bfd);
132
133 if (backend_data != NULL)
134 backend_data->elf_backend_object_p (prog_bfd);
135
136 elf_flags = elf_elfheader (prog_bfd)->e_flags;
137 }
138 }
139
140 /* Establish any remaining configuration options. */
141 if (sim_config (sd) != SIM_RC_OK)
142 {
143 free_state (sd);
144 return 0;
145 }
146
147 if (sim_post_argv_init (sd) != SIM_RC_OK)
148 {
149 free_state (sd);
150 return 0;
151 }
152
153 /* Open a copy of the cpu descriptor table. */
154 {
155 CGEN_CPU_DESC cd = frv_cgen_cpu_open_1 (STATE_ARCHITECTURE (sd)->printable_name,
156 CGEN_ENDIAN_BIG);
157 for (i = 0; i < MAX_NR_PROCESSORS; ++i)
158 {
159 SIM_CPU *cpu = STATE_CPU (sd, i);
160 CPU_CPU_DESC (cpu) = cd;
161 CPU_DISASSEMBLER (cpu) = sim_cgen_disassemble_insn;
162 CPU_ELF_FLAGS (cpu) = elf_flags;
163 }
164 frv_cgen_init_dis (cd);
165 }
166
167 /* Initialize various cgen things not done by common framework.
168 Must be done after frv_cgen_cpu_open. */
169 cgen_init (sd);
170
171 /* CPU specific initialization. */
172 for (i = 0; i < MAX_NR_PROCESSORS; ++i)
173 {
174 SIM_CPU* cpu = STATE_CPU (sd, i);
175 frv_initialize (cpu, sd);
176 }
177
178 /* Store in a global so things like sparc32_dump_regs can be invoked
179 from the gdb command line. */
180 current_state = sd;
181
182 return sd;
183}
184
185void
6e4f085c 186frv_sim_close (sd, quitting)
b34f6357
DB
187 SIM_DESC sd;
188 int quitting;
189{
190 int i;
191 /* Terminate cache support. */
192 for (i = 0; i < MAX_NR_PROCESSORS; ++i)
193 {
194 SIM_CPU* cpu = STATE_CPU (sd, i);
195 frv_cache_term (CPU_INSN_CACHE (cpu));
196 frv_cache_term (CPU_DATA_CACHE (cpu));
197 }
b34f6357
DB
198}
199\f
200SIM_RC
201sim_create_inferior (sd, abfd, argv, envp)
202 SIM_DESC sd;
203 bfd *abfd;
204 char **argv;
205 char **envp;
206{
207 SIM_CPU *current_cpu = STATE_CPU (sd, 0);
208 SIM_ADDR addr;
209
210 if (abfd != NULL)
211 addr = bfd_get_start_address (abfd);
212 else
213 addr = 0;
214 sim_pc_set (current_cpu, addr);
215
0e967299
MF
216 /* Standalone mode (i.e. `run`) will take care of the argv for us in
217 sim_open() -> sim_parse_args(). But in debug mode (i.e. 'target sim'
218 with `gdb`), we need to handle it because the user can change the
219 argv on the fly via gdb's 'run'. */
220 if (STATE_PROG_ARGV (sd) != argv)
221 {
222 freeargv (STATE_PROG_ARGV (sd));
223 STATE_PROG_ARGV (sd) = dupargv (argv);
224 }
b34f6357
DB
225
226 return SIM_RC_OK;
227}