NameDateSize

..07-Jun-202453

arm/H12-Oct-201541

avr/H12-Oct-20159

bfin/H12-Oct-201582

ChangeLogH A D24-Sep-201142.3 KiB

common/H12-Oct-2015130

configureH A D25-Sep-2011141.7 KiB

configure.acH A D24-Sep-20111.2 KiB

configure.tgtH A D24-Sep-20112.3 KiB

cr16/H12-Oct-201513

cris/H12-Oct-201539

d10v/H12-Oct-201513

erc32/H12-Oct-201522

frv/H12-Oct-201545

h8300/H12-Oct-201513

igen/H12-Oct-201543

iq2000/H12-Oct-201524

lm32/H12-Oct-201529

m32c/H12-Oct-201537

m32r/H12-Oct-201546

m68hc11/H12-Oct-201521

MAINTAINERSH A D24-Sep-20111.3 KiB

Makefile.inH A D24-Sep-20116.7 KiB

mcore/H12-Oct-201510

microblaze/H12-Oct-201513

mips/H12-Oct-201535

mn10300/H12-Oct-201523

moxie/H12-Oct-201512

ppc/H12-Oct-2015148

README-HACKINGH A D24-Sep-201117.1 KiB

rx/H12-Oct-201529

sh/H12-Oct-201512

sh64/H12-Oct-201537

testsuite/H07-Jun-202415

v850/H12-Oct-201515

README-HACKING

