]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/riscv/interp.c
sim: overhaul & unify endian settings management
[thirdparty/binutils-gdb.git] / sim / riscv / interp.c
CommitLineData
b9249c46
MF
1/* RISC-V simulator.
2
3 Copyright (C) 2005-2021 Free Software Foundation, Inc.
4 Contributed by Mike Frysinger.
5
6 This file is part of simulators.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
6df01ab8
MF
21/* This must come before any other includes. */
22#include "defs.h"
b9249c46
MF
23
24#include "sim-main.h"
25#include "sim-options.h"
26\f
27void
28sim_engine_run (SIM_DESC sd,
29 int next_cpu_nr, /* ignore */
30 int nr_cpus, /* ignore */
31 int siggnal) /* ignore */
32{
33 SIM_CPU *cpu;
34
35 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
36
37 cpu = STATE_CPU (sd, 0);
38
39 while (1)
40 {
41 step_once (cpu);
42 if (sim_events_tick (sd))
43 sim_events_process (sd);
44 }
45}
46\f
47static void
48free_state (SIM_DESC sd)
49{
50 if (STATE_MODULES (sd) != NULL)
51 sim_module_uninstall (sd);
52 sim_cpu_free_all (sd);
53 sim_state_free (sd);
54}
55
56SIM_DESC
57sim_open (SIM_OPEN_KIND kind, host_callback *callback,
58 struct bfd *abfd, char * const *argv)
59{
60 char c;
61 int i;
10c23a2c
MF
62 SIM_DESC sd = sim_state_alloc_extra (kind, callback,
63 sizeof (struct riscv_sim_state));
b9249c46 64
f9a4d543
MF
65 /* Set default options before parsing user options. */
66 current_target_byte_order = BFD_ENDIAN_LITTLE;
67
b9249c46 68 /* The cpu data is kept in a separately allocated chunk of memory. */
d5a71b11 69 if (sim_cpu_alloc_all (sd, 1) != SIM_RC_OK)
b9249c46
MF
70 {
71 free_state (sd);
72 return 0;
73 }
74
75 if (sim_pre_argv_init (sd, argv[0]) != SIM_RC_OK)
76 {
77 free_state (sd);
78 return 0;
79 }
80
81 /* XXX: Default to the Virtual environment. */
82 if (STATE_ENVIRONMENT (sd) == ALL_ENVIRONMENT)
83 STATE_ENVIRONMENT (sd) = VIRTUAL_ENVIRONMENT;
84
85 /* The parser will print an error message for us, so we silently return. */
86 if (sim_parse_args (sd, argv) != SIM_RC_OK)
87 {
88 free_state (sd);
89 return 0;
90 }
91
92 /* Check for/establish the a reference program image. */
93 if (sim_analyze_program (sd,
94 (STATE_PROG_ARGV (sd) != NULL
95 ? *STATE_PROG_ARGV (sd)
96 : NULL), abfd) != SIM_RC_OK)
97 {
98 free_state (sd);
99 return 0;
100 }
101
102 /* Establish any remaining configuration options. */
103 if (sim_config (sd) != SIM_RC_OK)
104 {
105 free_state (sd);
106 return 0;
107 }
108
109 if (sim_post_argv_init (sd) != SIM_RC_OK)
110 {
111 free_state (sd);
112 return 0;
113 }
114
115 /* CPU specific initialization. */
116 for (i = 0; i < MAX_NR_PROCESSORS; ++i)
117 {
118 SIM_CPU *cpu = STATE_CPU (sd, i);
119
120 initialize_cpu (sd, cpu, i);
121 }
122
123 /* Allocate external memory if none specified by user.
124 Use address 4 here in case the user wanted address 0 unmapped. */
125 if (sim_core_read_buffer (sd, NULL, read_map, &c, 4, 1) == 0)
126 sim_do_commandf (sd, "memory-size %#x", DEFAULT_MEM_SIZE);
127
128 return sd;
129}
130\f
131SIM_RC
132sim_create_inferior (SIM_DESC sd, struct bfd *abfd,
133 char * const *argv, char * const *env)
134{
135 SIM_CPU *cpu = STATE_CPU (sd, 0);
136 SIM_ADDR addr;
137
138 /* Set the PC. */
139 if (abfd != NULL)
140 addr = bfd_get_start_address (abfd);
141 else
142 addr = 0;
143 sim_pc_set (cpu, addr);
144
145 /* Standalone mode (i.e. `run`) will take care of the argv for us in
146 sim_open() -> sim_parse_args(). But in debug mode (i.e. 'target sim'
147 with `gdb`), we need to handle it because the user can change the
148 argv on the fly via gdb's 'run'. */
149 if (STATE_PROG_ARGV (sd) != argv)
150 {
151 freeargv (STATE_PROG_ARGV (sd));
152 STATE_PROG_ARGV (sd) = dupargv (argv);
153 }
154
155 initialize_env (sd, (void *)argv, (void *)env);
156
157 return SIM_RC_OK;
158}