1 # Makefile fragment for common parts of all simulators.
2 # Copyright 1997-2001, 2004-2005, 2007-2012 Free Software Foundation,
4 # Contributed by Cygnus Support.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 # This Makefile fragment consists of two separate parts.
20 # They are merged into the final Makefile at points denoted by
21 # "## COMMON_PRE_CONFIG_FRAG" and "## COMMON_POST_CONFIG_FRAG".
23 # The target Makefile should look like:
25 #># Copyright blah blah
27 #>## COMMON_PRE_CONFIG_FRAG
29 #># Any overrides necessary for the SIM_FOO config vars.
32 #>## COMMON_POST_CONFIG_FRAG
34 #># Rules to build target specific .o's.
36 ## COMMON_PRE_CONFIG_FRAG
38 VPATH = @srcdir@:$(srccom)
40 srccom = $(srcdir)/../common
41 srcroot = $(srcdir)/../..
44 exec_prefix = @exec_prefix@
46 host_alias = @host_alias@
47 target_alias = @target_alias@
48 program_transform_name = @program_transform_name@
52 tooldir = $(libdir)/$(target_alias)
55 datarootdir = @datarootdir@
57 man1dir = $(mandir)/man1
59 includedir = @includedir@
61 # This can be referenced by the gettext configuration code.
68 INSTALL_PROGRAM = @INSTALL_PROGRAM@
69 INSTALL_DATA = @INSTALL_DATA@
72 CC_FOR_BUILD = @CC_FOR_BUILD@
74 SIM_BSWAP = @sim_bswap@
75 SIM_CFLAGS = @sim_cflags@
76 SIM_DEBUG = @sim_debug@
77 SIM_TRACE = @sim_trace@
78 SIM_PROFILE = @sim_profile@
80 SIM_ASSERT = @sim_assert@
81 SIM_ALIGNMENT = @sim_alignment@
82 SIM_BITSIZE = @sim_bitsize@
83 SIM_DEFAULT_MODEL = @sim_default_model@
84 SIM_ENDIAN = @sim_endian@
85 SIM_ENVIRONMENT = @sim_environment@
86 SIM_FLOAT = @sim_float@
87 SIM_HW_CFLAGS = @sim_hw_cflags@
88 SIM_HW_OBJS = @sim_hw_objs@
90 SIM_HOSTENDIAN = @sim_hostendian@
91 SIM_INLINE = @sim_inline@
92 SIM_PACKAGES = @sim_packages@
93 SIM_REGPARM = @sim_regparm@
94 SIM_RESERVED_BITS = @sim_reserved_bits@
95 SIM_SCACHE = @sim_scache@
97 SIM_STDCALL = @sim_stdcall@
98 SIM_XOR_ENDIAN = @sim_xor_endian@
99 WARN_CFLAGS = @WARN_CFLAGS@
100 WERROR_CFLAGS = @WERROR_CFLAGS@
101 SIM_WARN_CFLAGS = $(WARN_CFLAGS)
102 SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
104 HDEFINES = @HDEFINES@
112 # Dependency tracking information.
113 DEPMODE = @CCDEPMODE@
115 depcomp = $(SHELL) $(srcroot)/depcomp
117 # Note that these are overridden by GNU make-specific code below if
118 # GNU make is used. The overrides implement dependency tracking.
120 COMPILE.post = -c -o $@
121 COMPILE = $(COMPILE.pre) $(ALL_CFLAGS) $(COMPILE.post)
124 # Each simulator's Makefile.in defines one or more of these variables
125 # to override our settings as necessary. There is no need to define these
126 # in the simulator's Makefile.in if one is using the default value. In fact
127 # it's preferable not to.
129 # List of object files, less common parts.
131 # List of extra dependencies.
132 # Generally this consists of simulator specific files included by sim-main.h.
134 # List of flags to always pass to $(CC).
136 # List of extra libraries to link with.
138 # List of extra program dependencies.
140 # List of main object files for `run'.
142 # Dependency of `all' to build any extra files.
144 # Dependency of `install' to install any extra files.
146 # Dependency of `clean' to clean any extra files.
148 # Likewise `distclean'
149 SIM_EXTRA_DISTCLEAN =
151 # Every time a new general purpose source file was added every target's
152 # Makefile.in needed to be updated to include the file in SIM_OBJS.
153 # This doesn't scale.
154 # This variable specifies all the generic stuff common to the newer simulators.
155 # Things like sim-reason.o can't go here as the cpu may provide its own
156 # (though hopefully in time that won't be so). Things like sim-bits.o can go
157 # here. Some files are used by all simulators (e.g. callback.o).
158 # Those files are specified in LIB_OBJS below.
160 SIM_COMMON_HW_OBJS = \
172 SIM_NEW_COMMON_OBJS = \
195 # cgen-sim.h and the headers it includes
197 $(srccom)/cgen-sim.h \
198 $(srccom)/cgen-defs.h \
199 $(srccom)/cgen-scache.h \
200 $(srccom)/cgen-fpu.h \
201 $(srccom)/cgen-par.h \
202 $(srccom)/cgen-cpu.h \
203 $(srccom)/cgen-trace.h \
206 # Add this to SIM_EXTRA_DEPS.
207 CGEN_INCLUDE_DEPS = \
209 $(srccom)/cgen-engine.h \
210 $(srccom)/cgen-types.h \
211 $(srcdir)/../../include/opcode/cgen.h
213 ## End COMMON_PRE_CONFIG_FRAG
215 ## COMMON_POST_CONFIG_FRAG
221 $(SIM_DEFAULT_MODEL) \
236 $(SIM_RESERVED_BITS) \
241 $(SIM_WERROR_CFLAGS) \
244 $(SIM_EXTRA_CFLAGS) \
245 $(HDEFINES) $(TDEFINES)
246 CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
247 -I../../include -I$(srcroot)/include \
248 -I../../bfd -I$(srcroot)/bfd \
249 -I../../opcodes -I$(srcroot)/opcodes \
251 ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
252 BUILD_CFLAGS = -g -O $(CSEARCH)
254 COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
256 LIBIBERTY_LIB = ../../libiberty/libiberty.a
257 BFD_LIB = ../../bfd/libbfd.a
258 OPCODES_LIB = ../../opcodes/libopcodes.a
260 LIBINTL_DEP = @LIBINTL_DEP@
262 LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL_DEP) $(LIBIBERTY_LIB) \
264 EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL) $(LIBIBERTY_LIB) \
265 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
267 LIB_OBJS = callback.o syscall.o targ-map.o version.o $(SIM_OBJS)
271 callback_h = $(srcroot)/include/gdb/callback.h
272 remote_sim_h = $(srcroot)/include/gdb/remote-sim.h
274 all: $(SIM_EXTRA_ALL) libsim.a run$(EXEEXT) .gdbinit
276 libsim.a: $(LIB_OBJS)
278 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
281 run$(EXEEXT): $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
282 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o run$(EXEEXT) \
283 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
285 # FIXME: Ideally, callback.o and friends live in a library outside of
286 # both the gdb and simulator source trees (e.g. devo/remote. Not
287 # devo/libremote because this directory would contain more than just
290 gentmap: Makefile $(srccom)/gentmap.c targ-vals.def
291 $(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
293 targ-vals.h targ-map.c: stamp-tvals
295 rm -f tmp-tvals.h tmp-tmap.c
296 ./gentmap -h >tmp-tvals.h
297 $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
298 ./gentmap -c >tmp-tmap.c
299 $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
302 version.c: Makefile ../../gdb/version.in
303 rm -f version.c-tmp version.c
304 echo '#include "version.h"' >> version.c-tmp
305 echo 'const char version[] = "'"`sed q ${srcdir}/../../gdb/version.in`"'";' >> version.c-tmp
306 mv version.c-tmp version.c
310 # Rules for building sim-* components. Triggered by listing the corresponding
311 # .o file in the list of simulator targets.
330 # Exported version of sim_main_headers.
334 sim-alu_h = $(srccom)/sim-alu.h
335 sim-arange_h = $(srccom)/sim-arange.h \
336 $(srccom)/sim-arange.c
337 sim-assert_h = $(srccom)/sim-assert.h
338 sim-base_h = $(srccom)/sim-base.h \
350 sim-basics_h = $(srccom)/sim-basics.h \
351 ../common/cconfig.h \
362 sim-bits_h = $(srccom)/sim-bits.h \
364 sim-config_h = $(srccom)/sim-config.h
365 sim-core_h = $(srccom)/sim-core.h
366 sim-cpu_h = $(srccom)/sim-cpu.h
367 sim-endian_h = $(srccom)/sim-endian.h \
368 $(srccom)/sim-endian.c
369 sim-engine_h = $(srccom)/sim-engine.h
370 sim-events_h = $(srccom)/sim-events.h
371 sim-fpu_h = $(srccom)/sim-fpu.h
372 sim-hw_h = $(srccom)/sim-hw.h
373 sim-inline_h = $(srccom)/sim-inline.h
374 sim-io_h = $(srccom)/sim-io.h
375 sim-memopt_h = $(srccom)/sim-memopt.h
376 sim-model_h = $(srccom)/sim-model.h
377 sim-module_h = $(srccom)/sim-module.h
378 sim-n-bits_h = $(srccom)/sim-n-bits.h
379 sim-n-core_h = $(srccom)/sim-n-core.h
380 sim-n-endian_h = $(srccom)/sim-n-endian.h
381 sim-options_h = $(srccom)/sim-options.h
382 sim-profile_h = $(srccom)/sim-profile.h
383 sim-signal_h = $(srccom)/sim-signal.h
384 sim-trace_h = $(srccom)/sim-trace.h
385 sim-types_h = $(srccom)/sim-types.h
386 sim-utils_h = $(srccom)/sim-utils.h
387 sim-watch_h = $(srccom)/sim-watch.h
389 hw-alloc_h = $(srccom)/hw-alloc.h
390 hw-base_h = $(srccom)/hw-base.h
391 hw-device_h = $(srccom)/hw-device.h
392 hw-events_h = $(srccom)/hw-events.h
393 hw-handles_h = $(srccom)/hw-handles.h
394 hw-instances_h = $(srccom)/hw-instances.h
395 hw-ports_h = $(srccom)/hw-ports.h
396 hw-properties_h = $(srccom)/hw-properties.h
397 hw-tree_h = $(srccom)/hw-tree.h
400 $(srccom)/hw-main.h \
411 # Dependency tracking. Most of this is conditional on GNU Make being
412 # found by configure; if GNU Make is not found, we fall back to a
416 @GMAKE_TRUE@ifeq ($(DEPMODE),depmode=gcc3)
417 # Note that we put the dependencies into a .Tpo file, then move them
418 # into place if the compile succeeds. We need this because gcc does
419 # not atomically write the dependency output file.
420 @GMAKE_TRUE@override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
421 @GMAKE_TRUE@ -MF $(DEPDIR)/$(basename $(@F)).Tpo
422 @GMAKE_TRUE@override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
423 @GMAKE_TRUE@ $(DEPDIR)/$(basename $(@F)).Po
425 @GMAKE_TRUE@override COMPILE.pre = source='$<' object='$@' libtool=no \
426 @GMAKE_TRUE@ DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
427 # depcomp handles atomicity for us, so we don't need a postcompile
429 @GMAKE_TRUE@override POSTCOMPILE =
432 all_object_files = $(LIB_OBJS) $(SIM_RUN_OBJS)
440 # Ensure that generated files are created early. Use order-only
441 # dependencies if available. They require GNU make 3.80 or newer,
442 # and the .VARIABLES variable was introduced at the same time.
443 @GMAKE_TRUE@ifdef .VARIABLES
444 @GMAKE_TRUE@$(all_object_files): | $(generated_files)
446 $(all_object_files) : $(generated_files)
450 @GMAKE_TRUE@-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
452 BUILT_SRC_FROM_COMMON= \
455 sim-inline.c: $(srccom)/sim-inline.c
457 echo "# 1 \"$(srccom)/$@\"" > tmp-$@
458 cat $(srccom)/$@ >> tmp-$@
459 $(SHELL) $(srcdir)/../../move-if-change tmp-$@ $@
461 # FIXME This is one very simple-minded way of generating the file hw-config.h
462 hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
464 echo "/* generated by Makefile */" > tmp-hw.h
465 sim_hw="$(SIM_HW)"; \
466 for hw in $$sim_hw ; do \
467 echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
469 echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
470 sim_hw="$(SIM_HW)"; \
471 for hw in $$sim_hw ; do \
472 echo " dv_$${hw}_descriptor," ; \
474 echo " NULL," >> tmp-hw.h
475 echo "};" >> tmp-hw.h
476 mv tmp-hw.h hw-config.h
478 test-hw-events: $(srccom)/hw-events.c libsim.a
479 $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
480 $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
484 # For use in Makefile.in for cpu-specific files.
485 CGEN_MAIN_CPU_DEPS = \
487 $(srccom)/cgen-ops.h \
492 install: install-common $(SIM_EXTRA_INSTALL)
494 install-common: installdirs
495 n=`echo run | sed '$(program_transform_name)'`; \
496 $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
497 n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
498 $(INSTALL_DATA) libsim.a $(DESTDIR)$(libdir)/$$n ; \
499 ( cd $(DESTDIR)$(libdir) ; $(RANLIB) $$n )
502 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir)
503 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir)
506 cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
517 # Macros like EXTERN_SIM_CORE confuse tags.
518 # And the sim-n-foo.h files create functions that can't be found either.
521 etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
522 *.[ch] ../common/*.[ch]
524 clean: $(SIM_EXTRA_CLEAN)
526 rm -f run$(EXEEXT) libsim.a
527 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
528 if [ ! -f Make-common.in ] ; then \
529 rm -f $(BUILT_SRC_FROM_COMMON) ; \
531 rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
533 distclean mostlyclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
535 rm -f Makefile config.cache config.log config.status .gdbinit
536 rm -f tconfig.h config.h stamp-h
543 # Dummy target to force execution of dependent targets.
546 Makefile: Makefile.in $(srccom)/Make-common.in config.status
547 CONFIG_HEADERS= $(SHELL) ./config.status
549 config.status: configure
550 $(SHELL) ./config.status --recheck
552 config.h: stamp-h ; @true
553 stamp-h: config.in config.status
554 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
556 .gdbinit: # config.status $(srccom)/gdbinit.in
557 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
563 CGEN = "`if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi` -l $(CGENDIR)/guile.scm -s"
565 CGEN_CPU_DIR = $(CGENDIR)/cpu
567 # Most ports use the files here instead of cgen/cpu.
568 CPU_DIR = $(srcroot)/cpu
570 CGEN_READ_SCM = $(CGENDIR)/sim.scm
571 CGEN_ARCH_SCM = $(CGENDIR)/sim-arch.scm
572 CGEN_CPU_SCM = $(CGENDIR)/sim-cpu.scm $(CGENDIR)/sim-model.scm
573 CGEN_DECODE_SCM = $(CGENDIR)/sim-decode.scm
574 CGEN_DESC_SCM = $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm
576 # Various choices for which cpu specific files to generate.
577 # These are passed to cgen.sh in the "extrafiles" argument.
578 CGEN_CPU_EXTR = /extr/
579 CGEN_CPU_READ = /read/
580 CGEN_CPU_WRITE = /write/
582 CGEN_CPU_SEMSW = /semsw/
584 CGEN_FLAGS_TO_PASS = \
586 CGENFLAGS="$(CGENFLAGS)"
588 # We store the generated files in the source directory until we decide to
589 # ship a Scheme interpreter with gdb/binutils. Maybe we never will.
592 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
593 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
594 $(arch) "$(FLAGS)" ignored "$(isa)" $(mach) ignored \
598 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
599 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
600 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
601 $(archfile) "$(EXTRAFILES)"
604 $(SHELL) $(srccom)/cgen.sh defs $(srcdir) \
605 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
606 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
610 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
611 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
612 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
613 $(archfile) "$(EXTRAFILES)"
615 cgen-cpu-decode: force
616 $(SHELL) $(srccom)/cgen.sh cpu-decode $(srcdir) \
617 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
618 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
619 $(archfile) "$(EXTRAFILES)"
622 $(SHELL) $(srccom)/cgen.sh desc $(srcdir) \
623 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
624 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
625 $(archfile) ignored $(opcfile)
627 ## End COMMON_POST_CONFIG_FRAG