Home | History | Annotate | Line # | Download | only in features
Makefile revision 1.5
      1  1.3  christos # Copyright (C) 2007-2015 Free Software Foundation, Inc.
      2  1.1  christos 
      3  1.1  christos # This file is part of GDB.
      4  1.1  christos 
      5  1.1  christos # This program is free software; you can redistribute it and/or modify
      6  1.1  christos # it under the terms of the GNU General Public License as published by
      7  1.1  christos # the Free Software Foundation; either version 3 of the License, or
      8  1.1  christos # (at your option) any later version.
      9  1.1  christos #
     10  1.1  christos # This program is distributed in the hope that it will be useful,
     11  1.1  christos # but WITHOUT ANY WARRANTY; without even the implied warranty of
     12  1.1  christos # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13  1.1  christos # GNU General Public License for more details.
     14  1.1  christos #
     15  1.1  christos # You should have received a copy of the GNU General Public License
     16  1.1  christos # along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17  1.1  christos 
     18  1.1  christos 
     19  1.1  christos # This file requires GNU make!
     20  1.1  christos 
     21  1.1  christos # This Makefile updates files in ../regformats from their XML master
     22  1.1  christos # copies.  Because this relies on xsltproc, it is not normally run
     23  1.1  christos # during the build process; it should be run by hand when one of the
     24  1.1  christos # affected XML files is changed, and the results should be kept in the
     25  1.1  christos # GDB repository.
     26  1.1  christos 
     27  1.1  christos # It can also update the C files in the features directory from their
     28  1.3  christos # XML master copies.  This relies on a GDB linked with expat and that
     29  1.3  christos # is configured to include support for the architecture, so the files
     30  1.3  christos # are kept in the GDB repository.
     31  1.3  christos #
     32  1.3  christos # By default we'll generate all C files, and you must point make at a
     33  1.3  christos # GDB that has been configured with --enable-targets=all:
     34  1.3  christos #
     35  1.3  christos #   make GDB=/path/to/gdb cfiles
     36  1.3  christos #
     37  1.3  christos # To regenerate all C files from scratch:
     38  1.3  christos #
     39  1.3  christos #   make GDB=/path/to/gdb clean-cfiles cfiles
     40  1.3  christos #
     41  1.3  christos # To generate specific C files, you can override the XMLTOC make
     42  1.3  christos # variable:
     43  1.3  christos #
     44  1.1  christos #   make GDB=/path/to/gdb XMLTOC="xml files" cfiles
     45  1.1  christos 
     46  1.1  christos WHICH = aarch64 \
     47  1.1  christos 	arm-with-iwmmxt arm-with-vfpv2 arm-with-vfpv3 arm-with-neon \
     48  1.1  christos 	i386/i386 i386/i386-linux \
     49  1.1  christos 	i386/i386-mmx i386/i386-mmx-linux \
     50  1.1  christos 	i386/amd64 i386/amd64-linux \
     51  1.1  christos 	i386/i386-avx i386/i386-avx-linux \
     52  1.1  christos 	i386/i386-mpx i386/i386-mpx-linux \
     53  1.3  christos 	i386/i386-avx512 i386/i386-avx512-linux \
     54  1.1  christos 	i386/amd64-avx i386/amd64-avx-linux \
     55  1.1  christos 	i386/amd64-mpx i386/amd64-mpx-linux \
     56  1.3  christos 	i386/amd64-avx512 i386/amd64-avx512-linux \
     57  1.1  christos 	i386/x32 i386/x32-linux \
     58  1.1  christos 	i386/x32-avx i386/x32-avx-linux \
     59  1.3  christos 	i386/x32-avx512 i386/x32-avx512-linux \
     60  1.1  christos 	mips-linux mips-dsp-linux \
     61  1.3  christos 	microblaze-with-stack-protect \
     62  1.1  christos 	mips64-linux mips64-dsp-linux \
     63  1.1  christos 	nios2-linux \
     64  1.1  christos 	rs6000/powerpc-32 \
     65  1.1  christos 	rs6000/powerpc-32l rs6000/powerpc-altivec32l rs6000/powerpc-e500l \
     66  1.1  christos 	rs6000/powerpc-64l rs6000/powerpc-altivec64l rs6000/powerpc-vsx32l \
     67  1.1  christos 	rs6000/powerpc-vsx64l rs6000/powerpc-cell32l rs6000/powerpc-cell64l \
     68  1.1  christos 	s390-linux32 s390-linux64 s390x-linux64 \
     69  1.1  christos 	s390-linux32v1 s390-linux64v1 s390x-linux64v1 \
     70  1.1  christos 	s390-linux32v2 s390-linux64v2 s390x-linux64v2 \
     71  1.5  christos 	s390-te-linux64 s390x-te-linux64 s390-vx-linux64 s390x-vx-linux64 \
     72  1.5  christos 	s390-tevx-linux64 s390x-tevx-linux64 \
     73  1.1  christos 	tic6x-c64xp tic6x-c64x tic6x-c62x \
     74  1.1  christos 	tic6x-c64xp-linux tic6x-c64x-linux tic6x-c62x-linux
     75  1.1  christos 
     76  1.1  christos # Record which registers should be sent to GDB by default after stop.
     77  1.1  christos aarch64-expedite = x29,sp,pc
     78  1.1  christos arm-expedite = r11,sp,pc
     79  1.1  christos i386/i386-expedite = ebp,esp,eip
     80  1.1  christos i386/i386-linux-expedite = ebp,esp,eip
     81  1.1  christos i386/amd64-expedite = rbp,rsp,rip
     82  1.1  christos i386/amd64-linux-expedite = rbp,rsp,rip
     83  1.1  christos i386/i386-avx-expedite = ebp,esp,eip
     84  1.1  christos i386/i386-avx-linux-expedite = ebp,esp,eip
     85  1.1  christos i386/i386-mpx-expedite = ebp,esp,eip
     86  1.1  christos i386/i386-mpx-linux-expedite = ebp,esp,eip
     87  1.3  christos i386/i386-avx512-expedite = ebp,esp,eip
     88  1.3  christos i386/i386-avx512-linux-expedite = ebp,esp,eip
     89  1.1  christos i386/i386-mmx-expedite = ebp,esp,eip
     90  1.1  christos i386/i386-mmx-linux-expedite = ebp,esp,eip
     91  1.1  christos i386/amd64-avx-expedite = rbp,rsp,rip
     92  1.1  christos i386/amd64-avx-linux-expedite = rbp,rsp,rip
     93  1.1  christos i386/amd64-mpx-expedite = rbp,rsp,rip
     94  1.1  christos i386/amd64-mpx-linux-expedite = rbp,rsp,rip
     95  1.3  christos i386/amd64-avx512-expedite = rbp,rsp,rip
     96  1.3  christos i386/amd64-avx512-linux-expedite = rbp,rsp,rip
     97  1.1  christos i386/x32-expedite = rbp,rsp,rip
     98  1.1  christos i386/x32-linux-expedite = rbp,rsp,rip
     99  1.1  christos i386/x32-avx-expedite = rbp,rsp,rip
    100  1.1  christos i386/x32-avx-linux-expedite = rbp,rsp,rip
    101  1.3  christos i386/x32-avx512-expedite = rbp,rsp,rip
    102  1.3  christos i386/x32-avx512-linux-expedite = rbp,rsp,rip
    103  1.1  christos mips-expedite = r29,pc
    104  1.1  christos mips-dsp-expedite = r29,pc
    105  1.1  christos mips64-expedite = r29,pc
    106  1.1  christos mips64-dsp-expedite = r29,pc
    107  1.3  christos microblaze-expedite = r1,rpc
    108  1.1  christos nios2-linux-expedite = sp,pc
    109  1.1  christos powerpc-expedite = r1,pc
    110  1.1  christos rs6000/powerpc-cell32l-expedite = r1,pc,r0,orig_r3,r4
    111  1.1  christos rs6000/powerpc-cell64l-expedite = r1,pc,r0,orig_r3,r4
    112  1.1  christos s390-linux32-expedite = r14,r15,pswa
    113  1.1  christos s390-linux32v1-expedite = r14,r15,pswa
    114  1.1  christos s390-linux32v2-expedite = r14,r15,pswa
    115  1.1  christos s390-linux64-expedite = r14l,r15l,pswa
    116  1.1  christos s390-linux64v1-expedite = r14l,r15l,pswa
    117  1.1  christos s390-linux64v2-expedite = r14l,r15l,pswa
    118  1.3  christos s390-te-linux64-expedite = r14l,r15l,pswa
    119  1.5  christos s390-vx-linux64-expedite = r14l,r15l,pswa
    120  1.5  christos s390-tevx-linux64-expedite = r14l,r15l,pswa
    121  1.1  christos s390x-linux64-expedite = r14,r15,pswa
    122  1.1  christos s390x-linux64v1-expedite = r14,r15,pswa
    123  1.1  christos s390x-linux64v2-expedite = r14,r15,pswa
    124  1.1  christos s390x-te-linux64-expedite = r14,r15,pswa
    125  1.5  christos s390x-vx-linux64-expedite = r14,r15,pswa
    126  1.5  christos s390x-tevx-linux64-expedite = r14,r15,pswa
    127  1.1  christos tic6x-c64xp-expedite = A15,PC
    128  1.1  christos tic6x-c64x-expedite = A15,PC
    129  1.1  christos tic6x-c62x-expedite = A15,PC
    130  1.1  christos tic6x-c64xp-linux-expedite = A15,PC
    131  1.1  christos tic6x-c64x-linux-expedite = A15,PC
    132  1.1  christos tic6x-c62x-linux-expedite = A15,PC
    133  1.1  christos 
    134  1.1  christos 
    135  1.1  christos XSLTPROC = xsltproc
    136  1.1  christos outdir = ../regformats
    137  1.1  christos OUTPUTS = $(patsubst %,$(outdir)/%.dat,$(WHICH))
    138  1.1  christos 
    139  1.3  christos # The set of xml files we'll generate .c files for GDB from.  By
    140  1.3  christos # default we'll build all .c files, which requires an
    141  1.3  christos # --enable-targets=all GDB.  You can override this by passing XMLTOC
    142  1.3  christos # to make on the command line.
    143  1.3  christos XMLTOC = \
    144  1.3  christos 	aarch64.xml \
    145  1.3  christos 	arm-with-iwmmxt.xml \
    146  1.3  christos 	arm-with-m-fpa-layout.xml \
    147  1.3  christos 	arm-with-m-vfp-d16.xml \
    148  1.3  christos 	arm-with-m.xml \
    149  1.3  christos 	arm-with-neon.xml \
    150  1.3  christos 	arm-with-vfpv2.xml \
    151  1.3  christos 	arm-with-vfpv3.xml \
    152  1.3  christos 	i386/amd64-avx-linux.xml \
    153  1.3  christos 	i386/amd64-avx.xml \
    154  1.3  christos 	i386/amd64-avx512-linux.xml \
    155  1.3  christos 	i386/amd64-avx512.xml \
    156  1.3  christos 	i386/amd64-linux.xml \
    157  1.3  christos 	i386/amd64-mpx-linux.xml \
    158  1.3  christos 	i386/amd64-mpx.xml \
    159  1.3  christos 	i386/amd64.xml \
    160  1.3  christos 	i386/i386-avx-linux.xml \
    161  1.3  christos 	i386/i386-avx.xml \
    162  1.3  christos 	i386/i386-avx512-linux.xml \
    163  1.3  christos 	i386/i386-avx512.xml \
    164  1.3  christos 	i386/i386-linux.xml \
    165  1.3  christos 	i386/i386-mmx-linux.xml \
    166  1.3  christos 	i386/i386-mmx.xml \
    167  1.3  christos 	i386/i386-mpx-linux.xml \
    168  1.3  christos 	i386/i386-mpx.xml \
    169  1.3  christos 	i386/i386.xml \
    170  1.3  christos 	i386/x32-avx-linux.xml \
    171  1.3  christos 	i386/x32-avx.xml \
    172  1.3  christos 	i386/x32-avx512-linux.xml \
    173  1.3  christos 	i386/x32-avx512.xml \
    174  1.3  christos 	i386/x32-linux.xml \
    175  1.3  christos 	i386/x32.xml \
    176  1.3  christos 	microblaze-with-stack-protect.xml \
    177  1.3  christos 	microblaze.xml \
    178  1.3  christos 	mips-dsp-linux.xml \
    179  1.3  christos 	mips-linux.xml \
    180  1.3  christos 	mips64-dsp-linux.xml \
    181  1.3  christos 	mips64-linux.xml \
    182  1.3  christos 	nios2-linux.xml \
    183  1.3  christos 	nios2.xml \
    184  1.3  christos 	rs6000/powerpc-32.xml \
    185  1.3  christos 	rs6000/powerpc-32l.xml \
    186  1.3  christos 	rs6000/powerpc-403.xml \
    187  1.3  christos 	rs6000/powerpc-403gc.xml \
    188  1.3  christos 	rs6000/powerpc-405.xml \
    189  1.3  christos 	rs6000/powerpc-505.xml \
    190  1.3  christos 	rs6000/powerpc-601.xml \
    191  1.3  christos 	rs6000/powerpc-602.xml \
    192  1.3  christos 	rs6000/powerpc-603.xml \
    193  1.3  christos 	rs6000/powerpc-604.xml \
    194  1.3  christos 	rs6000/powerpc-64.xml \
    195  1.3  christos 	rs6000/powerpc-64l.xml \
    196  1.3  christos 	rs6000/powerpc-7400.xml \
    197  1.3  christos 	rs6000/powerpc-750.xml \
    198  1.3  christos 	rs6000/powerpc-860.xml \
    199  1.3  christos 	rs6000/powerpc-altivec32.xml \
    200  1.3  christos 	rs6000/powerpc-altivec32l.xml \
    201  1.3  christos 	rs6000/powerpc-altivec64.xml \
    202  1.3  christos 	rs6000/powerpc-altivec64l.xml \
    203  1.3  christos 	rs6000/powerpc-cell32l.xml \
    204  1.3  christos 	rs6000/powerpc-cell64l.xml \
    205  1.3  christos 	rs6000/powerpc-e500.xml \
    206  1.3  christos 	rs6000/powerpc-e500l.xml \
    207  1.3  christos 	rs6000/powerpc-isa205-32l.xml \
    208  1.3  christos 	rs6000/powerpc-isa205-64l.xml \
    209  1.3  christos 	rs6000/powerpc-isa205-altivec32l.xml \
    210  1.3  christos 	rs6000/powerpc-isa205-altivec64l.xml \
    211  1.3  christos 	rs6000/powerpc-isa205-vsx32l.xml \
    212  1.3  christos 	rs6000/powerpc-isa205-vsx64l.xml \
    213  1.3  christos 	rs6000/powerpc-vsx32.xml \
    214  1.3  christos 	rs6000/powerpc-vsx32l.xml \
    215  1.3  christos 	rs6000/powerpc-vsx64.xml \
    216  1.3  christos 	rs6000/powerpc-vsx64l.xml \
    217  1.3  christos 	rs6000/rs6000.xml \
    218  1.3  christos 	s390-linux32.xml \
    219  1.3  christos 	s390-linux32v1.xml \
    220  1.3  christos 	s390-linux32v2.xml \
    221  1.3  christos 	s390-linux64.xml \
    222  1.3  christos 	s390-linux64v1.xml \
    223  1.3  christos 	s390-linux64v2.xml \
    224  1.3  christos 	s390-te-linux64.xml \
    225  1.3  christos 	s390x-linux64.xml \
    226  1.3  christos 	s390x-linux64v1.xml \
    227  1.3  christos 	s390x-linux64v2.xml \
    228  1.3  christos 	s390x-te-linux64.xml \
    229  1.3  christos 	tic6x-c62x-linux.xml \
    230  1.3  christos 	tic6x-c62x.xml \
    231  1.3  christos 	tic6x-c64x-linux.xml \
    232  1.3  christos 	tic6x-c64x.xml \
    233  1.3  christos 	tic6x-c64xp-linux.xml \
    234  1.3  christos 	tic6x-c64xp.xml
    235  1.3  christos 
    236  1.1  christos CFILES = $(patsubst %.xml,%.c,$(XMLTOC))
    237  1.1  christos GDB = false
    238  1.1  christos 
    239  1.1  christos all: $(OUTPUTS)
    240  1.1  christos 
    241  1.1  christos $(outdir)/%.dat: %.xml number-regs.xsl sort-regs.xsl gdbserver-regs.xsl
    242  1.3  christos 	echo "# THIS FILE IS GENERATED.  -*- buffer-read-only: t -*- vi :set ro:" > $(outdir)/$*.tmp
    243  1.3  christos 	echo "# Generated from: $<" >> $(outdir)/$*.tmp
    244  1.1  christos 	echo "name:`echo $(notdir $*) | sed 's/-/_/g'`" >> $(outdir)/$*.tmp
    245  1.1  christos 	echo "xmltarget:$(<F)" >> $(outdir)/$*.tmp
    246  1.1  christos 	echo "expedite:$(if $($*-expedite),$($*-expedite),$($(firstword $(subst -, ,$(notdir $*)))-expedite))" \
    247  1.1  christos 	  >> $(outdir)/$*.tmp
    248  1.1  christos 	$(XSLTPROC) --path "$(PWD)" --xinclude number-regs.xsl $< | \
    249  1.1  christos 	  $(XSLTPROC) sort-regs.xsl - | \
    250  1.1  christos 	  $(XSLTPROC) gdbserver-regs.xsl - >> $(outdir)/$*.tmp
    251  1.1  christos 	sh ../../move-if-change $(outdir)/$*.tmp $(outdir)/$*.dat
    252  1.1  christos 
    253  1.1  christos cfiles: $(CFILES)
    254  1.1  christos %.c: %.xml
    255  1.1  christos 	$(GDB) -nx -q -batch \
    256  1.1  christos 	  -ex "set tdesc filename $<" -ex 'maint print c-tdesc' > $@.tmp
    257  1.1  christos 	sh ../../move-if-change $@.tmp $@
    258  1.1  christos 
    259  1.1  christos # Other dependencies.
    260  1.1  christos $(outdir)/arm-with-iwmmxt.dat: arm-core.xml xscale-iwmmxt.xml
    261  1.1  christos $(outdir)/i386/i386.dat: i386/32bit-core.xml i386/32bit-sse.xml
    262  1.1  christos $(outdir)/i386/i386-linux.dat: i386/32bit-core.xml i386/32bit-sse.xml \
    263  1.1  christos 			       i386/32bit-linux.xml
    264  1.1  christos $(outdir)/i386/amd64.dat: i386/64bit-core.xml i386/64bit-sse.xml
    265  1.1  christos $(outdir)/i386/amd64-linux.dat: i386/64bit-core.xml i386/64bit-sse.xml \
    266  1.1  christos 			        i386/64bit-linux.xml
    267  1.1  christos $(outdir)/i386/i386-avx.dat: i386/32bit-core.xml i386/32bit-avx.xml
    268  1.1  christos $(outdir)/i386/i386-avx-linux.dat: i386/32bit-core.xml i386/32bit-avx.xml \
    269  1.1  christos 			       i386/32bit-linux.xml
    270  1.1  christos $(outdir)/i386/i386-mpx.dat: i386/32bit-core.xml i386/32bit-avx.xml \
    271  1.1  christos 			       i386/32bit-mpx.xml
    272  1.1  christos $(outdir)/i386/i386-mpx-linux.dat: i386/32bit-core.xml 	i386/32bit-avx.xml \
    273  1.1  christos 			       i386/32bit-linux.xml i386/32bit-mpx.xml
    274  1.3  christos $(outdir)/i386/i386-avx512.dat: i386/32bit-core.xml i386/32bit-avx.xml \
    275  1.3  christos 			       i386/32bit-mpx.xml i386/32bit-avx512.xml
    276  1.3  christos $(outdir)/i386/i386-avx512-linux.dat: i386/32bit-core.xml i386/32bit-avx.xml \
    277  1.3  christos 			       i386/32bit-linux.xml i386/32bit-mpx.xml i386/32bit-avx512.xml
    278  1.1  christos $(outdir)/i386/i386-mmx.dat: i386/32bit-core.xml 
    279  1.1  christos $(outdir)/i386/i386-mmx-linux.dat: i386/32bit-core.xml i386/32bit-linux.xml
    280  1.1  christos $(outdir)/i386/amd64-avx.dat: i386/64bit-core.xml i386/64bit-avx.xml
    281  1.1  christos $(outdir)/i386/amd64-avx-linux.dat: i386/64bit-core.xml i386/64bit-avx.xml \
    282  1.1  christos 				    i386/64bit-linux.xml
    283  1.1  christos $(outdir)/i386/amd64-mpx-linux.dat: i386/64bit-core.xml i386/64bit-avx.xml \
    284  1.1  christos 			       i386/64bit-linux.xml i386/64bit-mpx.xml
    285  1.1  christos $(outdir)/i386/amd64-mpx.dat: i386/64bit-core.xml i386/64bit-avx.xml \
    286  1.1  christos 			       i386/64bit-mpx.xml
    287  1.3  christos $(outdir)/i386/amd64-avx512.dat: i386/64bit-core.xml i386/64bit-avx.xml \
    288  1.3  christos 			       i386/64bit-mpx.xml i386/64bit-avx512.xml
    289  1.3  christos $(outdir)/i386/amd64-avx512-linux.dat: i386/64bit-core.xml i386/64bit-avx.xml \
    290  1.3  christos 			       i386/64bit-mpx.xml i386/64bit-avx512.xml \
    291  1.3  christos 			       i386/64bit-linux.xml
    292  1.1  christos $(outdir)/i386/x32.dat: i386/x32-core.xml i386/64bit-sse.xml
    293  1.1  christos $(outdir)/i386/x32-linux.dat: i386/x32-core.xml i386/64bit-sse.xml \
    294  1.1  christos 			      i386/64bit-linux.xml
    295  1.1  christos $(outdir)/i386/x32-avx.dat: i386/x32-core.xml i386/64bit-avx.xml
    296  1.1  christos $(outdir)/i386/x32-avx-linux.dat: i386/x32-core.xml i386/64bit-avx.xml \
    297  1.1  christos 				  i386/64bit-linux.xml
    298  1.3  christos $(outdir)/i386/x32-avx512.dat: i386/x32-core.xml i386/64bit-avx.xml \
    299  1.3  christos 			       i386/64bit-mpx.xml i386/64bit-avx512.xml
    300  1.3  christos $(outdir)/i386/x32-avx512-linux.dat: i386/x32-core.xml i386/64bit-avx.xml \
    301  1.3  christos 			       i386/64bit-mpx.xml i386/64bit-avx512.xml i386/64bit-linux.xml
    302  1.3  christos 
    303  1.3  christos # 'all' doesn't build the C files, so don't delete them in 'clean'
    304  1.3  christos # either.
    305  1.3  christos clean-cfiles:
    306  1.3  christos 	rm -f $(CFILES)
    307  1.3  christos 
    308  1.3  christos clean:
    309  1.3  christos 	rm -f $(OUTPUTS)
    310