81adfcedc8
(tdesc_named_type): Use it. (tdesc_type_id, maint_print_c_tdesc_cmd): New functions. (_intialize_target_descriptions): Register "maint print c-tdesc". * features/Makefile (XMLTOC, CFILES, GDB): New macros. (cfiles, %.c): New rules. * features/arm-with-iwmmxt.c, features/mips-linux.c, features/mips64-linux.c: New generated files. * arm-linux-nat.c: Include preparsed description instead of "xml-support.h". (super_xfer_partial, arm_linux_xfer_partial): Remove. (arm_linux_read_description): New function. (_initialize_arm_linux_nat): Set to_read_description instead of to_xfer_partial. Initialize preparsed description. * config/arm/linux.mh (TDEP_XML): Delete. * mips-linux-nat.c: Include preparsed descriptions instead of "xml-support.h". (super_xfer_partial, mips_linux_xfer_partial): Remove. (mips_linux_read_description): New function. (_initialize_mips_linux_nat): Set to_read_description instead of to_xfer_partial. Initialize preparsed description. * config/mips/linux.mh (TDEP_XML): Delete. * Makefile.in (XMLFILES): Remove $(TDEP_XML). (features_headers, arm_with_iwmmxt_c, mips_linux_c) (mips64_linux_c): New macros. (arm-linux-nat.o, mips-linux-nat.o): Update. * gdb.texinfo (Maintenance Commands): Document "maint print c-tdesc".
67 lines
2.4 KiB
Makefile
67 lines
2.4 KiB
Makefile
# Copyright (C) 2007 Free Software Foundation, Inc.
|
|
|
|
# This file is part of GDB.
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
# This file requires GNU make!
|
|
|
|
# This Makefile updates files in ../regformats from their XML master
|
|
# copies. Because this relies on xsltproc, it is not normally run
|
|
# during the build process; it should be run by hand when one of the
|
|
# affected XML files is changed, and the results should be kept in the
|
|
# GDB repository.
|
|
|
|
# It can also update the C files in the features directory from their
|
|
# XML master copies. This relies on a GDB linked with expat and
|
|
# configured for the correct architecture, so the files are again kept
|
|
# in the GDB repository. To generate C files:
|
|
# make GDB=/path/to/gdb XMLTOC="xml files" cfiles
|
|
|
|
WHICH = arm-with-iwmmxt mips-linux mips64-linux
|
|
|
|
# Record which registers should be sent to GDB by default after stop.
|
|
arm-with-iwmmxt-expedite = r11,sp,pc
|
|
mips-linux-expedite = r29,pc
|
|
mips64-linux-expedite = r29,pc
|
|
|
|
XSLTPROC = xsltproc
|
|
outdir = ../regformats
|
|
OUTPUTS = $(patsubst %,$(outdir)/%.dat,$(WHICH))
|
|
|
|
XMLTOC =
|
|
CFILES = $(patsubst %.xml,%.c,$(XMLTOC))
|
|
GDB = false
|
|
|
|
all: $(OUTPUTS)
|
|
|
|
$(outdir)/%.dat: %.xml number-regs.xsl sort-regs.xsl gdbserver-regs.xsl
|
|
echo "# DO NOT EDIT: generated from $<" > $(outdir)/$*.tmp
|
|
echo "name:`echo $* | sed 's/-/_/g'`" >> $(outdir)/$*.tmp
|
|
echo "expedite:$($*-expedite)" >> $(outdir)/$*.tmp
|
|
$(XSLTPROC) --xinclude number-regs.xsl $< | \
|
|
$(XSLTPROC) sort-regs.xsl - | \
|
|
$(XSLTPROC) gdbserver-regs.xsl - >> $(outdir)/$*.tmp
|
|
sh ../../move-if-change $(outdir)/$*.tmp $(outdir)/$*.dat
|
|
|
|
cfiles: $(CFILES)
|
|
%.c: %.xml
|
|
$(GDB) -nx -q -batch \
|
|
-ex "set tdesc filename $<" -ex 'maint print c-tdesc' > $@.tmp
|
|
sh ../../move-if-change $@.tmp $@
|
|
|
|
# Other dependencies.
|
|
$(outdir)/arm-with-iwmmxt.dat: arm-core.xml xscale-iwmmxt.xml
|