
The defs.h header will take care of including the various config.h headers. For now, it's just config.h, but we'll add more when we integrate gnulib in. This header should be used instead of config.h, and should be the first include in every .c file. We won't rely on the old behavior where we expected files to include the port's sim-main.h which then includes the common sim-basics.h which then includes config.h. We have a ton of code that includes things before sim-main.h, and it sometimes needs to be that way. Creating a dedicated header avoids the ordering mess and implicit inclusion that shows up otherwise.
92 lines
2.2 KiB
Text
92 lines
2.2 KiB
Text
2021-05-16 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* interp.c, machs.c, sim-main.c: Replace config.h include with defs.h.
|
|
|
|
2021-05-15 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* sim-main.c (mulhu): Change check to HAVE___INT128.
|
|
* config.in, configure: Regenerate.
|
|
|
|
2021-05-12 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* configure.ac: Delete SIM_AC_OPTION_ENVIRONMENT call.
|
|
* configure: Regenerate.
|
|
|
|
2021-05-04 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2021-05-01 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* config.in, configure: Regenerate.
|
|
|
|
2021-05-01 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* sim-main.c (mulhu): Check if __SIZEOF_INT128__ is defined.
|
|
|
|
2021-04-26 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* sim-main.c (MAX, MIN): Delete.
|
|
(execute_a): Change MAX/MIN to max/min.
|
|
|
|
2021-04-26 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* aclocal.m4, config.in, configure: Regenerate.
|
|
|
|
2021-04-22 Tom Tromey <tom@tromey.com>
|
|
|
|
* configure, config.in: Rebuild.
|
|
|
|
2021-04-22 Tom Tromey <tom@tromey.com>
|
|
|
|
* configure: Rebuild.
|
|
|
|
2021-04-21 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* aclocal.m4: Regenerate.
|
|
|
|
2021-04-21 Simon Marchi <simon.marchi@polymtl.ca>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2021-04-18 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2021-04-12 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* interp.c (sim_open): Delete 3rd arg to sim_cpu_alloc_all.
|
|
|
|
2021-04-02 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* aclocal.m4, configure: Regenerate.
|
|
|
|
2021-02-28 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2021-02-21 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* configure.ac (AC_CONFIG_MACRO_DIRS): Replace common with m4.
|
|
* aclocal.m4, configure: Regenerate.
|
|
|
|
2021-02-13 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* configure.ac: Replace sinclude with AC_CONFIG_MACRO_DIRS.
|
|
* aclocal.m4, configure: Regenerate.
|
|
|
|
2021-02-06 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2021-02-04 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* sim-main.c: Include gdb/sim-riscv.h.
|
|
(reg_fetch, reg_store): Define.
|
|
(initialize_cpu): Assign reg_fetch & reg_store.
|
|
|
|
2021-02-04 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* Makefile.in, configure.ac, interp.c, machs.c, machs.h,
|
|
model_list.def, sim-main.c, sim-main.h: New files.
|
|
* aclocal.m4, config.in, configure: Regenerated.
|