1This is a loose collection of notes for people hacking on simulators.
2If this document gets big enough it can be prettied up then.
3
4Contents
5
6- The "common" directory
7- Common Makefile Support
8- TAGS support
9- Generating "configure" files
10- tconfig.in
11- C Language Assumptions
12- "dump" commands under gdb
13
14The "common" directory
15======================
16
17The common directory contains:
18
19- common documentation files (e.g. run.1, and maybe in time .texi files)
20- common source files (e.g. run.c)
21- common Makefile fragment and configury (e.g. Make-common.in, aclocal.m4).
22
23In addition "common" contains portions of the system call support
24(e.g. callback.c, nltvals.def).
25
26Even though no files are built in this directory, it is still configured
27so support for regenerating nltvals.def is present.
28
29Common Makefile Support
30=======================
31
32A common configuration framework is available for simulators that want
33to use it.  The common framework exists to remove a lot of duplication
34in configure.in and Makefile.in, and it also provides a foundation for
35enhancing the simulators uniformly (e.g. the more they share in common
36the easier a feature added to one is added to all).
37
38The configure.in of a simulator using the common framework should look like:
39
40--- snip ---
41dnl Process this file with autoconf to produce a configure script.
42sinclude(../common/aclocal.m4)
43AC_PREREQ(2.5)dnl
44AC_INIT(Makefile.in)
45
46SIM_AC_COMMON
47
48... target specific additions ...
49
50SIM_AC_OUTPUT
51--- snip ---
52
53SIM_AC_COMMON:
54
55- invokes the autoconf macros most often used by the simulators
56- defines --enable/--with options usable by all simulators
57- initializes sim_link_files/sim_link_links as the set of symbolic links
58  to set up
59
60SIM_AC_OUTPUT:
61
62- creates the symbolic links defined in sim_link_{files,links}
63- creates config.h
64- creates the Makefile
65
66The Makefile.in of a simulator using the common framework should look like:
67
68--- snip ---
69# Makefile for blah ...
70# Copyright blah ...
71
72## COMMON_PRE_CONFIG_FRAG
73
74# These variables are given default values in COMMON_PRE_CONFIG_FRAG.
75# We override the ones we need to here.
76# Not all of these need to be mentioned, only the necessary ones.
77# In fact it is better to *not* mention ones if the value is the default.
78
79# List of object files, less common parts.
80SIM_OBJS =
81# List of extra dependencies.
82# Generally this consists of simulator specific files included by sim-main.h.
83SIM_EXTRA_DEPS =
84# List of flags to always pass to $(CC).
85SIM_EXTRA_CFLAGS =
86# List of extra libraries to link with.
87SIM_EXTRA_LIBS =
88# List of extra program dependencies.
89SIM_EXTRA_LIBDEPS =
90# List of main object files for `run'.
91SIM_RUN_OBJS = run.o
92# Dependency of `all' to build any extra files.
93SIM_EXTRA_ALL =
94# Dependency of `install' to install any extra files.
95SIM_EXTRA_INSTALL =
96# Dependency of `clean' to clean any extra files.
97SIM_EXTRA_CLEAN =
98
99## COMMON_POST_CONFIG_FRAG
100
101# Rules need to build $(SIM_OBJS), plus whatever else the target wants.
102
103... target specific rules ...
104--- snip ---
105
106COMMON_{PRE,POST}_CONFIG_FRAG are markers for SIM_AC_OUTPUT to tell it
107where to insert the two pieces of common/Make-common.in.
108The resulting Makefile is created by doing autoconf substitions on
109both the target's Makefile.in and Make-common.in, and inserting
110the two pieces of Make-common.in into the target's Makefile.in at
111COMMON_{PRE,POST}_CONFIG_FRAG.
112
113Note that SIM_EXTRA_{INSTALL,CLEAN} could be removed and "::" targets
114could be used instead.  However, it's not clear yet whether "::" targets
115are portable enough.
116
117TAGS support
118============
119
120Many files generate program symbols at compile time.
121Such symbols can't be found with grep nor do they normally appear in
122the TAGS file.  To get around this, source files can add the comment
123
124/* TAGS: foo1 foo2 */
125
126where foo1, foo2 are program symbols.  Symbols found in such comments
127are greppable and appear in the TAGS file.
128
129Generating "configure" files
130============================
131
132For targets using the common framework, "configure" can be generated
133by running `autoconf'.
134
135To regenerate the configure files for all targets using the common framework:
136
137	$  cd devo/sim
138	$  make -f Makefile.in SHELL=/bin/sh autoconf-common
139
140To add a change-log entry to the ChangeLog file for each updated
141directory (WARNING - check the modified new-ChangeLog files before
142renaming):
143
144	$  make -f Makefile.in SHELL=/bin/sh autoconf-changelog
145	$  more */new-ChangeLog
146	$  make -f Makefile.in SHELL=/bin/sh autoconf-install
147
148In a similar vein, both the configure and config.in files can be
149updated using the sequence:
150
151	$  cd devo/sim
152	$  make -f Makefile.in SHELL=/bin/sh autoheader-common
153	$  make -f Makefile.in SHELL=/bin/sh autoheader-changelog
154	$  more */new-ChangeLog
155	$  make -f Makefile.in SHELL=/bin/sh autoheader-install
156
157To add the entries to an alternative ChangeLog file, use:
158
159	$  make ChangeLog=MyChangeLog ....
160
161
162tconfig.in
163==========
164
165File tconfig.in defines one or more target configuration macros
166(e.g. a tm.h file).  There are very few that need defining.
167For a list of all of them, see common/tconfig.in.
168It contains them all, commented out.
169The intent is that a new port can just copy this file and
170define the ones it needs.
171
172C Language Assumptions
173======================
174
175The programmer may assume that the simulator is being built using an
176ANSI C compiler that supports a 64 bit data type.  Consequently:
177
178	o	prototypes can be used (although using
179		PARAMS() and K&R declarations wouldn't
180		go astray).
181
182	o	If sim-types.h is included, the two
183		types signed64 and unsigned64 are
184		available.
185
186	o	The type `unsigned' is valid.
187
188However, the user should be aware of the following:
189
190	o	GCC's `<number>LL' is NOT acceptable.
191		Microsoft-C doesn't reconize it.
192
193	o	MSC's `<number>i64' is NOT acceptable.
194		GCC doesn't reconize it.
195
196	o	GCC's `long long' MSC's `_int64' can
197		NOT be used to define 64 bit integer data
198		types.
199
200	o	An empty array (eg int a[0]) is not valid.
201
202When building with GCC it is effectivly a requirement that
203--enable-build-warnings=,-Werror be specified during configuration.
204
205"dump" commands under gdb
206=========================
207
208gdbinit.in contains the following
209
210define dump
211set sim_debug_dump ()
212end
213
214Simulators that define the sim_debug_dump function can then have their
215internal state pretty printed from gdb.
216
217FIXME: This can obviously be made more elaborate.  As needed it will be.
218
219Rebuilding nltvals.def
220======================
221
222Checkout a copy of the SIM and LIBGLOSS modules (Unless you've already
223got one to hand):
224
225	$  mkdir /tmp/$$
226	$  cd /tmp/$$
227	$  cvs checkout sim-no-testsuite libgloss-no-testsuite newlib-no-testsuite
228
229Configure things for an arbitrary simulator target (I've d10v for
230convenience):
231
232	$  mkdir /tmp/$$/build
233	$  cd /tmp/$$/build
234	$  /tmp/$$/devo/configure --target=d10v-elf
235
236In the sim/common directory rebuild the headers:
237
238	$  cd sim/common
239	$  make headers
240
241To add a new target:
242
243	devo/sim/common/gennltvals.sh
244
245		Add your new processor target (you'll need to grub
246		around to find where your syscall.h lives).
247
248	devo/sim/<processor>/Makefile.in
249
250		Add the definition:
251
252			``NL_TARGET = -DNL_TARGET_d10v''
253
254		just before the line COMMON_POST_CONFIG_FRAG.
255
256	devo/sim/<processor>/*.[ch]
257
258		Include targ-vals.h instead of syscall.h.
259
260Tracing
261=======
262
263For ports based on CGEN, tracing instrumentation should largely be for free,
264so we will cover the basic non-CGEN setup here.  The assumption is that your
265target is using the common autoconf macros and so the build system already
266includes the sim-trace configure flag.
267
268The full tracing API is covered in sim-trace.h, so this section is an overview.
269
270Before calling any trace function, you should make a call to the trace_prefix()
271function.  This is usually done in the main sim_engine_run() loop before
272simulating the next instruction.  You should make this call before every
273simulated insn.  You can probably copy & paste this:
274  if (TRACE_ANY_P (cpu))
275    trace_prefix (sd, cpu, NULL_CIA, oldpc, TRACE_LINENUM_P (cpu), NULL, 0, "");
276
277You will then need to instrument your simulator code with calls to the
278trace_generic() function with the appropriate trace index.  Typically, this
279will take a form similar to the above snippet.  So to trace instructions, you
280would use something like:
281  if (TRACE_INSN_P (cpu))
282    trace_generic (sd, cpu, TRACE_INSN_IDX, "NOP;");
283
284The exact output format is up to you.  See the trace index enum in sim-trace.h
285to see the different tracing info available.
286
287To utilize the tracing features at runtime, simply use the --trace-xxx flags.
288  run --trace-insn ./some-program
289
290Profiling
291=========
292
293Similar to the tracing section, this is merely an overview for non-CGEN based
294ports.  The full API may be found in sim-profile.h.  Its API is also similar
295to the tracing API.
296
297Note that unlike the tracing command line options, in addition to the profile
298flags, you have to use the --verbose option to view the summary report after
299execution.  Tracing output is displayed on the fly, but the profile output is
300only summarized.
301
302To profile core accesses (such as data reads/writes and insn fetches), add
303calls to PROFILE_COUNT_CORE() to your read/write functions.  So in your data
304fetch function, you'd use something like:
305  PROFILE_COUNT_CORE (cpu, target_addr, size_in_bytes, map_read);
306Then in your data write function:
307  PROFILE_COUNT_CORE (cpu, target_addr, size_in_bytes, map_write);
308And in your insn fetcher:
309  PROFILE_COUNT_CORE (cpu, target_addr, size_in_bytes, map_exec);
310
311To use the PC profiling code, you simply have to tell the system where to find
312your simulator's PC and its size.  So in your sim_open() function:
313  STATE_WATCHPOINTS (sd)->pc = address_of_cpu0_pc;
314  STATE_WATCHPOINTS (sd)->sizeof_pc = number_of_bytes_for_pc_storage;
315In a typical 32bit system, the sizeof_pc will be 4 bytes.
316
317To profile branches, in every location where a branch insn is executed, call
318one of the related helpers:
319  PROFILE_BRANCH_TAKEN (cpu);
320  PROFILE_BRANCH_UNTAKEN (cpu);
321If you have stall information, you can utilize the other helpers too.
322
323Environment Simulation
324======================
325
326The simplest simulator doesn't include environment support -- it merely
327simulates the Instruction Set Architecture (ISA).  Once you're ready to move
328on to the next level, call the common macro in your configure.ac:
329SIM_AC_OPTION_ENVIRONMENT
330
331This will support for the user, virtual, and operating environments.  See the
332sim-config.h header for a more detailed description of them.  The former are
333pretty straight forward as things like exceptions (making system calls) are
334handled in the simulator.  Which is to say, an exception does not trigger an
335exception handler in the simulator target -- that is what the operating env
336is about.  See the following userspace section for more information.
337
338Userspace System Calls
339======================
340
341By default, the libgloss userspace is simulated.  That means the system call
342numbers and calling convention matches that of libgloss.  Simulating other
343userspaces (such as Linux) is pretty straightforward, but let's first focus
344on the basics.  The basic API is covered in include/gdb/callback.h.
345
346When an instruction is simulated that invokes the system call method (such as
347forcing a hardware trap or exception), your simulator code should set up the
348CB_SYSCALL data structure before calling the common cb_syscall() function.
349For example:
350static int
351syscall_read_mem (host_callback *cb, struct cb_syscall *sc,
352		  unsigned long taddr, char *buf, int bytes)
353{
354  SIM_DESC sd = (SIM_DESC) sc->p1;
355  SIM_CPU *cpu = (SIM_CPU *) sc->p2;
356  return sim_core_read_buffer (sd, cpu, read_map, buf, taddr, bytes);
357}
358static int
359syscall_write_mem (host_callback *cb, struct cb_syscall *sc,
360		  unsigned long taddr, const char *buf, int bytes)
361{
362  SIM_DESC sd = (SIM_DESC) sc->p1;
363  SIM_CPU *cpu = (SIM_CPU *) sc->p2;
364  return sim_core_write_buffer (sd, cpu, write_map, buf, taddr, bytes);
365}
366void target_sim_syscall (SIM_CPU *cpu)
367{
368  SIM_DESC sd = CPU_STATE (cpu);
369  host_callback *cb = STATE_CALLBACK (sd);
370  CB_SYSCALL sc;
371
372  CB_SYSCALL_INIT (&sc);
373
374  sc.func = <fetch system call number>;
375  sc.arg1 = <fetch first system call argument>;
376  sc.arg2 = <fetch second system call argument>;
377  sc.arg3 = <fetch third system call argument>;
378  sc.arg4 = <fetch fourth system call argument>;
379  sc.p1 = (PTR) sd;
380  sc.p2 = (PTR) cpu;
381  sc.read_mem = syscall_read_mem;
382  sc.write_mem = syscall_write_mem;
383
384  cb_syscall (cb, &sc);
385
386  <store system call result from sc.result>;
387  <store system call error from sc.errcode>;
388}
389Some targets store the result and error code in different places, while others
390only store the error code when the result is an error.
391
392Keep in mind that the CB_SYS_xxx defines are normalized values with no real
393meaning with respect to the target.  They provide a unique map on the host so
394that it can parse things sanely.  For libgloss, the common/nltvals.def file
395creates the target's system call numbers to the CB_SYS_xxx values.
396
397To simulate other userspace targets, you really only need to update the maps
398pointers that are part of the callback interface.  So create CB_TARGET_DEFS_MAP
399arrays for each set (system calls, errnos, open bits, etc...) and in a place
400you find useful, do something like:
401
402...
403static CB_TARGET_DEFS_MAP cb_linux_syscall_map[] = {
404# define TARGET_LINUX_SYS_open 5
405  { CB_SYS_open, TARGET_LINUX_SYS_open },
406  ...
407  { -1, -1 },
408};
409...
410  host_callback *cb = STATE_CALLBACK (sd);
411  cb->syscall_map = cb_linux_syscall_map;
412  cb->errno_map = cb_linux_errno_map;
413  cb->open_map = cb_linux_open_map;
414  cb->signal_map = cb_linux_signal_map;
415  cb->stat_map = cb_linux_stat_map;
416...
417
418Each of these cb_linux_*_map's are manually declared by the arch target.
419
420The target_sim_syscall() example above will then work unchanged (ignoring the
421system call convention) because all of the callback functions go through these
422mapping arrays.
423
424Events
425======
426
427Events are scheduled and executed on behalf of either a cpu or hardware devices.
428The API is pretty much the same and can be found in common/sim-events.h and
429common/hw-events.h.
430
431For simulator targets, you really just have to worry about the schedule and
432deschedule functions.
433
434Device Trees
435============
436
437The device tree model is based on the OpenBoot specification.  Since this is
438largely inherited from the psim code, consult the existing psim documentation
439for some in-depth details.
440	http://sourceware.org/psim/manual/
441
442Hardware Devices
443================
444
445The simplest simulator doesn't include hardware device support.  Once you're
446ready to move on to the next level, call the common macro in your configure.ac:
447SIM_AC_OPTION_HARDWARE(yes,,devone devtwo devthree)
448
449The basic hardware API is documented in common/hw-device.h.
450
451Each device has to have a matching file name with a "dv-" prefix.  So there has
452to be a dv-devone.c, dv-devtwo.c, and dv-devthree.c files.  Further, each file
453has to have a matching hw_descriptor structure.  So the dv-devone.c file has to
454have something like:
455  const struct hw_descriptor dv_devone_descriptor[] = {
456    {"devone", devone_finish,},
457    {NULL, NULL},
458  };
459
460The "devone" string as well as the "devone_finish" function are not hard
461requirements, just common conventions.  The structure name is a hard
462requirement.
463
464The devone_finish() callback function is used to instantiate this device by
465parsing the corresponding properties in the device tree.
466
467Hardware devices typically attach address ranges to themselves.  Then when
468accesses to those addresses are made, the hardware will have its callback
469invoked.  The exact callback could be a normal I/O read/write access, as
470well as a DMA access.  This makes it easy to simulate memory mapped registers.
471
472Keep in mind that like a proper device driver, it may be instantiated many
473times over.  So any device state it needs to be maintained should be allocated
474during the finish callback and attached to the hardware device via set_hw_data.
475Any hardware functions can access this private data via the hw_data function.
476
477Ports (Interrupts / IRQs)
478=========================
479
480First, a note on terminology.  A "port" is an aspect of a hardware device that
481accepts or generates interrupts.  So devices with input ports may be the target
482of an interrupt (accept it), and/or they have output ports so that they may be
483the source of an interrupt (generate it).
484
485Each port has a symbolic name and a unique number.  These are used to identify
486the port in different contexts.  The output port name has no hard relationship
487to the input port name (same for the unique number).  The callback that accepts
488the interrupt uses the name/id of its input port, while the generator function
489uses the name/id of its output port.
490
491The device tree is used to connect the output port of a device to the input
492port of another device.  There are no limits on the number of inputs connected
493to an output, or outputs to an input, or the devices attached to the ports.
494In other words, the input port and output port could be the same device.
495
496The basics are:
497 - each hardware device declares an array of ports (hw_port_descriptor).
498   any mix of input and output ports is allowed.
499 - when setting up the device, attach the array (set_hw_ports).
500 - if the device accepts interrupts, it will have to attach a port callback
501   function (set_hw_port_event)
502 - connect ports with the device tree
503 - handle incoming interrupts with the callback
504 - generate outgoing interrupts with hw_port_event
505