]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/features/Makefile
gdb: LoongArch: Add vector extensions support
[thirdparty/binutils-gdb.git] / gdb / features / Makefile
CommitLineData
1d506c26 1# Copyright (C) 2007-2024 Free Software Foundation, Inc.
fb1e4ffc
DJ
2
3# This file is part of GDB.
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
dcf7800b 7# the Free Software Foundation; either version 3 of the License, or
fb1e4ffc
DJ
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
dcf7800b 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
fb1e4ffc
DJ
17
18
19# This file requires GNU make!
20
21# This Makefile updates files in ../regformats from their XML master
22# copies. Because this relies on xsltproc, it is not normally run
23# during the build process; it should be run by hand when one of the
24# affected XML files is changed, and the results should be kept in the
25# GDB repository.
26
81adfced 27# It can also update the C files in the features directory from their
db74e4ba
PA
28# XML master copies. This relies on a GDB linked with expat and that
29# is configured to include support for the architecture, so the files
30# are kept in the GDB repository.
31#
32# By default we'll generate all C files, and you must point make at a
33# GDB that has been configured with --enable-targets=all:
34#
35# make GDB=/path/to/gdb cfiles
36#
37# To regenerate all C files from scratch:
38#
39# make GDB=/path/to/gdb clean-cfiles cfiles
40#
89abbcc2
AH
41# To generate specific C files, you can override the XMLTOC and
42# FEATURE_XMLFILES make variables:
db74e4ba 43#
89abbcc2 44# make GDB=/path/to/gdb XMLTOC="xml files" FEATURE_XMLFILES="xml files" cfiles
81adfced 45
89abbcc2 46# List of .dat files to create in ../regformats/
7d458ea5 47WHICH = mips-linux mips-dsp-linux \
1faeff08 48 mips64-linux mips64-dsp-linux \
a1217d97 49 nios2-linux \
4933265c 50 or1k-linux \
0482b03b 51 rs6000/powerpc-32 \
7284e1be 52 rs6000/powerpc-32l rs6000/powerpc-altivec32l rs6000/powerpc-e500l \
604c2f83 53 rs6000/powerpc-64l rs6000/powerpc-altivec64l rs6000/powerpc-vsx32l \
abf516c6 54 rs6000/powerpc-vsx64l \
5878efd4
YQ
55 rs6000/powerpc-isa205-32l rs6000/powerpc-isa205-64l \
56 rs6000/powerpc-isa205-altivec32l rs6000/powerpc-isa205-altivec64l \
57 rs6000/powerpc-isa205-vsx32l rs6000/powerpc-isa205-vsx64l \
7ca18ed6
EBM
58 rs6000/powerpc-isa205-ppr-dscr-vsx32l \
59 rs6000/powerpc-isa205-ppr-dscr-vsx64l \
f2cf6173 60 rs6000/powerpc-isa207-vsx32l rs6000/powerpc-isa207-vsx64l \
8d619c01
EBM
61 rs6000/powerpc-isa207-htm-vsx32l \
62 rs6000/powerpc-isa207-htm-vsx64l \
224bbe49 63 s390-linux32 s390-linux64 s390x-linux64 \
c642a434
UW
64 s390-linux32v1 s390-linux64v1 s390x-linux64v1 \
65 s390-linux32v2 s390-linux64v2 s390x-linux64v2 \
446899e4
AA
66 s390-te-linux64 s390x-te-linux64 s390-vx-linux64 s390x-vx-linux64 \
67 s390-tevx-linux64 s390x-tevx-linux64 \
96235dc1 68 s390-gs-linux64 s390x-gs-linux64 \
224bbe49 69 tic6x-c64xp-linux tic6x-c64x-linux tic6x-c62x-linux
fb1e4ffc
DJ
70
71# Record which registers should be sent to GDB by default after stop.
58d6951d 72mips-expedite = r29,pc
1faeff08 73mips-dsp-expedite = r29,pc
58d6951d 74mips64-expedite = r29,pc
1faeff08 75mips64-dsp-expedite = r29,pc
a1217d97 76nios2-linux-expedite = sp,pc
ac9b8c67 77or1k-expedite = r1,npc
58d6951d 78powerpc-expedite = r1,pc
7803799a 79s390-linux32-expedite = r14,r15,pswa
c642a434
UW
80s390-linux32v1-expedite = r14,r15,pswa
81s390-linux32v2-expedite = r14,r15,pswa
7803799a 82s390-linux64-expedite = r14l,r15l,pswa
c642a434
UW
83s390-linux64v1-expedite = r14l,r15l,pswa
84s390-linux64v2-expedite = r14l,r15l,pswa
d5552aab 85s390-te-linux64-expedite = r14l,r15l,pswa
446899e4
AA
86s390-vx-linux64-expedite = r14l,r15l,pswa
87s390-tevx-linux64-expedite = r14l,r15l,pswa
96235dc1 88s390-gs-linux64-expedite = r14,r15,pswa
2399fe6a
YQ
89s390x-expedite = r14,r15,pswa
90tic6x-expedite = A15,PC
604c2f83 91
fb1e4ffc
DJ
92
93XSLTPROC = xsltproc
94outdir = ../regformats
95OUTPUTS = $(patsubst %,$(outdir)/%.dat,$(WHICH))
96
89abbcc2
AH
97# For targets without feature based target descriptions,
98# the set of xml files we'll generate .c files for GDB from. By
db74e4ba
PA
99# default we'll build all .c files, which requires an
100# --enable-targets=all GDB. You can override this by passing XMLTOC
101# to make on the command line.
102XMLTOC = \
db74e4ba
PA
103 microblaze-with-stack-protect.xml \
104 microblaze.xml \
105 mips-dsp-linux.xml \
106 mips-linux.xml \
107 mips64-dsp-linux.xml \
108 mips64-linux.xml \
a28d8e50 109 nds32.xml \
db74e4ba 110 nios2.xml \
a994fec4 111 or1k.xml \
ee8cc2b3 112 or1k-linux.xml \
db74e4ba
PA
113 rs6000/powerpc-32.xml \
114 rs6000/powerpc-32l.xml \
115 rs6000/powerpc-403.xml \
116 rs6000/powerpc-403gc.xml \
117 rs6000/powerpc-405.xml \
118 rs6000/powerpc-505.xml \
119 rs6000/powerpc-601.xml \
120 rs6000/powerpc-602.xml \
121 rs6000/powerpc-603.xml \
122 rs6000/powerpc-604.xml \
123 rs6000/powerpc-64.xml \
124 rs6000/powerpc-64l.xml \
125 rs6000/powerpc-7400.xml \
126 rs6000/powerpc-750.xml \
127 rs6000/powerpc-860.xml \
128 rs6000/powerpc-altivec32.xml \
129 rs6000/powerpc-altivec32l.xml \
130 rs6000/powerpc-altivec64.xml \
131 rs6000/powerpc-altivec64l.xml \
db74e4ba
PA
132 rs6000/powerpc-e500.xml \
133 rs6000/powerpc-e500l.xml \
134 rs6000/powerpc-isa205-32l.xml \
135 rs6000/powerpc-isa205-64l.xml \
136 rs6000/powerpc-isa205-altivec32l.xml \
137 rs6000/powerpc-isa205-altivec64l.xml \
138 rs6000/powerpc-isa205-vsx32l.xml \
139 rs6000/powerpc-isa205-vsx64l.xml \
7ca18ed6
EBM
140 rs6000/powerpc-isa205-ppr-dscr-vsx32l.xml \
141 rs6000/powerpc-isa205-ppr-dscr-vsx64l.xml \
f2cf6173
EBM
142 rs6000/powerpc-isa207-vsx32l.xml \
143 rs6000/powerpc-isa207-vsx64l.xml \
8d619c01
EBM
144 rs6000/powerpc-isa207-htm-vsx32l.xml \
145 rs6000/powerpc-isa207-htm-vsx64l.xml \
db74e4ba
PA
146 rs6000/powerpc-vsx32.xml \
147 rs6000/powerpc-vsx32l.xml \
148 rs6000/powerpc-vsx64.xml \
149 rs6000/powerpc-vsx64l.xml \
150 rs6000/rs6000.xml \
ab33b152 151 rx.xml \
db74e4ba
PA
152 s390-linux32.xml \
153 s390-linux32v1.xml \
154 s390-linux32v2.xml \
155 s390-linux64.xml \
156 s390-linux64v1.xml \
157 s390-linux64v2.xml \
158 s390-te-linux64.xml \
159 s390x-linux64.xml \
160 s390x-linux64v1.xml \
161 s390x-linux64v2.xml \
162 s390x-te-linux64.xml \
defaaad5
YQ
163 s390-tevx-linux64.xml \
164 s390-vx-linux64.xml \
165 s390x-tevx-linux64.xml \
166 s390x-vx-linux64.xml \
96235dc1 167 s390-gs-linux64.xml \
3dab9e15 168 s390x-gs-linux64.xml \
ee8cc2b3
KS
169 sparc/sparc32-solaris.xml \
170 sparc/sparc64-solaris.xml \
3dab9e15 171 z80.xml
db74e4ba 172
25aa13e5 173TDESC_CFILES = $(patsubst %.xml,%.c,$(XMLTOC))
81adfced
DJ
174GDB = false
175
ad7fc756
AH
176#Targets which use feature based target descriptions.
177aarch64-feature = 1
89abbcc2 178arm-feature = 1
ad7fc756 179i386-feature = 1
d203a064 180loongarch-feature = 1
b5ffee31 181riscv-feature = 1
ad7fc756
AH
182tic6x-feature = 1
183
fb1e4ffc
DJ
184all: $(OUTPUTS)
185
186$(outdir)/%.dat: %.xml number-regs.xsl sort-regs.xsl gdbserver-regs.xsl
5fdeec1d
PA
187 echo "# THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi :set ro:" > $(outdir)/$*.tmp
188 echo "# Generated from: $<" >> $(outdir)/$*.tmp
30ed0a8f 189 echo "name:`echo $(notdir $*) | sed 's/-/_/g'`" >> $(outdir)/$*.tmp
ad7fc756 190 $(if $($(firstword $(subst /, ,$(subst -, ,$*)))-feature), echo "feature:1") >> $(outdir)/$*.tmp
221c031f 191 echo "xmltarget:$(<F)" >> $(outdir)/$*.tmp
f4d9bade
UW
192 echo "expedite:$(if $($*-expedite),$($*-expedite),$($(firstword $(subst -, ,$(notdir $*)))-expedite))" \
193 >> $(outdir)/$*.tmp
30ed0a8f 194 $(XSLTPROC) --path "$(PWD)" --xinclude number-regs.xsl $< | \
fb1e4ffc
DJ
195 $(XSLTPROC) sort-regs.xsl - | \
196 $(XSLTPROC) gdbserver-regs.xsl - >> $(outdir)/$*.tmp
197 sh ../../move-if-change $(outdir)/$*.tmp $(outdir)/$*.dat
198
89abbcc2
AH
199# For targets with feature based target descriptions,
200# the set of xml files we'll generate .c files for GDB from.
49bdb7ee
AH
201FEATURE_XMLFILES = aarch64-core.xml \
202 aarch64-fpu.xml \
6dc0ebde 203 aarch64-pauth.xml \
c1bd443b 204 aarch64-mte.xml \
995d3a19
SV
205 arc/v1-core.xml \
206 arc/v1-aux.xml \
207 arc/v2-core.xml \
208 arc/v2-aux.xml \
89abbcc2
AH
209 arm/arm-core.xml \
210 arm/arm-fpa.xml \
211 arm/arm-m-profile.xml \
ae66a8f1 212 arm/arm-m-profile-mve.xml \
9074667a 213 arm/arm-m-system.xml \
89abbcc2 214 arm/arm-m-profile-with-fpa.xml \
ee8cc2b3 215 arm/arm-secext.xml \
92d48a1e 216 arm/arm-tls.xml \
89abbcc2
AH
217 arm/arm-vfpv2.xml \
218 arm/arm-vfpv3.xml \
219 arm/xscale-iwmmxt.xml \
8e037eae 220 cskyv2-linux.xml \
49bdb7ee 221 i386/32bit-core.xml \
25aa13e5
YQ
222 i386/32bit-sse.xml \
223 i386/32bit-linux.xml \
224 i386/32bit-avx.xml \
225 i386/32bit-mpx.xml \
226 i386/32bit-avx512.xml \
1056aa39 227 i386/32bit-segments.xml \
6c73f67f
YQ
228 i386/64bit-avx512.xml \
229 i386/64bit-core.xml \
230 i386/64bit-mpx.xml \
231 i386/64bit-segments.xml \
232 i386/64bit-avx.xml \
233 i386/64bit-linux.xml \
6c73f67f 234 i386/64bit-sse.xml \
0653f014 235 i386/pkeys.xml \
506fe5f4 236 i386/x32-core.xml \
d203a064
TY
237 loongarch/base32.xml \
238 loongarch/base64.xml \
657a5022 239 loongarch/fpu.xml \
1e9569f3
HL
240 loongarch/lsx.xml \
241 loongarch/lasx.xml \
25428040 242 riscv/rv32e-xregs.xml \
b5ffee31 243 riscv/32bit-cpu.xml \
b5ffee31
AB
244 riscv/32bit-fpu.xml \
245 riscv/64bit-cpu.xml \
b5ffee31 246 riscv/64bit-fpu.xml \
506fe5f4
YQ
247 tic6x-c6xp.xml \
248 tic6x-core.xml \
249 tic6x-gp.xml
25aa13e5
YQ
250
251FEATURE_CFILES = $(patsubst %.xml,%.c,$(FEATURE_XMLFILES))
252
253cfiles: $(TDESC_CFILES) $(FEATURE_CFILES)
254
255$(TDESC_CFILES): %.c: %.xml
8e2141c6 256 $(GDB) -nx -q -batch -ex 'maint print c-tdesc $<' > $@.tmp
81adfced
DJ
257 sh ../../move-if-change $@.tmp $@
258
25aa13e5
YQ
259$(FEATURE_CFILES): %.c: %.xml.tmp
260 $(GDB) -nx -q -batch \
ab33b152 261 -ex 'maint print c-tdesc -single-feature $<' > $@.tmp
25aa13e5
YQ
262 sh ../../move-if-change $@.tmp $@
263 rm $<
264
265# %.xml is the XML file for each target description feature, and
266# %.xml.tmp is the XML file target description which only includes
267# one target description feature.
268
269%.xml.tmp: %.xml
270 echo "<?xml version=\"1.0\"?>" > $@.tmp
271 echo "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">" >> $@.tmp
272 echo "<target>" >> $@.tmp
273 echo " <xi:include href=\"$(notdir $<)\"/>" >> $@.tmp
274 echo "</target>" >> $@.tmp
275 sh ../../move-if-change $@.tmp $@
276
db74e4ba
PA
277# 'all' doesn't build the C files, so don't delete them in 'clean'
278# either.
279clean-cfiles:
25aa13e5 280 rm -f $(TDESC_CFILES) $(FEATURE_CFILES)
db74e4ba 281
acc9fe45
PA
282clean:
283 rm -f $(OUTPUTS)