]> Git Repo - binutils.git/blame - gdb/gdbarch.sh
* gdb-events.sh: Add architecture_changed event.
[binutils.git] / gdb / gdbarch.sh
CommitLineData
66b43ecb 1#!/bin/sh -u
104c1213
JM
2
3# Architecture commands for GDB, the GNU debugger.
338d7c5c 4# Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
104c1213
JM
5#
6# This file is part of GDB.
7#
8# This program is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 2 of the License, or
11# (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21
59233f88
AC
22compare_new ()
23{
24 file=$1
66b43ecb 25 if test ! -r ${file}
59233f88
AC
26 then
27 echo "${file} missing? cp new-${file} ${file}" 1>&2
28 elif diff -c ${file} new-${file}
29 then
30 echo "${file} unchanged" 1>&2
31 else
32 echo "${file} has changed? cp new-${file} ${file}" 1>&2
33 fi
34}
35
36
37# Format of the input table
0b8f9e4d 38read="class level macro returntype function formal actual attrib staticdefault predefault postdefault invalid_p fmt print print_p description"
c0e8c252
AC
39
40do_read ()
41{
34620563
AC
42 comment=""
43 class=""
44 while read line
45 do
46 if test "${line}" = ""
47 then
48 continue
49 elif test "${line}" = "#" -a "${comment}" = ""
f0d4cc9e 50 then
34620563
AC
51 continue
52 elif expr "${line}" : "#" > /dev/null
f0d4cc9e 53 then
34620563
AC
54 comment="${comment}
55${line}"
f0d4cc9e 56 else
3d9a5942
AC
57
58 # The semantics of IFS varies between different SH's. Some
59 # treat ``::' as three fields while some treat it as just too.
60 # Work around this by eliminating ``::'' ....
61 line="`echo "${line}" | sed -e 's/::/: :/g' -e 's/::/: :/g'`"
62
63 OFS="${IFS}" ; IFS="[:]"
34620563
AC
64 eval read ${read} <<EOF
65${line}
66EOF
67 IFS="${OFS}"
68
3d9a5942
AC
69 # .... and then going back through each field and strip out those
70 # that ended up with just that space character.
71 for r in ${read}
72 do
73 if eval test \"\${${r}}\" = \"\ \"
74 then
75 eval ${r}=""
76 fi
77 done
78
34620563
AC
79 test "${staticdefault}" || staticdefault=0
80 # NOT YET: Breaks BELIEVE_PCC_PROMOTION and confuses non-
81 # multi-arch defaults.
82 # test "${predefault}" || predefault=0
83 test "${fmt}" || fmt="%ld"
84 test "${print}" || print="(long) ${macro}"
85 case "${invalid_p}" in
86 0 ) valid_p=1 ;;
87 "" )
72e74a21 88 if [ -n "${predefault}" ]
34620563
AC
89 then
90 #invalid_p="gdbarch->${function} == ${predefault}"
91 valid_p="gdbarch->${function} != ${predefault}"
92 else
93 #invalid_p="gdbarch->${function} == 0"
94 valid_p="gdbarch->${function} != 0"
95 fi
96 ;;
97 * ) valid_p="!(${invalid_p})"
98 esac
99
100 # PREDEFAULT is a valid fallback definition of MEMBER when
101 # multi-arch is not enabled. This ensures that the
102 # default value, when multi-arch is the same as the
103 # default value when not multi-arch. POSTDEFAULT is
104 # always a valid definition of MEMBER as this again
105 # ensures consistency.
106
72e74a21 107 if [ -n "${postdefault}" ]
34620563
AC
108 then
109 fallbackdefault="${postdefault}"
72e74a21 110 elif [ -n "${predefault}" ]
34620563
AC
111 then
112 fallbackdefault="${predefault}"
113 else
114 fallbackdefault=""
115 fi
116
117 #NOT YET: See gdbarch.log for basic verification of
118 # database
119
120 break
f0d4cc9e 121 fi
34620563 122 done
72e74a21 123 if [ -n "${class}" ]
34620563
AC
124 then
125 true
c0e8c252
AC
126 else
127 false
128 fi
129}
130
104c1213 131
f0d4cc9e
AC
132fallback_default_p ()
133{
72e74a21
JB
134 [ -n "${postdefault}" -a "x${invalid_p}" != "x0" ] \
135 || [ -n "${predefault}" -a "x${invalid_p}" = "x0" ]
f0d4cc9e
AC
136}
137
138class_is_variable_p ()
139{
4a5c6a1d
AC
140 case "${class}" in
141 *v* | *V* ) true ;;
142 * ) false ;;
143 esac
f0d4cc9e
AC
144}
145
146class_is_function_p ()
147{
4a5c6a1d
AC
148 case "${class}" in
149 *f* | *F* | *m* | *M* ) true ;;
150 * ) false ;;
151 esac
152}
153
154class_is_multiarch_p ()
155{
156 case "${class}" in
157 *m* | *M* ) true ;;
158 * ) false ;;
159 esac
f0d4cc9e
AC
160}
161
162class_is_predicate_p ()
163{
4a5c6a1d
AC
164 case "${class}" in
165 *F* | *V* | *M* ) true ;;
166 * ) false ;;
167 esac
f0d4cc9e
AC
168}
169
170class_is_info_p ()
171{
4a5c6a1d
AC
172 case "${class}" in
173 *i* ) true ;;
174 * ) false ;;
175 esac
f0d4cc9e
AC
176}
177
178
cff3e48b
JM
179# dump out/verify the doco
180for field in ${read}
181do
182 case ${field} in
183
184 class ) : ;;
c4093a6a 185
c0e8c252
AC
186 # # -> line disable
187 # f -> function
188 # hiding a function
2ada493a
AC
189 # F -> function + predicate
190 # hiding a function + predicate to test function validity
c0e8c252
AC
191 # v -> variable
192 # hiding a variable
2ada493a
AC
193 # V -> variable + predicate
194 # hiding a variable + predicate to test variables validity
c0e8c252
AC
195 # i -> set from info
196 # hiding something from the ``struct info'' object
4a5c6a1d
AC
197 # m -> multi-arch function
198 # hiding a multi-arch function (parameterised with the architecture)
199 # M -> multi-arch function + predicate
200 # hiding a multi-arch function + predicate to test function validity
cff3e48b
JM
201
202 level ) : ;;
203
c0e8c252
AC
204 # See GDB_MULTI_ARCH description. Having GDB_MULTI_ARCH >=
205 # LEVEL is a predicate on checking that a given method is
206 # initialized (using INVALID_P).
cff3e48b
JM
207
208 macro ) : ;;
209
c0e8c252 210 # The name of the MACRO that this method is to be accessed by.
cff3e48b
JM
211
212 returntype ) : ;;
213
c0e8c252 214 # For functions, the return type; for variables, the data type
cff3e48b
JM
215
216 function ) : ;;
217
c0e8c252
AC
218 # For functions, the member function name; for variables, the
219 # variable name. Member function names are always prefixed with
220 # ``gdbarch_'' for name-space purity.
cff3e48b
JM
221
222 formal ) : ;;
223
c0e8c252
AC
224 # The formal argument list. It is assumed that the formal
225 # argument list includes the actual name of each list element.
226 # A function with no arguments shall have ``void'' as the
227 # formal argument list.
cff3e48b
JM
228
229 actual ) : ;;
230
c0e8c252
AC
231 # The list of actual arguments. The arguments specified shall
232 # match the FORMAL list given above. Functions with out
233 # arguments leave this blank.
cff3e48b
JM
234
235 attrib ) : ;;
236
c0e8c252
AC
237 # Any GCC attributes that should be attached to the function
238 # declaration. At present this field is unused.
cff3e48b 239
0b8f9e4d 240 staticdefault ) : ;;
c0e8c252
AC
241
242 # To help with the GDB startup a static gdbarch object is
0b8f9e4d
AC
243 # created. STATICDEFAULT is the value to insert into that
244 # static gdbarch object. Since this a static object only
245 # simple expressions can be used.
cff3e48b 246
0b8f9e4d 247 # If STATICDEFAULT is empty, zero is used.
c0e8c252 248
0b8f9e4d 249 predefault ) : ;;
cff3e48b 250
10312cc4
AC
251 # An initial value to assign to MEMBER of the freshly
252 # malloc()ed gdbarch object. After initialization, the
253 # freshly malloc()ed object is passed to the target
254 # architecture code for further updates.
cff3e48b 255
0b8f9e4d
AC
256 # If PREDEFAULT is empty, zero is used.
257
10312cc4
AC
258 # A non-empty PREDEFAULT, an empty POSTDEFAULT and a zero
259 # INVALID_P are specified, PREDEFAULT will be used as the
260 # default for the non- multi-arch target.
261
262 # A zero PREDEFAULT function will force the fallback to call
263 # internal_error().
f0d4cc9e
AC
264
265 # Variable declarations can refer to ``gdbarch'' which will
266 # contain the current architecture. Care should be taken.
0b8f9e4d
AC
267
268 postdefault ) : ;;
269
270 # A value to assign to MEMBER of the new gdbarch object should
10312cc4
AC
271 # the target architecture code fail to change the PREDEFAULT
272 # value.
0b8f9e4d
AC
273
274 # If POSTDEFAULT is empty, no post update is performed.
275
276 # If both INVALID_P and POSTDEFAULT are non-empty then
277 # INVALID_P will be used to determine if MEMBER should be
278 # changed to POSTDEFAULT.
279
10312cc4
AC
280 # If a non-empty POSTDEFAULT and a zero INVALID_P are
281 # specified, POSTDEFAULT will be used as the default for the
282 # non- multi-arch target (regardless of the value of
283 # PREDEFAULT).
284
f0d4cc9e
AC
285 # You cannot specify both a zero INVALID_P and a POSTDEFAULT.
286
287 # Variable declarations can refer to ``gdbarch'' which will
288 # contain the current architecture. Care should be taken.
cff3e48b 289
c4093a6a 290 invalid_p ) : ;;
cff3e48b 291
0b8f9e4d 292 # A predicate equation that validates MEMBER. Non-zero is
c0e8c252 293 # returned if the code creating the new architecture failed to
0b8f9e4d
AC
294 # initialize MEMBER or the initialized the member is invalid.
295 # If POSTDEFAULT is non-empty then MEMBER will be updated to
296 # that value. If POSTDEFAULT is empty then internal_error()
297 # is called.
298
299 # If INVALID_P is empty, a check that MEMBER is no longer
300 # equal to PREDEFAULT is used.
301
f0d4cc9e
AC
302 # The expression ``0'' disables the INVALID_P check making
303 # PREDEFAULT a legitimate value.
0b8f9e4d
AC
304
305 # See also PREDEFAULT and POSTDEFAULT.
cff3e48b
JM
306
307 fmt ) : ;;
308
c0e8c252
AC
309 # printf style format string that can be used to print out the
310 # MEMBER. Sometimes "%s" is useful. For functions, this is
311 # ignored and the function address is printed.
312
0b8f9e4d 313 # If FMT is empty, ``%ld'' is used.
cff3e48b
JM
314
315 print ) : ;;
316
c0e8c252
AC
317 # An optional equation that casts MEMBER to a value suitable
318 # for formatting by FMT.
319
0b8f9e4d 320 # If PRINT is empty, ``(long)'' is used.
cff3e48b
JM
321
322 print_p ) : ;;
323
c0e8c252
AC
324 # An optional indicator for any predicte to wrap around the
325 # print member code.
326
4b9b3959 327 # () -> Call a custom function to do the dump.
c0e8c252
AC
328 # exp -> Wrap print up in ``if (${print_p}) ...
329 # ``'' -> No predicate
cff3e48b 330
0b8f9e4d
AC
331 # If PRINT_P is empty, ``1'' is always used.
332
cff3e48b
JM
333 description ) : ;;
334
0b8f9e4d 335 # Currently unused.
cff3e48b
JM
336
337 *) exit 1;;
338 esac
339done
340
cff3e48b 341
104c1213
JM
342function_list ()
343{
cff3e48b 344 # See below (DOCO) for description of each field
34620563 345 cat <<EOF
0b8f9e4d 346i:2:TARGET_ARCHITECTURE:const struct bfd_arch_info *:bfd_arch_info::::&bfd_default_arch_struct::::%s:TARGET_ARCHITECTURE->printable_name:TARGET_ARCHITECTURE != NULL
104c1213
JM
347#
348i:2:TARGET_BYTE_ORDER:int:byte_order::::BIG_ENDIAN
66b43ecb
AC
349# Number of bits in a char or unsigned char for the target machine.
350# Just like CHAR_BIT in <limits.h> but describes the target machine.
351# v::TARGET_CHAR_BIT:int:char_bit::::8 * sizeof (char):8::0:
352#
353# Number of bits in a short or unsigned short for the target machine.
354v::TARGET_SHORT_BIT:int:short_bit::::8 * sizeof (short):2*TARGET_CHAR_BIT::0
355# Number of bits in an int or unsigned int for the target machine.
356v::TARGET_INT_BIT:int:int_bit::::8 * sizeof (int):4*TARGET_CHAR_BIT::0
357# Number of bits in a long or unsigned long for the target machine.
358v::TARGET_LONG_BIT:int:long_bit::::8 * sizeof (long):4*TARGET_CHAR_BIT::0
359# Number of bits in a long long or unsigned long long for the target
360# machine.
361v::TARGET_LONG_LONG_BIT:int:long_long_bit::::8 * sizeof (LONGEST):2*TARGET_LONG_BIT::0
362# Number of bits in a float for the target machine.
363v::TARGET_FLOAT_BIT:int:float_bit::::8 * sizeof (float):4*TARGET_CHAR_BIT::0
364# Number of bits in a double for the target machine.
365v::TARGET_DOUBLE_BIT:int:double_bit::::8 * sizeof (double):8*TARGET_CHAR_BIT::0
366# Number of bits in a long double for the target machine.
367v::TARGET_LONG_DOUBLE_BIT:int:long_double_bit::::8 * sizeof (long double):2*TARGET_DOUBLE_BIT::0
52204a0b
DT
368# For most targets, a pointer on the target and its representation as an
369# address in GDB have the same size and "look the same". For such a
370# target, you need only set TARGET_PTR_BIT / ptr_bit and TARGET_ADDR_BIT
371# / addr_bit will be set from it.
372#
373# If TARGET_PTR_BIT and TARGET_ADDR_BIT are different, you'll probably
374# also need to set POINTER_TO_ADDRESS and ADDRESS_TO_POINTER as well.
375#
376# ptr_bit is the size of a pointer on the target
66b43ecb 377v::TARGET_PTR_BIT:int:ptr_bit::::8 * sizeof (void*):TARGET_INT_BIT::0
52204a0b
DT
378# addr_bit is the size of a target address as represented in gdb
379v::TARGET_ADDR_BIT:int:addr_bit::::8 * sizeof (void*):0:TARGET_PTR_BIT:
66b43ecb
AC
380# Number of bits in a BFD_VMA for the target object file format.
381v::TARGET_BFD_VMA_BIT:int:bfd_vma_bit::::8 * sizeof (void*):TARGET_ARCHITECTURE->bits_per_address::0
104c1213 382#
be8dfb87 383v::IEEE_FLOAT:int:ieee_float::::0:0::0:::
104c1213 384#
39f77062
KB
385f::TARGET_READ_PC:CORE_ADDR:read_pc:ptid_t ptid:ptid::0:generic_target_read_pc::0
386f::TARGET_WRITE_PC:void:write_pc:CORE_ADDR val, ptid_t ptid:val, ptid::0:generic_target_write_pc::0
be8dfb87
AC
387f::TARGET_READ_FP:CORE_ADDR:read_fp:void:::0:generic_target_read_fp::0
388f::TARGET_WRITE_FP:void:write_fp:CORE_ADDR val:val::0:generic_target_write_fp::0
389f::TARGET_READ_SP:CORE_ADDR:read_sp:void:::0:generic_target_read_sp::0
390f::TARGET_WRITE_SP:void:write_sp:CORE_ADDR val:val::0:generic_target_write_sp::0
66b43ecb 391#
61a0eb5b
AC
392M:::void:register_read:int regnum, char *buf:regnum, buf:
393M:::void:register_write:int regnum, char *buf:regnum, buf:
394#
104c1213 395v:2:NUM_REGS:int:num_regs::::0:-1
0aba1244
EZ
396# This macro gives the number of pseudo-registers that live in the
397# register namespace but do not get fetched or stored on the target.
3d9a5942
AC
398# These pseudo-registers may be aliases for other registers,
399# combinations of other registers, or they may be computed by GDB.
0aba1244 400v:2:NUM_PSEUDO_REGS:int:num_pseudo_regs::::0:0::0:::
104c1213
JM
401v:2:SP_REGNUM:int:sp_regnum::::0:-1
402v:2:FP_REGNUM:int:fp_regnum::::0:-1
403v:2:PC_REGNUM:int:pc_regnum::::0:-1
0b8f9e4d
AC
404v:2:FP0_REGNUM:int:fp0_regnum::::0:-1::0
405v:2:NPC_REGNUM:int:npc_regnum::::0:-1::0
406v:2:NNPC_REGNUM:int:nnpc_regnum::::0:-1::0
88c72b7d
AC
407# Convert stab register number (from \`r\' declaration) to a gdb REGNUM.
408f:2:STAB_REG_TO_REGNUM:int:stab_reg_to_regnum:int stab_regnr:stab_regnr:::no_op_reg_to_regnum::0
409# Provide a default mapping from a ecoff register number to a gdb REGNUM.
410f:2:ECOFF_REG_TO_REGNUM:int:ecoff_reg_to_regnum:int ecoff_regnr:ecoff_regnr:::no_op_reg_to_regnum::0
411# Provide a default mapping from a DWARF register number to a gdb REGNUM.
412f:2:DWARF_REG_TO_REGNUM:int:dwarf_reg_to_regnum:int dwarf_regnr:dwarf_regnr:::no_op_reg_to_regnum::0
413# Convert from an sdb register number to an internal gdb register number.
414# This should be defined in tm.h, if REGISTER_NAMES is not set up
415# to map one to one onto the sdb register numbers.
416f:2:SDB_REG_TO_REGNUM:int:sdb_reg_to_regnum:int sdb_regnr:sdb_regnr:::no_op_reg_to_regnum::0
417f:2:DWARF2_REG_TO_REGNUM:int:dwarf2_reg_to_regnum:int dwarf2_regnr:dwarf2_regnr:::no_op_reg_to_regnum::0
0b8f9e4d 418f:2:REGISTER_NAME:char *:register_name:int regnr:regnr:::legacy_register_name::0
104c1213
JM
419v:2:REGISTER_SIZE:int:register_size::::0:-1
420v:2:REGISTER_BYTES:int:register_bytes::::0:-1
421f:2:REGISTER_BYTE:int:register_byte:int reg_nr:reg_nr::0:0
422f:2:REGISTER_RAW_SIZE:int:register_raw_size:int reg_nr:reg_nr::0:0
423v:2:MAX_REGISTER_RAW_SIZE:int:max_register_raw_size::::0:-1
424f:2:REGISTER_VIRTUAL_SIZE:int:register_virtual_size:int reg_nr:reg_nr::0:0
425v:2:MAX_REGISTER_VIRTUAL_SIZE:int:max_register_virtual_size::::0:-1
426f:2:REGISTER_VIRTUAL_TYPE:struct type *:register_virtual_type:int reg_nr:reg_nr::0:0
666e11c5 427f:2:DO_REGISTERS_INFO:void:do_registers_info:int reg_nr, int fpregs:reg_nr, fpregs:::do_registers_info::0
7c7651b2
AC
428# MAP a GDB RAW register number onto a simulator register number. See
429# also include/...-sim.h.
430f:2:REGISTER_SIM_REGNO:int:register_sim_regno:int reg_nr:reg_nr:::default_register_sim_regno::0
2649061d 431F:2:REGISTER_BYTES_OK:int:register_bytes_ok:long nr_bytes:nr_bytes::0:0
01fb7433
AC
432f:2:CANNOT_FETCH_REGISTER:int:cannot_fetch_register:int regnum:regnum:::cannot_register_not::0
433f:2:CANNOT_STORE_REGISTER:int:cannot_store_register:int regnum:regnum:::cannot_register_not::0
104c1213
JM
434#
435v:1:USE_GENERIC_DUMMY_FRAMES:int:use_generic_dummy_frames::::0:-1
436v:2:CALL_DUMMY_LOCATION:int:call_dummy_location::::0:0
0b8f9e4d
AC
437f:2:CALL_DUMMY_ADDRESS:CORE_ADDR:call_dummy_address:void:::0:0::gdbarch->call_dummy_location == AT_ENTRY_POINT && gdbarch->call_dummy_address == 0
438v:2:CALL_DUMMY_START_OFFSET:CORE_ADDR:call_dummy_start_offset::::0:-1:::0x%08lx
7861024d 439v:2:CALL_DUMMY_BREAKPOINT_OFFSET:CORE_ADDR:call_dummy_breakpoint_offset::::0:-1:::0x%08lx::CALL_DUMMY_BREAKPOINT_OFFSET_P
104c1213 440v:1:CALL_DUMMY_BREAKPOINT_OFFSET_P:int:call_dummy_breakpoint_offset_p::::0:-1
0b8f9e4d 441v:2:CALL_DUMMY_LENGTH:int:call_dummy_length::::0:-1:::::CALL_DUMMY_LOCATION == BEFORE_TEXT_END || CALL_DUMMY_LOCATION == AFTER_TEXT_END
104c1213
JM
442f:2:PC_IN_CALL_DUMMY:int:pc_in_call_dummy:CORE_ADDR pc, CORE_ADDR sp, CORE_ADDR frame_address:pc, sp, frame_address::0:0
443v:1:CALL_DUMMY_P:int:call_dummy_p::::0:-1
0b8f9e4d
AC
444v:2:CALL_DUMMY_WORDS:LONGEST *:call_dummy_words::::0:legacy_call_dummy_words::0:0x%08lx
445v:2:SIZEOF_CALL_DUMMY_WORDS:int:sizeof_call_dummy_words::::0:legacy_sizeof_call_dummy_words::0:0x%08lx
446v:1:CALL_DUMMY_STACK_ADJUST_P:int:call_dummy_stack_adjust_p::::0:-1:::0x%08lx
447v:2:CALL_DUMMY_STACK_ADJUST:int:call_dummy_stack_adjust::::0:::gdbarch->call_dummy_stack_adjust_p && gdbarch->call_dummy_stack_adjust == 0:0x%08lx::CALL_DUMMY_STACK_ADJUST_P
448f:2:FIX_CALL_DUMMY:void:fix_call_dummy:char *dummy, CORE_ADDR pc, CORE_ADDR fun, int nargs, struct value **args, struct type *type, int gcc_p:dummy, pc, fun, nargs, args, type, gcc_p:::0
10312cc4 449f:2:INIT_FRAME_PC_FIRST:void:init_frame_pc_first:int fromleaf, struct frame_info *prev:fromleaf, prev:::init_frame_pc_noop::0
7824d2f2 450f:2:INIT_FRAME_PC:void:init_frame_pc:int fromleaf, struct frame_info *prev:fromleaf, prev:::init_frame_pc_default::0
104c1213 451#
f0d4cc9e
AC
452v:2:BELIEVE_PCC_PROMOTION:int:believe_pcc_promotion:::::::
453v:2:BELIEVE_PCC_PROMOTION_TYPE:int:believe_pcc_promotion_type:::::::
0b8f9e4d 454f:2:COERCE_FLOAT_TO_DOUBLE:int:coerce_float_to_double:struct type *formal, struct type *actual:formal, actual:::default_coerce_float_to_double::0
104c1213
JM
455f:1:GET_SAVED_REGISTER:void:get_saved_register:char *raw_buffer, int *optimized, CORE_ADDR *addrp, struct frame_info *frame, int regnum, enum lval_type *lval:raw_buffer, optimized, addrp, frame, regnum, lval::generic_get_saved_register:0
456#
0b8f9e4d
AC
457f:1:REGISTER_CONVERTIBLE:int:register_convertible:int nr:nr:::generic_register_convertible_not::0
458f:2:REGISTER_CONVERT_TO_VIRTUAL:void:register_convert_to_virtual:int regnum, struct type *type, char *from, char *to:regnum, type, from, to:::0::0
459f:2:REGISTER_CONVERT_TO_RAW:void:register_convert_to_raw:struct type *type, int regnum, char *from, char *to:type, regnum, from, to:::0::0
34620563
AC
460# This function is called when the value of a pseudo-register needs to
461# be updated. Typically it will be defined on a per-architecture
462# basis.
7f1b2585 463f:2:FETCH_PSEUDO_REGISTER:void:fetch_pseudo_register:int regnum:regnum:::0::0
34620563
AC
464# This function is called when the value of a pseudo-register needs to
465# be set or stored. Typically it will be defined on a
466# per-architecture basis.
7f1b2585 467f:2:STORE_PSEUDO_REGISTER:void:store_pseudo_register:int regnum:regnum:::0::0
104c1213 468#
ac2e2ef7
AC
469f:2:POINTER_TO_ADDRESS:CORE_ADDR:pointer_to_address:struct type *type, void *buf:type, buf:::unsigned_pointer_to_address::0
470f:2:ADDRESS_TO_POINTER:void:address_to_pointer:struct type *type, void *buf, CORE_ADDR addr:type, buf, addr:::unsigned_address_to_pointer::0
4478b372 471#
0b8f9e4d 472f:2:RETURN_VALUE_ON_STACK:int:return_value_on_stack:struct type *type:type:::generic_return_value_on_stack_not::0
104c1213
JM
473f:2:EXTRACT_RETURN_VALUE:void:extract_return_value:struct type *type, char *regbuf, char *valbuf:type, regbuf, valbuf::0:0
474f:1:PUSH_ARGUMENTS:CORE_ADDR:push_arguments:int nargs, struct value **args, CORE_ADDR sp, int struct_return, CORE_ADDR struct_addr:nargs, args, sp, struct_return, struct_addr::0:0
c0e8c252
AC
475f:2:PUSH_DUMMY_FRAME:void:push_dummy_frame:void:-:::0
476f:1:PUSH_RETURN_ADDRESS:CORE_ADDR:push_return_address:CORE_ADDR pc, CORE_ADDR sp:pc, sp:::0
477f:2:POP_FRAME:void:pop_frame:void:-:::0
104c1213 478#
c0e8c252
AC
479f:2:STORE_STRUCT_RETURN:void:store_struct_return:CORE_ADDR addr, CORE_ADDR sp:addr, sp:::0
480f:2:STORE_RETURN_VALUE:void:store_return_value:struct type *type, char *valbuf:type, valbuf:::0
d6dd581e 481F:2:EXTRACT_STRUCT_VALUE_ADDRESS:CORE_ADDR:extract_struct_value_address:char *regbuf:regbuf:::0
c0e8c252 482f:2:USE_STRUCT_CONVENTION:int:use_struct_convention:int gcc_p, struct type *value_type:gcc_p, value_type:::0
104c1213
JM
483#
484f:2:FRAME_INIT_SAVED_REGS:void:frame_init_saved_regs:struct frame_info *frame:frame::0:0
c0e8c252 485f:2:INIT_EXTRA_FRAME_INFO:void:init_extra_frame_info:int fromleaf, struct frame_info *frame:fromleaf, frame:::0
104c1213
JM
486#
487f:2:SKIP_PROLOGUE:CORE_ADDR:skip_prologue:CORE_ADDR ip:ip::0:0
0b8f9e4d 488f:2:PROLOGUE_FRAMELESS_P:int:prologue_frameless_p:CORE_ADDR ip:ip::0:generic_prologue_frameless_p::0
104c1213 489f:2:INNER_THAN:int:inner_than:CORE_ADDR lhs, CORE_ADDR rhs:lhs, rhs::0:0
0b8f9e4d
AC
490f:2:BREAKPOINT_FROM_PC:unsigned char *:breakpoint_from_pc:CORE_ADDR *pcptr, int *lenptr:pcptr, lenptr:::legacy_breakpoint_from_pc::0
491f:2:MEMORY_INSERT_BREAKPOINT:int:memory_insert_breakpoint:CORE_ADDR addr, char *contents_cache:addr, contents_cache::0:default_memory_insert_breakpoint::0
492f:2:MEMORY_REMOVE_BREAKPOINT:int:memory_remove_breakpoint:CORE_ADDR addr, char *contents_cache:addr, contents_cache::0:default_memory_remove_breakpoint::0
104c1213 493v:2:DECR_PC_AFTER_BREAK:CORE_ADDR:decr_pc_after_break::::0:-1
e02bc4cc 494f::PREPARE_TO_PROCEED:int:prepare_to_proceed:int select_it:select_it::0:default_prepare_to_proceed::0
104c1213
JM
495v:2:FUNCTION_START_OFFSET:CORE_ADDR:function_start_offset::::0:-1
496#
0b8f9e4d 497f:2:REMOTE_TRANSLATE_XFER_ADDRESS:void:remote_translate_xfer_address:CORE_ADDR gdb_addr, int gdb_len, CORE_ADDR *rem_addr, int *rem_len:gdb_addr, gdb_len, rem_addr, rem_len:::generic_remote_translate_xfer_address::0
104c1213
JM
498#
499v:2:FRAME_ARGS_SKIP:CORE_ADDR:frame_args_skip::::0:-1
0b8f9e4d 500f:2:FRAMELESS_FUNCTION_INVOCATION:int:frameless_function_invocation:struct frame_info *fi:fi:::generic_frameless_function_invocation_not::0
104c1213
JM
501f:2:FRAME_CHAIN:CORE_ADDR:frame_chain:struct frame_info *frame:frame::0:0
502f:1:FRAME_CHAIN_VALID:int:frame_chain_valid:CORE_ADDR chain, struct frame_info *thisframe:chain, thisframe::0:0
503f:2:FRAME_SAVED_PC:CORE_ADDR:frame_saved_pc:struct frame_info *fi:fi::0:0
504f:2:FRAME_ARGS_ADDRESS:CORE_ADDR:frame_args_address:struct frame_info *fi:fi::0:0
505f:2:FRAME_LOCALS_ADDRESS:CORE_ADDR:frame_locals_address:struct frame_info *fi:fi::0:0
506f:2:SAVED_PC_AFTER_CALL:CORE_ADDR:saved_pc_after_call:struct frame_info *frame:frame::0:0
507f:2:FRAME_NUM_ARGS:int:frame_num_args:struct frame_info *frame:frame::0:0
508#
2ada493a 509F:2:STACK_ALIGN:CORE_ADDR:stack_align:CORE_ADDR sp:sp::0:0
0a49d05e 510v:1:EXTRA_STACK_ALIGNMENT_NEEDED:int:extra_stack_alignment_needed::::0:1::0:::
d03e67c9 511F:2:REG_STRUCT_HAS_ADDR:int:reg_struct_has_addr:int gcc_p, struct type *type:gcc_p, type::0:0
d1e3cf49 512F:2:SAVE_DUMMY_FRAME_TOS:void:save_dummy_frame_tos:CORE_ADDR sp:sp::0:0
58d5518e 513v:2:PARM_BOUNDARY:int:parm_boundary
f0d4cc9e
AC
514#
515v:2:TARGET_FLOAT_FORMAT:const struct floatformat *:float_format::::::default_float_format (gdbarch)
516v:2:TARGET_DOUBLE_FORMAT:const struct floatformat *:double_format::::::default_double_format (gdbarch)
517v:2:TARGET_LONG_DOUBLE_FORMAT:const struct floatformat *:long_double_format::::::&floatformat_unknown
875e1767
AC
518f:2:CONVERT_FROM_FUNC_PTR_ADDR:CORE_ADDR:convert_from_func_ptr_addr:CORE_ADDR addr:addr:::core_addr_identity::0
519# On some machines there are bits in addresses which are not really
520# part of the address, but are used by the kernel, the hardware, etc.
521# for special purposes. ADDR_BITS_REMOVE takes out any such bits so
522# we get a "real" address such as one would find in a symbol table.
523# This is used only for addresses of instructions, and even then I'm
524# not sure it's used in all contexts. It exists to deal with there
525# being a few stray bits in the PC which would mislead us, not as some
526# sort of generic thing to handle alignment or segmentation (it's
527# possible it should be in TARGET_READ_PC instead).
528f:2:ADDR_BITS_REMOVE:CORE_ADDR:addr_bits_remove:CORE_ADDR addr:addr:::core_addr_identity::0
64c4637f
AC
529# FIXME/cagney/2001-01-18: This should be split in two. A target method that indicates if
530# the target needs software single step. An ISA method to implement it.
531#
532# FIXME/cagney/2001-01-18: This should be replaced with something that inserts breakpoints
533# using the breakpoint system instead of blatting memory directly (as with rs6000).
534#
535# FIXME/cagney/2001-01-18: The logic is backwards. It should be asking if the target can
536# single step. If not, then implement single step using breakpoints.
537F:2:SOFTWARE_SINGLE_STEP:void:software_single_step:enum target_signal sig, int insert_breakpoints_p:sig, insert_breakpoints_p::0:0
104c1213 538EOF
104c1213
JM
539}
540
0b8f9e4d
AC
541#
542# The .log file
543#
544exec > new-gdbarch.log
34620563 545function_list | while do_read
0b8f9e4d
AC
546do
547 cat <<EOF
104c1213
JM
548${class} ${macro}(${actual})
549 ${returntype} ${function} ($formal)${attrib}
104c1213 550EOF
3d9a5942
AC
551 for r in ${read}
552 do
553 eval echo \"\ \ \ \ ${r}=\${${r}}\"
554 done
555# #fallbackdefault=${fallbackdefault}
556# #valid_p=${valid_p}
557#EOF
f0d4cc9e 558 if class_is_predicate_p && fallback_default_p
0b8f9e4d 559 then
66b43ecb 560 echo "Error: predicate function ${macro} can not have a non- multi-arch default" 1>&2
0b8f9e4d
AC
561 kill $$
562 exit 1
563 fi
72e74a21 564 if [ "x${invalid_p}" = "x0" -a -n "${postdefault}" ]
f0d4cc9e
AC
565 then
566 echo "Error: postdefault is useless when invalid_p=0" 1>&2
567 kill $$
568 exit 1
569 fi
3d9a5942 570 echo ""
0b8f9e4d
AC
571done
572
573exec 1>&2
574compare_new gdbarch.log
575
104c1213
JM
576
577copyright ()
578{
579cat <<EOF
59233f88
AC
580/* *INDENT-OFF* */ /* THIS FILE IS GENERATED */
581
104c1213 582/* Dynamic architecture support for GDB, the GNU debugger.
338d7c5c 583 Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
104c1213
JM
584
585 This file is part of GDB.
586
587 This program is free software; you can redistribute it and/or modify
588 it under the terms of the GNU General Public License as published by
589 the Free Software Foundation; either version 2 of the License, or
590 (at your option) any later version.
591
592 This program is distributed in the hope that it will be useful,
593 but WITHOUT ANY WARRANTY; without even the implied warranty of
594 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
595 GNU General Public License for more details.
596
597 You should have received a copy of the GNU General Public License
598 along with this program; if not, write to the Free Software
599 Foundation, Inc., 59 Temple Place - Suite 330,
600 Boston, MA 02111-1307, USA. */
601
104c1213
JM
602/* This file was created with the aid of \`\`gdbarch.sh''.
603
52204a0b 604 The Bourne shell script \`\`gdbarch.sh'' creates the files
104c1213
JM
605 \`\`new-gdbarch.c'' and \`\`new-gdbarch.h and then compares them
606 against the existing \`\`gdbarch.[hc]''. Any differences found
607 being reported.
608
609 If editing this file, please also run gdbarch.sh and merge any
52204a0b 610 changes into that script. Conversely, when making sweeping changes
104c1213
JM
611 to this file, modifying gdbarch.sh and using its output may prove
612 easier. */
613
614EOF
615}
616
617#
618# The .h file
619#
620
621exec > new-gdbarch.h
622copyright
623cat <<EOF
624#ifndef GDBARCH_H
625#define GDBARCH_H
626
627struct frame_info;
628struct value;
629
630
104c1213
JM
631extern struct gdbarch *current_gdbarch;
632
633
104c1213
JM
634/* If any of the following are defined, the target wasn't correctly
635 converted. */
636
104c1213
JM
637#if GDB_MULTI_ARCH
638#if defined (EXTRA_FRAME_INFO)
639#error "EXTRA_FRAME_INFO: replaced by struct frame_extra_info"
640#endif
641#endif
642
643#if GDB_MULTI_ARCH
644#if defined (FRAME_FIND_SAVED_REGS)
645#error "FRAME_FIND_SAVED_REGS: replaced by FRAME_INIT_SAVED_REGS"
646#endif
647#endif
83905903
AC
648
649#if (GDB_MULTI_ARCH >= GDB_MULTI_ARCH_PURE) && defined (GDB_TM_FILE)
650#error "GDB_TM_FILE: Pure multi-arch targets do not have a tm.h file."
651#endif
104c1213
JM
652EOF
653
654# function typedef's
3d9a5942
AC
655printf "\n"
656printf "\n"
657printf "/* The following are pre-initialized by GDBARCH. */\n"
34620563 658function_list | while do_read
104c1213 659do
2ada493a
AC
660 if class_is_info_p
661 then
3d9a5942
AC
662 printf "\n"
663 printf "extern ${returntype} gdbarch_${function} (struct gdbarch *gdbarch);\n"
664 printf "/* set_gdbarch_${function}() - not applicable - pre-initialized. */\n"
83905903
AC
665 printf "#if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) && defined (${macro})\n"
666 printf "#error \"Non multi-arch definition of ${macro}\"\n"
667 printf "#endif\n"
3d9a5942
AC
668 printf "#if GDB_MULTI_ARCH\n"
669 printf "#if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) || !defined (${macro})\n"
670 printf "#define ${macro} (gdbarch_${function} (current_gdbarch))\n"
671 printf "#endif\n"
672 printf "#endif\n"
2ada493a 673 fi
104c1213
JM
674done
675
676# function typedef's
3d9a5942
AC
677printf "\n"
678printf "\n"
679printf "/* The following are initialized by the target dependent code. */\n"
34620563 680function_list | while do_read
104c1213 681do
72e74a21 682 if [ -n "${comment}" ]
34620563
AC
683 then
684 echo "${comment}" | sed \
685 -e '2 s,#,/*,' \
686 -e '3,$ s,#, ,' \
687 -e '$ s,$, */,'
688 fi
b77be6cf 689 if class_is_multiarch_p
2ada493a 690 then
b77be6cf
AC
691 if class_is_predicate_p
692 then
693 printf "\n"
694 printf "extern int gdbarch_${function}_p (struct gdbarch *gdbarch);\n"
695 fi
696 else
697 if class_is_predicate_p
698 then
699 printf "\n"
700 printf "#if defined (${macro})\n"
701 printf "/* Legacy for systems yet to multi-arch ${macro} */\n"
702 #printf "#if (GDB_MULTI_ARCH <= GDB_MULTI_ARCH_PARTIAL) && defined (${macro})\n"
eee30e78 703 printf "#if !defined (${macro}_P)\n"
b77be6cf
AC
704 printf "#define ${macro}_P() (1)\n"
705 printf "#endif\n"
eee30e78 706 printf "#endif\n"
b77be6cf
AC
707 printf "\n"
708 printf "/* Default predicate for non- multi-arch targets. */\n"
709 printf "#if (!GDB_MULTI_ARCH) && !defined (${macro}_P)\n"
710 printf "#define ${macro}_P() (0)\n"
711 printf "#endif\n"
712 printf "\n"
713 printf "extern int gdbarch_${function}_p (struct gdbarch *gdbarch);\n"
83905903
AC
714 printf "#if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) && defined (${macro}_P)\n"
715 printf "#error \"Non multi-arch definition of ${macro}\"\n"
716 printf "#endif\n"
b77be6cf
AC
717 printf "#if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) || !defined (${macro}_P)\n"
718 printf "#define ${macro}_P() (gdbarch_${function}_p (current_gdbarch))\n"
719 printf "#endif\n"
720 fi
4a5c6a1d 721 fi
2ada493a
AC
722 if class_is_variable_p
723 then
f0d4cc9e 724 if fallback_default_p || class_is_predicate_p
33489c5b 725 then
3d9a5942
AC
726 printf "\n"
727 printf "/* Default (value) for non- multi-arch platforms. */\n"
728 printf "#if (!GDB_MULTI_ARCH) && !defined (${macro})\n"
f0d4cc9e
AC
729 echo "#define ${macro} (${fallbackdefault})" \
730 | sed -e 's/\([^a-z_]\)\(gdbarch[^a-z_]\)/\1current_\2/g'
3d9a5942 731 printf "#endif\n"
33489c5b 732 fi
3d9a5942
AC
733 printf "\n"
734 printf "extern ${returntype} gdbarch_${function} (struct gdbarch *gdbarch);\n"
735 printf "extern void set_gdbarch_${function} (struct gdbarch *gdbarch, ${returntype} ${function});\n"
83905903
AC
736 printf "#if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) && defined (${macro})\n"
737 printf "#error \"Non multi-arch definition of ${macro}\"\n"
738 printf "#endif\n"
3d9a5942
AC
739 printf "#if GDB_MULTI_ARCH\n"
740 printf "#if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) || !defined (${macro})\n"
741 printf "#define ${macro} (gdbarch_${function} (current_gdbarch))\n"
742 printf "#endif\n"
743 printf "#endif\n"
2ada493a
AC
744 fi
745 if class_is_function_p
746 then
b77be6cf
AC
747 if class_is_multiarch_p ; then :
748 elif fallback_default_p || class_is_predicate_p
33489c5b 749 then
3d9a5942
AC
750 printf "\n"
751 printf "/* Default (function) for non- multi-arch platforms. */\n"
752 printf "#if (!GDB_MULTI_ARCH) && !defined (${macro})\n"
72e74a21 753 if [ "x${fallbackdefault}" = "x0" ]
33489c5b 754 then
8e65ff28 755 printf "#define ${macro}(${actual}) (internal_error (__FILE__, __LINE__, \"${macro}\"), 0)\n"
33489c5b 756 else
f0d4cc9e
AC
757 # FIXME: Should be passing current_gdbarch through!
758 echo "#define ${macro}(${actual}) (${fallbackdefault} (${actual}))" \
759 | sed -e 's/\([^a-z_]\)\(gdbarch[^a-z_]\)/\1current_\2/g'
33489c5b 760 fi
3d9a5942 761 printf "#endif\n"
33489c5b 762 fi
3d9a5942 763 printf "\n"
72e74a21 764 if [ "x${formal}" = "xvoid" ] && class_is_multiarch_p
4a5c6a1d
AC
765 then
766 printf "typedef ${returntype} (gdbarch_${function}_ftype) (struct gdbarch *gdbarch);\n"
767 elif class_is_multiarch_p
768 then
769 printf "typedef ${returntype} (gdbarch_${function}_ftype) (struct gdbarch *gdbarch, ${formal});\n"
770 else
771 printf "typedef ${returntype} (gdbarch_${function}_ftype) (${formal});\n"
772 fi
72e74a21 773 if [ "x${formal}" = "xvoid" ]
104c1213 774 then
3d9a5942 775 printf "extern ${returntype} gdbarch_${function} (struct gdbarch *gdbarch);\n"
104c1213 776 else
3d9a5942 777 printf "extern ${returntype} gdbarch_${function} (struct gdbarch *gdbarch, ${formal});\n"
104c1213 778 fi
3d9a5942 779 printf "extern void set_gdbarch_${function} (struct gdbarch *gdbarch, gdbarch_${function}_ftype *${function});\n"
b77be6cf
AC
780 if class_is_multiarch_p ; then :
781 else
83905903
AC
782 printf "#if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) && defined (${macro})\n"
783 printf "#error \"Non multi-arch definition of ${macro}\"\n"
784 printf "#endif\n"
4a5c6a1d
AC
785 printf "#if GDB_MULTI_ARCH\n"
786 printf "#if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) || !defined (${macro})\n"
72e74a21 787 if [ "x${actual}" = "x" ]
4a5c6a1d
AC
788 then
789 printf "#define ${macro}() (gdbarch_${function} (current_gdbarch))\n"
72e74a21 790 elif [ "x${actual}" = "x-" ]
4a5c6a1d
AC
791 then
792 printf "#define ${macro} (gdbarch_${function} (current_gdbarch))\n"
793 else
794 printf "#define ${macro}(${actual}) (gdbarch_${function} (current_gdbarch, ${actual}))\n"
795 fi
796 printf "#endif\n"
797 printf "#endif\n"
104c1213 798 fi
2ada493a 799 fi
104c1213
JM
800done
801
802# close it off
803cat <<EOF
804
805extern struct gdbarch_tdep *gdbarch_tdep (struct gdbarch *gdbarch);
806
807
808/* Mechanism for co-ordinating the selection of a specific
809 architecture.
810
811 GDB targets (*-tdep.c) can register an interest in a specific
812 architecture. Other GDB components can register a need to maintain
813 per-architecture data.
814
815 The mechanisms below ensures that there is only a loose connection
816 between the set-architecture command and the various GDB
0fa6923a 817 components. Each component can independently register their need
104c1213
JM
818 to maintain architecture specific data with gdbarch.
819
820 Pragmatics:
821
822 Previously, a single TARGET_ARCHITECTURE_HOOK was provided. It
823 didn't scale.
824
825 The more traditional mega-struct containing architecture specific
826 data for all the various GDB components was also considered. Since
0fa6923a 827 GDB is built from a variable number of (fairly independent)
104c1213
JM
828 components it was determined that the global aproach was not
829 applicable. */
830
831
832/* Register a new architectural family with GDB.
833
834 Register support for the specified ARCHITECTURE with GDB. When
835 gdbarch determines that the specified architecture has been
836 selected, the corresponding INIT function is called.
837
838 --
839
840 The INIT function takes two parameters: INFO which contains the
841 information available to gdbarch about the (possibly new)
842 architecture; ARCHES which is a list of the previously created
843 \`\`struct gdbarch'' for this architecture.
844
845 The INIT function parameter INFO shall, as far as possible, be
846 pre-initialized with information obtained from INFO.ABFD or
847 previously selected architecture (if similar). INIT shall ensure
848 that the INFO.BYTE_ORDER is non-zero.
849
850 The INIT function shall return any of: NULL - indicating that it
ec3d358c 851 doesn't recognize the selected architecture; an existing \`\`struct
104c1213
JM
852 gdbarch'' from the ARCHES list - indicating that the new
853 architecture is just a synonym for an earlier architecture (see
854 gdbarch_list_lookup_by_info()); a newly created \`\`struct gdbarch''
4b9b3959
AC
855 - that describes the selected architecture (see gdbarch_alloc()).
856
857 The DUMP_TDEP function shall print out all target specific values.
858 Care should be taken to ensure that the function works in both the
859 multi-arch and non- multi-arch cases. */
104c1213
JM
860
861struct gdbarch_list
862{
863 struct gdbarch *gdbarch;
864 struct gdbarch_list *next;
865};
866
867struct gdbarch_info
868{
104c1213
JM
869 /* Use default: NULL (ZERO). */
870 const struct bfd_arch_info *bfd_arch_info;
871
872 /* Use default: 0 (ZERO). */
873 int byte_order;
874
875 /* Use default: NULL (ZERO). */
876 bfd *abfd;
877
878 /* Use default: NULL (ZERO). */
879 struct gdbarch_tdep_info *tdep_info;
880};
881
882typedef struct gdbarch *(gdbarch_init_ftype) (struct gdbarch_info info, struct gdbarch_list *arches);
4b9b3959 883typedef void (gdbarch_dump_tdep_ftype) (struct gdbarch *gdbarch, struct ui_file *file);
104c1213 884
4b9b3959 885/* DEPRECATED - use gdbarch_register() */
104c1213
JM
886extern void register_gdbarch_init (enum bfd_architecture architecture, gdbarch_init_ftype *);
887
4b9b3959
AC
888extern void gdbarch_register (enum bfd_architecture architecture,
889 gdbarch_init_ftype *,
890 gdbarch_dump_tdep_ftype *);
891
104c1213 892
b4a20239
AC
893/* Return a freshly allocated, NULL terminated, array of the valid
894 architecture names. Since architectures are registered during the
895 _initialize phase this function only returns useful information
896 once initialization has been completed. */
897
898extern const char **gdbarch_printable_names (void);
899
900
104c1213
JM
901/* Helper function. Search the list of ARCHES for a GDBARCH that
902 matches the information provided by INFO. */
903
904extern struct gdbarch_list *gdbarch_list_lookup_by_info (struct gdbarch_list *arches, const struct gdbarch_info *info);
905
906
907/* Helper function. Create a preliminary \`\`struct gdbarch''. Perform
908 basic initialization using values obtained from the INFO andTDEP
909 parameters. set_gdbarch_*() functions are called to complete the
910 initialization of the object. */
911
912extern struct gdbarch *gdbarch_alloc (const struct gdbarch_info *info, struct gdbarch_tdep *tdep);
913
914
4b9b3959
AC
915/* Helper function. Free a partially-constructed \`\`struct gdbarch''.
916 It is assumed that the caller freeds the \`\`struct
917 gdbarch_tdep''. */
918
058f20d5
JB
919extern void gdbarch_free (struct gdbarch *);
920
921
b732d07d 922/* Helper function. Force an update of the current architecture.
104c1213 923
b732d07d
AC
924 The actual architecture selected is determined by INFO, \`\`(gdb) set
925 architecture'' et.al., the existing architecture and BFD's default
926 architecture. INFO should be initialized to zero and then selected
927 fields should be updated.
104c1213 928
16f33e29
AC
929 Returns non-zero if the update succeeds */
930
931extern int gdbarch_update_p (struct gdbarch_info info);
104c1213
JM
932
933
934
935/* Register per-architecture data-pointer.
936
937 Reserve space for a per-architecture data-pointer. An identifier
938 for the reserved data-pointer is returned. That identifer should
95160752 939 be saved in a local static variable.
104c1213 940
95160752
AC
941 The per-architecture data-pointer can be initialized in one of two
942 ways: The value can be set explicitly using a call to
943 set_gdbarch_data(); the value can be set implicitly using the value
944 returned by a non-NULL INIT() callback. INIT(), when non-NULL is
945 called after the basic architecture vector has been created.
104c1213 946
95160752
AC
947 When a previously created architecture is re-selected, the
948 per-architecture data-pointer for that previous architecture is
949 restored. INIT() is not called.
950
951 During initialization, multiple assignments of the data-pointer are
952 allowed, non-NULL values are deleted by calling FREE(). If the
953 architecture is deleted using gdbarch_free() all non-NULL data
954 pointers are also deleted using FREE().
104c1213
JM
955
956 Multiple registrarants for any architecture are allowed (and
957 strongly encouraged). */
958
95160752 959struct gdbarch_data;
104c1213 960
95160752
AC
961typedef void *(gdbarch_data_init_ftype) (struct gdbarch *gdbarch);
962typedef void (gdbarch_data_free_ftype) (struct gdbarch *gdbarch,
963 void *pointer);
964extern struct gdbarch_data *register_gdbarch_data (gdbarch_data_init_ftype *init,
965 gdbarch_data_free_ftype *free);
966extern void set_gdbarch_data (struct gdbarch *gdbarch,
967 struct gdbarch_data *data,
968 void *pointer);
104c1213
JM
969
970extern void *gdbarch_data (struct gdbarch_data*);
971
972
104c1213
JM
973/* Register per-architecture memory region.
974
975 Provide a memory-region swap mechanism. Per-architecture memory
976 region are created. These memory regions are swapped whenever the
977 architecture is changed. For a new architecture, the memory region
978 is initialized with zero (0) and the INIT function is called.
979
980 Memory regions are swapped / initialized in the order that they are
981 registered. NULL DATA and/or INIT values can be specified.
982
983 New code should use register_gdbarch_data(). */
984
985typedef void (gdbarch_swap_ftype) (void);
986extern void register_gdbarch_swap (void *data, unsigned long size, gdbarch_swap_ftype *init);
e514a9d6 987#define REGISTER_GDBARCH_SWAP(VAR) register_gdbarch_swap (&(VAR), sizeof ((VAR)), NULL)
104c1213
JM
988
989
990
0fa6923a 991/* The target-system-dependent byte order is dynamic */
104c1213
JM
992
993/* TARGET_BYTE_ORDER_SELECTABLE_P determines if the target endianness
994 is selectable at runtime. The user can use the \`\`set endian''
995 command to change it. TARGET_BYTE_ORDER_AUTO is nonzero when
996 target_byte_order should be auto-detected (from the program image
997 say). */
998
999#if GDB_MULTI_ARCH
1000/* Multi-arch GDB is always bi-endian. */
1001#define TARGET_BYTE_ORDER_SELECTABLE_P 1
1002#endif
1003
1004#ifndef TARGET_BYTE_ORDER_SELECTABLE_P
1005/* compat - Catch old targets that define TARGET_BYTE_ORDER_SLECTABLE
1006 when they should have defined TARGET_BYTE_ORDER_SELECTABLE_P 1 */
1007#ifdef TARGET_BYTE_ORDER_SELECTABLE
1008#define TARGET_BYTE_ORDER_SELECTABLE_P 1
1009#else
1010#define TARGET_BYTE_ORDER_SELECTABLE_P 0
1011#endif
1012#endif
1013
1014extern int target_byte_order;
1015#ifdef TARGET_BYTE_ORDER_SELECTABLE
1016/* compat - Catch old targets that define TARGET_BYTE_ORDER_SELECTABLE
1017 and expect defs.h to re-define TARGET_BYTE_ORDER. */
1018#undef TARGET_BYTE_ORDER
1019#endif
1020#ifndef TARGET_BYTE_ORDER
1021#define TARGET_BYTE_ORDER (target_byte_order + 0)
1022#endif
1023
1024extern int target_byte_order_auto;
1025#ifndef TARGET_BYTE_ORDER_AUTO
1026#define TARGET_BYTE_ORDER_AUTO (target_byte_order_auto + 0)
1027#endif
1028
1029
1030
0fa6923a 1031/* The target-system-dependent BFD architecture is dynamic */
104c1213
JM
1032
1033extern int target_architecture_auto;
1034#ifndef TARGET_ARCHITECTURE_AUTO
1035#define TARGET_ARCHITECTURE_AUTO (target_architecture_auto + 0)
1036#endif
1037
1038extern const struct bfd_arch_info *target_architecture;
1039#ifndef TARGET_ARCHITECTURE
1040#define TARGET_ARCHITECTURE (target_architecture + 0)
1041#endif
1042
104c1213 1043
0fa6923a 1044/* The target-system-dependent disassembler is semi-dynamic */
104c1213
JM
1045
1046#include "dis-asm.h" /* Get defs for disassemble_info */
1047
1048extern int dis_asm_read_memory (bfd_vma memaddr, bfd_byte *myaddr,
ff844c8d 1049 unsigned int len, disassemble_info *info);
104c1213
JM
1050
1051extern void dis_asm_memory_error (int status, bfd_vma memaddr,
1052 disassemble_info *info);
1053
1054extern void dis_asm_print_address (bfd_vma addr,
1055 disassemble_info *info);
1056
1057extern int (*tm_print_insn) (bfd_vma, disassemble_info*);
1058extern disassemble_info tm_print_insn_info;
1059#ifndef TARGET_PRINT_INSN
1060#define TARGET_PRINT_INSN(vma, info) (*tm_print_insn) (vma, info)
1061#endif
1062#ifndef TARGET_PRINT_INSN_INFO
1063#define TARGET_PRINT_INSN_INFO (&tm_print_insn_info)
1064#endif
1065
1066
1067
0fa6923a 1068/* Set the dynamic target-system-dependent parameters (architecture,
104c1213
JM
1069 byte-order, ...) using information found in the BFD */
1070
1071extern void set_gdbarch_from_file (bfd *);
1072
1073
e514a9d6
JM
1074/* Initialize the current architecture to the "first" one we find on
1075 our list. */
1076
1077extern void initialize_current_architecture (void);
1078
ceaa8edf
JB
1079/* For non-multiarched targets, do any initialization of the default
1080 gdbarch object necessary after the _initialize_MODULE functions
1081 have run. */
1082extern void initialize_non_multiarch ();
104c1213
JM
1083
1084/* gdbarch trace variable */
1085extern int gdbarch_debug;
1086
4b9b3959 1087extern void gdbarch_dump (struct gdbarch *gdbarch, struct ui_file *file);
104c1213
JM
1088
1089#endif
1090EOF
1091exec 1>&2
1092#../move-if-change new-gdbarch.h gdbarch.h
59233f88 1093compare_new gdbarch.h
104c1213
JM
1094
1095
1096#
1097# C file
1098#
1099
1100exec > new-gdbarch.c
1101copyright
1102cat <<EOF
1103
1104#include "defs.h"
7355ddba 1105#include "arch-utils.h"
104c1213
JM
1106
1107#if GDB_MULTI_ARCH
1108#include "gdbcmd.h"
1109#include "inferior.h" /* enum CALL_DUMMY_LOCATION et.al. */
1110#else
1111/* Just include everything in sight so that the every old definition
1112 of macro is visible. */
1113#include "gdb_string.h"
1114#include <ctype.h>
1115#include "symtab.h"
1116#include "frame.h"
1117#include "inferior.h"
1118#include "breakpoint.h"
0596389c 1119#include "gdb_wait.h"
104c1213
JM
1120#include "gdbcore.h"
1121#include "gdbcmd.h"
1122#include "target.h"
1123#include "gdbthread.h"
1124#include "annotate.h"
1125#include "symfile.h" /* for overlay functions */
1126#endif
1127#include "symcat.h"
1128
f0d4cc9e 1129#include "floatformat.h"
104c1213 1130
95160752 1131#include "gdb_assert.h"
67c2c32c 1132#include "gdb-events.h"
95160752 1133
104c1213
JM
1134/* Static function declarations */
1135
1136static void verify_gdbarch (struct gdbarch *gdbarch);
b3cc3077
JB
1137static void alloc_gdbarch_data (struct gdbarch *);
1138static void init_gdbarch_data (struct gdbarch *);
95160752 1139static void free_gdbarch_data (struct gdbarch *);
104c1213
JM
1140static void init_gdbarch_swap (struct gdbarch *);
1141static void swapout_gdbarch_swap (struct gdbarch *);
1142static void swapin_gdbarch_swap (struct gdbarch *);
1143
1144/* Convenience macro for allocting typesafe memory. */
1145
1146#ifndef XMALLOC
1147#define XMALLOC(TYPE) (TYPE*) xmalloc (sizeof (TYPE))
1148#endif
1149
1150
1151/* Non-zero if we want to trace architecture code. */
1152
1153#ifndef GDBARCH_DEBUG
1154#define GDBARCH_DEBUG 0
1155#endif
1156int gdbarch_debug = GDBARCH_DEBUG;
1157
1158EOF
1159
1160# gdbarch open the gdbarch object
3d9a5942
AC
1161printf "\n"
1162printf "/* Maintain the struct gdbarch object */\n"
1163printf "\n"
1164printf "struct gdbarch\n"
1165printf "{\n"
1166printf " /* basic architectural information */\n"
34620563 1167function_list | while do_read
104c1213 1168do
2ada493a
AC
1169 if class_is_info_p
1170 then
3d9a5942 1171 printf " ${returntype} ${function};\n"
2ada493a 1172 fi
104c1213 1173done
3d9a5942
AC
1174printf "\n"
1175printf " /* target specific vector. */\n"
1176printf " struct gdbarch_tdep *tdep;\n"
1177printf " gdbarch_dump_tdep_ftype *dump_tdep;\n"
1178printf "\n"
1179printf " /* per-architecture data-pointers */\n"
95160752 1180printf " unsigned nr_data;\n"
3d9a5942
AC
1181printf " void **data;\n"
1182printf "\n"
1183printf " /* per-architecture swap-regions */\n"
1184printf " struct gdbarch_swap *swap;\n"
1185printf "\n"
104c1213
JM
1186cat <<EOF
1187 /* Multi-arch values.
1188
1189 When extending this structure you must:
1190
1191 Add the field below.
1192
1193 Declare set/get functions and define the corresponding
1194 macro in gdbarch.h.
1195
1196 gdbarch_alloc(): If zero/NULL is not a suitable default,
1197 initialize the new field.
1198
1199 verify_gdbarch(): Confirm that the target updated the field
1200 correctly.
1201
7e73cedf 1202 gdbarch_dump(): Add a fprintf_unfiltered call so that the new
104c1213
JM
1203 field is dumped out
1204
c0e8c252 1205 \`\`startup_gdbarch()'': Append an initial value to the static
104c1213
JM
1206 variable (base values on the host's c-type system).
1207
1208 get_gdbarch(): Implement the set/get functions (probably using
1209 the macro's as shortcuts).
1210
1211 */
1212
1213EOF
34620563 1214function_list | while do_read
104c1213 1215do
2ada493a
AC
1216 if class_is_variable_p
1217 then
3d9a5942 1218 printf " ${returntype} ${function};\n"
2ada493a
AC
1219 elif class_is_function_p
1220 then
3d9a5942 1221 printf " gdbarch_${function}_ftype *${function}${attrib};\n"
2ada493a 1222 fi
104c1213 1223done
3d9a5942 1224printf "};\n"
104c1213
JM
1225
1226# A pre-initialized vector
3d9a5942
AC
1227printf "\n"
1228printf "\n"
104c1213
JM
1229cat <<EOF
1230/* The default architecture uses host values (for want of a better
1231 choice). */
1232EOF
3d9a5942
AC
1233printf "\n"
1234printf "extern const struct bfd_arch_info bfd_default_arch_struct;\n"
1235printf "\n"
1236printf "struct gdbarch startup_gdbarch =\n"
1237printf "{\n"
1238printf " /* basic architecture information */\n"
4b9b3959 1239function_list | while do_read
104c1213 1240do
2ada493a
AC
1241 if class_is_info_p
1242 then
3d9a5942 1243 printf " ${staticdefault},\n"
2ada493a 1244 fi
104c1213
JM
1245done
1246cat <<EOF
4b9b3959
AC
1247 /* target specific vector and its dump routine */
1248 NULL, NULL,
104c1213
JM
1249 /*per-architecture data-pointers and swap regions */
1250 0, NULL, NULL,
1251 /* Multi-arch values */
1252EOF
34620563 1253function_list | while do_read
104c1213 1254do
2ada493a
AC
1255 if class_is_function_p || class_is_variable_p
1256 then
3d9a5942 1257 printf " ${staticdefault},\n"
2ada493a 1258 fi
104c1213
JM
1259done
1260cat <<EOF
c0e8c252 1261 /* startup_gdbarch() */
104c1213 1262};
4b9b3959 1263
c0e8c252 1264struct gdbarch *current_gdbarch = &startup_gdbarch;
ceaa8edf
JB
1265
1266/* Do any initialization needed for a non-multiarch configuration
1267 after the _initialize_MODULE functions have been run. */
1268void
1269initialize_non_multiarch ()
1270{
1271 alloc_gdbarch_data (&startup_gdbarch);
1272 init_gdbarch_data (&startup_gdbarch);
1273}
104c1213
JM
1274EOF
1275
1276# Create a new gdbarch struct
3d9a5942
AC
1277printf "\n"
1278printf "\n"
104c1213 1279cat <<EOF
66b43ecb 1280/* Create a new \`\`struct gdbarch'' based on information provided by
104c1213
JM
1281 \`\`struct gdbarch_info''. */
1282EOF
3d9a5942 1283printf "\n"
104c1213
JM
1284cat <<EOF
1285struct gdbarch *
1286gdbarch_alloc (const struct gdbarch_info *info,
1287 struct gdbarch_tdep *tdep)
1288{
1289 struct gdbarch *gdbarch = XMALLOC (struct gdbarch);
1290 memset (gdbarch, 0, sizeof (*gdbarch));
1291
b3cc3077
JB
1292 alloc_gdbarch_data (gdbarch);
1293
104c1213
JM
1294 gdbarch->tdep = tdep;
1295EOF
3d9a5942 1296printf "\n"
34620563 1297function_list | while do_read
104c1213 1298do
2ada493a
AC
1299 if class_is_info_p
1300 then
3d9a5942 1301 printf " gdbarch->${function} = info->${function};\n"
2ada493a 1302 fi
104c1213 1303done
3d9a5942
AC
1304printf "\n"
1305printf " /* Force the explicit initialization of these. */\n"
34620563 1306function_list | while do_read
104c1213 1307do
2ada493a
AC
1308 if class_is_function_p || class_is_variable_p
1309 then
72e74a21 1310 if [ -n "${predefault}" -a "x${predefault}" != "x0" ]
104c1213 1311 then
3d9a5942 1312 printf " gdbarch->${function} = ${predefault};\n"
104c1213 1313 fi
2ada493a 1314 fi
104c1213
JM
1315done
1316cat <<EOF
1317 /* gdbarch_alloc() */
1318
1319 return gdbarch;
1320}
1321EOF
1322
058f20d5 1323# Free a gdbarch struct.
3d9a5942
AC
1324printf "\n"
1325printf "\n"
058f20d5
JB
1326cat <<EOF
1327/* Free a gdbarch struct. This should never happen in normal
1328 operation --- once you've created a gdbarch, you keep it around.
1329 However, if an architecture's init function encounters an error
1330 building the structure, it may need to clean up a partially
1331 constructed gdbarch. */
4b9b3959 1332
058f20d5
JB
1333void
1334gdbarch_free (struct gdbarch *arch)
1335{
95160752
AC
1336 gdb_assert (arch != NULL);
1337 free_gdbarch_data (arch);
338d7c5c 1338 xfree (arch);
058f20d5
JB
1339}
1340EOF
1341
104c1213 1342# verify a new architecture
3d9a5942
AC
1343printf "\n"
1344printf "\n"
1345printf "/* Ensure that all values in a GDBARCH are reasonable. */\n"
1346printf "\n"
104c1213
JM
1347cat <<EOF
1348static void
1349verify_gdbarch (struct gdbarch *gdbarch)
1350{
1351 /* Only perform sanity checks on a multi-arch target. */
6166d547 1352 if (!GDB_MULTI_ARCH)
104c1213
JM
1353 return;
1354 /* fundamental */
1355 if (gdbarch->byte_order == 0)
8e65ff28
AC
1356 internal_error (__FILE__, __LINE__,
1357 "verify_gdbarch: byte-order unset");
104c1213 1358 if (gdbarch->bfd_arch_info == NULL)
8e65ff28
AC
1359 internal_error (__FILE__, __LINE__,
1360 "verify_gdbarch: bfd_arch_info unset");
104c1213
JM
1361 /* Check those that need to be defined for the given multi-arch level. */
1362EOF
34620563 1363function_list | while do_read
104c1213 1364do
2ada493a
AC
1365 if class_is_function_p || class_is_variable_p
1366 then
72e74a21 1367 if [ "x${invalid_p}" = "x0" ]
c0e8c252 1368 then
3d9a5942 1369 printf " /* Skip verify of ${function}, invalid_p == 0 */\n"
2ada493a
AC
1370 elif class_is_predicate_p
1371 then
3d9a5942 1372 printf " /* Skip verify of ${function}, has predicate */\n"
f0d4cc9e 1373 # FIXME: See do_read for potential simplification
72e74a21 1374 elif [ -n "${invalid_p}" -a -n "${postdefault}" ]
f0d4cc9e 1375 then
3d9a5942
AC
1376 printf " if (${invalid_p})\n"
1377 printf " gdbarch->${function} = ${postdefault};\n"
72e74a21 1378 elif [ -n "${predefault}" -a -n "${postdefault}" ]
f0d4cc9e 1379 then
3d9a5942
AC
1380 printf " if (gdbarch->${function} == ${predefault})\n"
1381 printf " gdbarch->${function} = ${postdefault};\n"
72e74a21 1382 elif [ -n "${postdefault}" ]
f0d4cc9e 1383 then
3d9a5942
AC
1384 printf " if (gdbarch->${function} == 0)\n"
1385 printf " gdbarch->${function} = ${postdefault};\n"
72e74a21 1386 elif [ -n "${invalid_p}" ]
104c1213 1387 then
3d9a5942
AC
1388 printf " if ((GDB_MULTI_ARCH >= ${level})\n"
1389 printf " && (${invalid_p}))\n"
8e65ff28
AC
1390 printf " internal_error (__FILE__, __LINE__,\n"
1391 printf " \"gdbarch: verify_gdbarch: ${function} invalid\");\n"
72e74a21 1392 elif [ -n "${predefault}" ]
104c1213 1393 then
3d9a5942
AC
1394 printf " if ((GDB_MULTI_ARCH >= ${level})\n"
1395 printf " && (gdbarch->${function} == ${predefault}))\n"
8e65ff28
AC
1396 printf " internal_error (__FILE__, __LINE__,\n"
1397 printf " \"gdbarch: verify_gdbarch: ${function} invalid\");\n"
104c1213 1398 fi
2ada493a 1399 fi
104c1213
JM
1400done
1401cat <<EOF
1402}
1403EOF
1404
1405# dump the structure
3d9a5942
AC
1406printf "\n"
1407printf "\n"
104c1213 1408cat <<EOF
4b9b3959
AC
1409/* Print out the details of the current architecture. */
1410
1411/* NOTE/WARNING: The parameter is called \`\`current_gdbarch'' so that it
1412 just happens to match the global variable \`\`current_gdbarch''. That
1413 way macros refering to that variable get the local and not the global
1414 version - ulgh. Once everything is parameterised with gdbarch, this
1415 will go away. */
1416
104c1213 1417void
4b9b3959 1418gdbarch_dump (struct gdbarch *gdbarch, struct ui_file *file)
104c1213 1419{
4b9b3959
AC
1420 fprintf_unfiltered (file,
1421 "gdbarch_dump: GDB_MULTI_ARCH = %d\\n",
1422 GDB_MULTI_ARCH);
104c1213 1423EOF
4b9b3959 1424function_list | while do_read
104c1213 1425do
4a5c6a1d
AC
1426 # multiarch functions don't have macros.
1427 class_is_multiarch_p && continue
72e74a21 1428 if [ "x${returntype}" = "xvoid" ]
63e69063 1429 then
3d9a5942
AC
1430 printf "#if defined (${macro}) && GDB_MULTI_ARCH\n"
1431 printf " /* Macro might contain \`[{}]' when not multi-arch */\n"
63e69063 1432 else
3d9a5942 1433 printf "#ifdef ${macro}\n"
63e69063 1434 fi
2ada493a
AC
1435 if class_is_function_p
1436 then
3d9a5942
AC
1437 printf " fprintf_unfiltered (file,\n"
1438 printf " \"gdbarch_dump: %%s # %%s\\\\n\",\n"
1439 printf " \"${macro}(${actual})\",\n"
1440 printf " XSTRING (${macro} (${actual})));\n"
2ada493a 1441 else
3d9a5942
AC
1442 printf " fprintf_unfiltered (file,\n"
1443 printf " \"gdbarch_dump: ${macro} # %%s\\\\n\",\n"
1444 printf " XSTRING (${macro}));\n"
4b9b3959 1445 fi
3d9a5942 1446 printf "#endif\n"
4b9b3959
AC
1447done
1448function_list | while do_read
1449do
4a5c6a1d
AC
1450 if class_is_multiarch_p
1451 then
1452 printf " if (GDB_MULTI_ARCH)\n"
1453 printf " fprintf_unfiltered (file,\n"
1454 printf " \"gdbarch_dump: ${function} = 0x%%08lx\\\\n\",\n"
1455 printf " (long) current_gdbarch->${function});\n"
1456 continue
1457 fi
3d9a5942 1458 printf "#ifdef ${macro}\n"
72e74a21 1459 if [ "x${print_p}" = "x()" ]
4b9b3959 1460 then
4a5c6a1d 1461 printf " gdbarch_dump_${function} (current_gdbarch);\n"
72e74a21 1462 elif [ "x${print_p}" = "x0" ]
4b9b3959 1463 then
4a5c6a1d 1464 printf " /* skip print of ${macro}, print_p == 0. */\n"
72e74a21 1465 elif [ -n "${print_p}" ]
4b9b3959 1466 then
4a5c6a1d 1467 printf " if (${print_p})\n"
3d9a5942
AC
1468 printf " fprintf_unfiltered (file,\n"
1469 printf " \"gdbarch_dump: ${macro} = %s\\\\n\",\n" "${fmt}"
1470 printf " ${print});\n"
4b9b3959
AC
1471 elif class_is_function_p
1472 then
3d9a5942
AC
1473 printf " if (GDB_MULTI_ARCH)\n"
1474 printf " fprintf_unfiltered (file,\n"
1475 printf " \"gdbarch_dump: ${macro} = 0x%%08lx\\\\n\",\n"
1476 printf " (long) current_gdbarch->${function}\n"
1477 printf " /*${macro} ()*/);\n"
4b9b3959 1478 else
3d9a5942
AC
1479 printf " fprintf_unfiltered (file,\n"
1480 printf " \"gdbarch_dump: ${macro} = %s\\\\n\",\n" "${fmt}"
1481 printf " ${print});\n"
2ada493a 1482 fi
3d9a5942 1483 printf "#endif\n"
104c1213 1484done
381323f4 1485cat <<EOF
4b9b3959
AC
1486 if (current_gdbarch->dump_tdep != NULL)
1487 current_gdbarch->dump_tdep (current_gdbarch, file);
381323f4
AC
1488}
1489EOF
104c1213
JM
1490
1491
1492# GET/SET
3d9a5942 1493printf "\n"
104c1213
JM
1494cat <<EOF
1495struct gdbarch_tdep *
1496gdbarch_tdep (struct gdbarch *gdbarch)
1497{
1498 if (gdbarch_debug >= 2)
3d9a5942 1499 fprintf_unfiltered (gdb_stdlog, "gdbarch_tdep called\\n");
104c1213
JM
1500 return gdbarch->tdep;
1501}
1502EOF
3d9a5942 1503printf "\n"
34620563 1504function_list | while do_read
104c1213 1505do
2ada493a
AC
1506 if class_is_predicate_p
1507 then
3d9a5942
AC
1508 printf "\n"
1509 printf "int\n"
1510 printf "gdbarch_${function}_p (struct gdbarch *gdbarch)\n"
1511 printf "{\n"
72e74a21 1512 if [ -n "${valid_p}" ]
2ada493a 1513 then
3d9a5942 1514 printf " return ${valid_p};\n"
2ada493a 1515 else
3d9a5942 1516 printf "#error \"gdbarch_${function}_p: not defined\"\n"
2ada493a 1517 fi
3d9a5942 1518 printf "}\n"
2ada493a
AC
1519 fi
1520 if class_is_function_p
1521 then
3d9a5942
AC
1522 printf "\n"
1523 printf "${returntype}\n"
72e74a21 1524 if [ "x${formal}" = "xvoid" ]
104c1213 1525 then
3d9a5942 1526 printf "gdbarch_${function} (struct gdbarch *gdbarch)\n"
104c1213 1527 else
3d9a5942 1528 printf "gdbarch_${function} (struct gdbarch *gdbarch, ${formal})\n"
104c1213 1529 fi
3d9a5942
AC
1530 printf "{\n"
1531 printf " if (gdbarch->${function} == 0)\n"
8e65ff28
AC
1532 printf " internal_error (__FILE__, __LINE__,\n"
1533 printf " \"gdbarch: gdbarch_${function} invalid\");\n"
3d9a5942
AC
1534 printf " if (gdbarch_debug >= 2)\n"
1535 printf " fprintf_unfiltered (gdb_stdlog, \"gdbarch_${function} called\\\\n\");\n"
72e74a21 1536 if [ "x${actual}" = "x-" -o "x${actual}" = "x" ]
4a5c6a1d
AC
1537 then
1538 if class_is_multiarch_p
1539 then
1540 params="gdbarch"
1541 else
1542 params=""
1543 fi
1544 else
1545 if class_is_multiarch_p
1546 then
1547 params="gdbarch, ${actual}"
1548 else
1549 params="${actual}"
1550 fi
1551 fi
72e74a21 1552 if [ "x${returntype}" = "xvoid" ]
104c1213 1553 then
4a5c6a1d 1554 printf " gdbarch->${function} (${params});\n"
104c1213 1555 else
4a5c6a1d 1556 printf " return gdbarch->${function} (${params});\n"
104c1213 1557 fi
3d9a5942
AC
1558 printf "}\n"
1559 printf "\n"
1560 printf "void\n"
1561 printf "set_gdbarch_${function} (struct gdbarch *gdbarch,\n"
1562 printf " `echo ${function} | sed -e 's/./ /g'` gdbarch_${function}_ftype ${function})\n"
1563 printf "{\n"
1564 printf " gdbarch->${function} = ${function};\n"
1565 printf "}\n"
2ada493a
AC
1566 elif class_is_variable_p
1567 then
3d9a5942
AC
1568 printf "\n"
1569 printf "${returntype}\n"
1570 printf "gdbarch_${function} (struct gdbarch *gdbarch)\n"
1571 printf "{\n"
72e74a21 1572 if [ "x${invalid_p}" = "x0" ]
c0e8c252 1573 then
3d9a5942 1574 printf " /* Skip verify of ${function}, invalid_p == 0 */\n"
72e74a21 1575 elif [ -n "${invalid_p}" ]
104c1213 1576 then
3d9a5942 1577 printf " if (${invalid_p})\n"
8e65ff28
AC
1578 printf " internal_error (__FILE__, __LINE__,\n"
1579 printf " \"gdbarch: gdbarch_${function} invalid\");\n"
72e74a21 1580 elif [ -n "${predefault}" ]
104c1213 1581 then
3d9a5942 1582 printf " if (gdbarch->${function} == ${predefault})\n"
8e65ff28
AC
1583 printf " internal_error (__FILE__, __LINE__,\n"
1584 printf " \"gdbarch: gdbarch_${function} invalid\");\n"
104c1213 1585 fi
3d9a5942
AC
1586 printf " if (gdbarch_debug >= 2)\n"
1587 printf " fprintf_unfiltered (gdb_stdlog, \"gdbarch_${function} called\\\\n\");\n"
1588 printf " return gdbarch->${function};\n"
1589 printf "}\n"
1590 printf "\n"
1591 printf "void\n"
1592 printf "set_gdbarch_${function} (struct gdbarch *gdbarch,\n"
1593 printf " `echo ${function} | sed -e 's/./ /g'` ${returntype} ${function})\n"
1594 printf "{\n"
1595 printf " gdbarch->${function} = ${function};\n"
1596 printf "}\n"
2ada493a
AC
1597 elif class_is_info_p
1598 then
3d9a5942
AC
1599 printf "\n"
1600 printf "${returntype}\n"
1601 printf "gdbarch_${function} (struct gdbarch *gdbarch)\n"
1602 printf "{\n"
1603 printf " if (gdbarch_debug >= 2)\n"
1604 printf " fprintf_unfiltered (gdb_stdlog, \"gdbarch_${function} called\\\\n\");\n"
1605 printf " return gdbarch->${function};\n"
1606 printf "}\n"
2ada493a 1607 fi
104c1213
JM
1608done
1609
1610# All the trailing guff
1611cat <<EOF
1612
1613
f44c642f 1614/* Keep a registry of per-architecture data-pointers required by GDB
104c1213
JM
1615 modules. */
1616
1617struct gdbarch_data
1618{
95160752
AC
1619 unsigned index;
1620 gdbarch_data_init_ftype *init;
1621 gdbarch_data_free_ftype *free;
104c1213
JM
1622};
1623
1624struct gdbarch_data_registration
1625{
104c1213
JM
1626 struct gdbarch_data *data;
1627 struct gdbarch_data_registration *next;
1628};
1629
f44c642f 1630struct gdbarch_data_registry
104c1213 1631{
95160752 1632 unsigned nr;
104c1213
JM
1633 struct gdbarch_data_registration *registrations;
1634};
1635
f44c642f 1636struct gdbarch_data_registry gdbarch_data_registry =
104c1213
JM
1637{
1638 0, NULL,
1639};
1640
1641struct gdbarch_data *
95160752
AC
1642register_gdbarch_data (gdbarch_data_init_ftype *init,
1643 gdbarch_data_free_ftype *free)
104c1213
JM
1644{
1645 struct gdbarch_data_registration **curr;
f44c642f 1646 for (curr = &gdbarch_data_registry.registrations;
104c1213
JM
1647 (*curr) != NULL;
1648 curr = &(*curr)->next);
1649 (*curr) = XMALLOC (struct gdbarch_data_registration);
1650 (*curr)->next = NULL;
104c1213 1651 (*curr)->data = XMALLOC (struct gdbarch_data);
f44c642f 1652 (*curr)->data->index = gdbarch_data_registry.nr++;
95160752
AC
1653 (*curr)->data->init = init;
1654 (*curr)->data->free = free;
104c1213
JM
1655 return (*curr)->data;
1656}
1657
1658
b3cc3077 1659/* Walk through all the registered users initializing each in turn. */
104c1213
JM
1660
1661static void
b3cc3077 1662init_gdbarch_data (struct gdbarch *gdbarch)
104c1213 1663{
b3cc3077
JB
1664 struct gdbarch_data_registration *rego;
1665 for (rego = gdbarch_data_registry.registrations;
1666 rego != NULL;
1667 rego = rego->next)
104c1213 1668 {
b3cc3077
JB
1669 struct gdbarch_data *data = rego->data;
1670 gdb_assert (data->index < gdbarch->nr_data);
1671 if (data->init != NULL)
95160752 1672 {
b3cc3077
JB
1673 void *pointer = data->init (gdbarch);
1674 set_gdbarch_data (gdbarch, data, pointer);
95160752
AC
1675 }
1676 }
1677}
1678
b3cc3077 1679/* Create/delete the gdbarch data vector. */
95160752
AC
1680
1681static void
b3cc3077 1682alloc_gdbarch_data (struct gdbarch *gdbarch)
95160752 1683{
b3cc3077
JB
1684 gdb_assert (gdbarch->data == NULL);
1685 gdbarch->nr_data = gdbarch_data_registry.nr;
1686 gdbarch->data = xcalloc (gdbarch->nr_data, sizeof (void*));
1687}
3c875b6f 1688
b3cc3077
JB
1689static void
1690free_gdbarch_data (struct gdbarch *gdbarch)
1691{
1692 struct gdbarch_data_registration *rego;
1693 gdb_assert (gdbarch->data != NULL);
1694 for (rego = gdbarch_data_registry.registrations;
1695 rego != NULL;
1696 rego = rego->next)
95160752 1697 {
b3cc3077
JB
1698 struct gdbarch_data *data = rego->data;
1699 gdb_assert (data->index < gdbarch->nr_data);
1700 if (data->free != NULL && gdbarch->data[data->index] != NULL)
95160752 1701 {
b3cc3077
JB
1702 data->free (gdbarch, gdbarch->data[data->index]);
1703 gdbarch->data[data->index] = NULL;
95160752 1704 }
104c1213 1705 }
b3cc3077
JB
1706 xfree (gdbarch->data);
1707 gdbarch->data = NULL;
104c1213
JM
1708}
1709
1710
b3cc3077
JB
1711/* Initialize the current value of thee specified per-architecture
1712 data-pointer. */
1713
95160752
AC
1714void
1715set_gdbarch_data (struct gdbarch *gdbarch,
1716 struct gdbarch_data *data,
1717 void *pointer)
1718{
1719 gdb_assert (data->index < gdbarch->nr_data);
1720 if (data->free != NULL && gdbarch->data[data->index] != NULL)
1721 data->free (gdbarch, gdbarch->data[data->index]);
1722 gdbarch->data[data->index] = pointer;
1723}
1724
104c1213
JM
1725/* Return the current value of the specified per-architecture
1726 data-pointer. */
1727
1728void *
34620563 1729gdbarch_data (struct gdbarch_data *data)
104c1213 1730{
95160752 1731 gdb_assert (data->index < current_gdbarch->nr_data);
104c1213
JM
1732 return current_gdbarch->data[data->index];
1733}
1734
1735
1736
f44c642f 1737/* Keep a registry of swapped data required by GDB modules. */
104c1213
JM
1738
1739struct gdbarch_swap
1740{
1741 void *swap;
1742 struct gdbarch_swap_registration *source;
1743 struct gdbarch_swap *next;
1744};
1745
1746struct gdbarch_swap_registration
1747{
1748 void *data;
1749 unsigned long sizeof_data;
1750 gdbarch_swap_ftype *init;
1751 struct gdbarch_swap_registration *next;
1752};
1753
f44c642f 1754struct gdbarch_swap_registry
104c1213
JM
1755{
1756 int nr;
1757 struct gdbarch_swap_registration *registrations;
1758};
1759
f44c642f 1760struct gdbarch_swap_registry gdbarch_swap_registry =
104c1213
JM
1761{
1762 0, NULL,
1763};
1764
1765void
1766register_gdbarch_swap (void *data,
1767 unsigned long sizeof_data,
1768 gdbarch_swap_ftype *init)
1769{
1770 struct gdbarch_swap_registration **rego;
f44c642f 1771 for (rego = &gdbarch_swap_registry.registrations;
104c1213
JM
1772 (*rego) != NULL;
1773 rego = &(*rego)->next);
1774 (*rego) = XMALLOC (struct gdbarch_swap_registration);
1775 (*rego)->next = NULL;
1776 (*rego)->init = init;
1777 (*rego)->data = data;
1778 (*rego)->sizeof_data = sizeof_data;
1779}
1780
1781
1782static void
1783init_gdbarch_swap (struct gdbarch *gdbarch)
1784{
1785 struct gdbarch_swap_registration *rego;
1786 struct gdbarch_swap **curr = &gdbarch->swap;
f44c642f 1787 for (rego = gdbarch_swap_registry.registrations;
104c1213
JM
1788 rego != NULL;
1789 rego = rego->next)
1790 {
1791 if (rego->data != NULL)
1792 {
1793 (*curr) = XMALLOC (struct gdbarch_swap);
1794 (*curr)->source = rego;
1795 (*curr)->swap = xmalloc (rego->sizeof_data);
1796 (*curr)->next = NULL;
1797 memset (rego->data, 0, rego->sizeof_data);
1798 curr = &(*curr)->next;
1799 }
1800 if (rego->init != NULL)
1801 rego->init ();
1802 }
1803}
1804
1805static void
1806swapout_gdbarch_swap (struct gdbarch *gdbarch)
1807{
1808 struct gdbarch_swap *curr;
1809 for (curr = gdbarch->swap;
1810 curr != NULL;
1811 curr = curr->next)
1812 memcpy (curr->swap, curr->source->data, curr->source->sizeof_data);
1813}
1814
1815static void
1816swapin_gdbarch_swap (struct gdbarch *gdbarch)
1817{
1818 struct gdbarch_swap *curr;
1819 for (curr = gdbarch->swap;
1820 curr != NULL;
1821 curr = curr->next)
1822 memcpy (curr->source->data, curr->swap, curr->source->sizeof_data);
1823}
1824
1825
f44c642f 1826/* Keep a registry of the architectures known by GDB. */
104c1213 1827
4b9b3959 1828struct gdbarch_registration
104c1213
JM
1829{
1830 enum bfd_architecture bfd_architecture;
1831 gdbarch_init_ftype *init;
4b9b3959 1832 gdbarch_dump_tdep_ftype *dump_tdep;
104c1213 1833 struct gdbarch_list *arches;
4b9b3959 1834 struct gdbarch_registration *next;
104c1213
JM
1835};
1836
f44c642f 1837static struct gdbarch_registration *gdbarch_registry = NULL;
104c1213 1838
b4a20239
AC
1839static void
1840append_name (const char ***buf, int *nr, const char *name)
1841{
1842 *buf = xrealloc (*buf, sizeof (char**) * (*nr + 1));
1843 (*buf)[*nr] = name;
1844 *nr += 1;
1845}
1846
1847const char **
1848gdbarch_printable_names (void)
1849{
1850 if (GDB_MULTI_ARCH)
1851 {
1852 /* Accumulate a list of names based on the registed list of
1853 architectures. */
1854 enum bfd_architecture a;
1855 int nr_arches = 0;
1856 const char **arches = NULL;
4b9b3959 1857 struct gdbarch_registration *rego;
f44c642f 1858 for (rego = gdbarch_registry;
b4a20239
AC
1859 rego != NULL;
1860 rego = rego->next)
1861 {
1862 const struct bfd_arch_info *ap;
1863 ap = bfd_lookup_arch (rego->bfd_architecture, 0);
1864 if (ap == NULL)
8e65ff28
AC
1865 internal_error (__FILE__, __LINE__,
1866 "gdbarch_architecture_names: multi-arch unknown");
b4a20239
AC
1867 do
1868 {
1869 append_name (&arches, &nr_arches, ap->printable_name);
1870 ap = ap->next;
1871 }
1872 while (ap != NULL);
1873 }
1874 append_name (&arches, &nr_arches, NULL);
1875 return arches;
1876 }
1877 else
1878 /* Just return all the architectures that BFD knows. Assume that
1879 the legacy architecture framework supports them. */
1880 return bfd_arch_list ();
1881}
1882
1883
104c1213 1884void
4b9b3959
AC
1885gdbarch_register (enum bfd_architecture bfd_architecture,
1886 gdbarch_init_ftype *init,
1887 gdbarch_dump_tdep_ftype *dump_tdep)
104c1213 1888{
4b9b3959 1889 struct gdbarch_registration **curr;
104c1213 1890 const struct bfd_arch_info *bfd_arch_info;
ec3d358c 1891 /* Check that BFD recognizes this architecture */
104c1213
JM
1892 bfd_arch_info = bfd_lookup_arch (bfd_architecture, 0);
1893 if (bfd_arch_info == NULL)
1894 {
8e65ff28
AC
1895 internal_error (__FILE__, __LINE__,
1896 "gdbarch: Attempt to register unknown architecture (%d)",
1897 bfd_architecture);
104c1213
JM
1898 }
1899 /* Check that we haven't seen this architecture before */
f44c642f 1900 for (curr = &gdbarch_registry;
104c1213
JM
1901 (*curr) != NULL;
1902 curr = &(*curr)->next)
1903 {
1904 if (bfd_architecture == (*curr)->bfd_architecture)
8e65ff28
AC
1905 internal_error (__FILE__, __LINE__,
1906 "gdbarch: Duplicate registraration of architecture (%s)",
1907 bfd_arch_info->printable_name);
104c1213
JM
1908 }
1909 /* log it */
1910 if (gdbarch_debug)
1911 fprintf_unfiltered (gdb_stdlog, "register_gdbarch_init (%s, 0x%08lx)\n",
1912 bfd_arch_info->printable_name,
1913 (long) init);
1914 /* Append it */
4b9b3959 1915 (*curr) = XMALLOC (struct gdbarch_registration);
104c1213
JM
1916 (*curr)->bfd_architecture = bfd_architecture;
1917 (*curr)->init = init;
4b9b3959 1918 (*curr)->dump_tdep = dump_tdep;
104c1213
JM
1919 (*curr)->arches = NULL;
1920 (*curr)->next = NULL;
8e1a459b
C
1921 /* When non- multi-arch, install whatever target dump routine we've
1922 been provided - hopefully that routine has been written correctly
4b9b3959
AC
1923 and works regardless of multi-arch. */
1924 if (!GDB_MULTI_ARCH && dump_tdep != NULL
1925 && startup_gdbarch.dump_tdep == NULL)
1926 startup_gdbarch.dump_tdep = dump_tdep;
1927}
1928
1929void
1930register_gdbarch_init (enum bfd_architecture bfd_architecture,
1931 gdbarch_init_ftype *init)
1932{
1933 gdbarch_register (bfd_architecture, init, NULL);
104c1213 1934}
104c1213
JM
1935
1936
1937/* Look for an architecture using gdbarch_info. Base search on only
1938 BFD_ARCH_INFO and BYTE_ORDER. */
1939
1940struct gdbarch_list *
1941gdbarch_list_lookup_by_info (struct gdbarch_list *arches,
1942 const struct gdbarch_info *info)
1943{
1944 for (; arches != NULL; arches = arches->next)
1945 {
1946 if (info->bfd_arch_info != arches->gdbarch->bfd_arch_info)
1947 continue;
1948 if (info->byte_order != arches->gdbarch->byte_order)
1949 continue;
1950 return arches;
1951 }
1952 return NULL;
1953}
1954
1955
1956/* Update the current architecture. Return ZERO if the update request
1957 failed. */
1958
1959int
16f33e29 1960gdbarch_update_p (struct gdbarch_info info)
104c1213
JM
1961{
1962 struct gdbarch *new_gdbarch;
1963 struct gdbarch_list **list;
4b9b3959 1964 struct gdbarch_registration *rego;
104c1213 1965
b732d07d
AC
1966 /* Fill in missing parts of the INFO struct using a number of
1967 sources: \`\`set ...''; INFOabfd supplied; existing target. */
1968
1969 /* \`\`(gdb) set architecture ...'' */
1970 if (info.bfd_arch_info == NULL
1971 && !TARGET_ARCHITECTURE_AUTO)
1972 info.bfd_arch_info = TARGET_ARCHITECTURE;
1973 if (info.bfd_arch_info == NULL
1974 && info.abfd != NULL
1975 && bfd_get_arch (info.abfd) != bfd_arch_unknown
1976 && bfd_get_arch (info.abfd) != bfd_arch_obscure)
1977 info.bfd_arch_info = bfd_get_arch_info (info.abfd);
104c1213 1978 if (info.bfd_arch_info == NULL)
b732d07d
AC
1979 info.bfd_arch_info = TARGET_ARCHITECTURE;
1980
1981 /* \`\`(gdb) set byte-order ...'' */
1982 if (info.byte_order == 0
1983 && !TARGET_BYTE_ORDER_AUTO)
1984 info.byte_order = TARGET_BYTE_ORDER;
1985 /* From the INFO struct. */
1986 if (info.byte_order == 0
1987 && info.abfd != NULL)
1988 info.byte_order = (bfd_big_endian (info.abfd) ? BIG_ENDIAN
1989 : bfd_little_endian (info.abfd) ? LITTLE_ENDIAN
1990 : 0);
1991 /* From the current target. */
104c1213 1992 if (info.byte_order == 0)
b732d07d 1993 info.byte_order = TARGET_BYTE_ORDER;
104c1213 1994
b732d07d
AC
1995 /* Must have found some sort of architecture. */
1996 gdb_assert (info.bfd_arch_info != NULL);
104c1213
JM
1997
1998 if (gdbarch_debug)
1999 {
2000 fprintf_unfiltered (gdb_stdlog,
b732d07d 2001 "gdbarch_update: info.bfd_arch_info %s\n",
104c1213
JM
2002 (info.bfd_arch_info != NULL
2003 ? info.bfd_arch_info->printable_name
2004 : "(null)"));
2005 fprintf_unfiltered (gdb_stdlog,
b732d07d 2006 "gdbarch_update: info.byte_order %d (%s)\n",
104c1213
JM
2007 info.byte_order,
2008 (info.byte_order == BIG_ENDIAN ? "big"
2009 : info.byte_order == LITTLE_ENDIAN ? "little"
2010 : "default"));
2011 fprintf_unfiltered (gdb_stdlog,
b732d07d 2012 "gdbarch_update: info.abfd 0x%lx\n",
104c1213
JM
2013 (long) info.abfd);
2014 fprintf_unfiltered (gdb_stdlog,
b732d07d 2015 "gdbarch_update: info.tdep_info 0x%lx\n",
104c1213
JM
2016 (long) info.tdep_info);
2017 }
2018
b732d07d
AC
2019 /* Find the target that knows about this architecture. */
2020 for (rego = gdbarch_registry;
2021 rego != NULL;
2022 rego = rego->next)
2023 if (rego->bfd_architecture == info.bfd_arch_info->arch)
2024 break;
2025 if (rego == NULL)
2026 {
2027 if (gdbarch_debug)
2028 fprintf_unfiltered (gdb_stdlog, "gdbarch_update: No matching architecture\\n");
2029 return 0;
2030 }
2031
104c1213
JM
2032 /* Ask the target for a replacement architecture. */
2033 new_gdbarch = rego->init (info, rego->arches);
2034
2035 /* Did the target like it? No. Reject the change. */
2036 if (new_gdbarch == NULL)
2037 {
2038 if (gdbarch_debug)
3d9a5942 2039 fprintf_unfiltered (gdb_stdlog, "gdbarch_update: Target rejected architecture\\n");
104c1213
JM
2040 return 0;
2041 }
2042
2043 /* Did the architecture change? No. Do nothing. */
2044 if (current_gdbarch == new_gdbarch)
2045 {
2046 if (gdbarch_debug)
3d9a5942 2047 fprintf_unfiltered (gdb_stdlog, "gdbarch_update: Architecture 0x%08lx (%s) unchanged\\n",
104c1213
JM
2048 (long) new_gdbarch,
2049 new_gdbarch->bfd_arch_info->printable_name);
2050 return 1;
2051 }
2052
2053 /* Swap all data belonging to the old target out */
2054 swapout_gdbarch_swap (current_gdbarch);
2055
2056 /* Is this a pre-existing architecture? Yes. Swap it in. */
2057 for (list = &rego->arches;
2058 (*list) != NULL;
2059 list = &(*list)->next)
2060 {
2061 if ((*list)->gdbarch == new_gdbarch)
2062 {
2063 if (gdbarch_debug)
4b9b3959 2064 fprintf_unfiltered (gdb_stdlog,
3d9a5942 2065 "gdbarch_update: Previous architecture 0x%08lx (%s) selected\\n",
104c1213
JM
2066 (long) new_gdbarch,
2067 new_gdbarch->bfd_arch_info->printable_name);
2068 current_gdbarch = new_gdbarch;
2069 swapin_gdbarch_swap (new_gdbarch);
67c2c32c 2070 architecture_changed_event ();
104c1213
JM
2071 return 1;
2072 }
2073 }
4b9b3959 2074
104c1213
JM
2075 /* Append this new architecture to this targets list. */
2076 (*list) = XMALLOC (struct gdbarch_list);
2077 (*list)->next = NULL;
2078 (*list)->gdbarch = new_gdbarch;
2079
2080 /* Switch to this new architecture. Dump it out. */
2081 current_gdbarch = new_gdbarch;
2082 if (gdbarch_debug)
2083 {
2084 fprintf_unfiltered (gdb_stdlog,
3d9a5942 2085 "gdbarch_update: New architecture 0x%08lx (%s) selected\\n",
104c1213
JM
2086 (long) new_gdbarch,
2087 new_gdbarch->bfd_arch_info->printable_name);
104c1213
JM
2088 }
2089
4b9b3959
AC
2090 /* Check that the newly installed architecture is valid. Plug in
2091 any post init values. */
2092 new_gdbarch->dump_tdep = rego->dump_tdep;
104c1213
JM
2093 verify_gdbarch (new_gdbarch);
2094
2095 /* Initialize the per-architecture memory (swap) areas.
2096 CURRENT_GDBARCH must be update before these modules are
2097 called. */
2098 init_gdbarch_swap (new_gdbarch);
2099
b3cc3077
JB
2100 /* Initialize the per-architecture data-pointer of all parties that
2101 registered an interest in this architecture. CURRENT_GDBARCH
2102 must be updated before these modules are called. */
2103 init_gdbarch_data (new_gdbarch);
67c2c32c
KS
2104 architecture_changed_event ();
2105
4b9b3959
AC
2106 if (gdbarch_debug)
2107 gdbarch_dump (current_gdbarch, gdb_stdlog);
2108
104c1213
JM
2109 return 1;
2110}
2111
2112
104c1213
JM
2113/* Disassembler */
2114
2115/* Pointer to the target-dependent disassembly function. */
2116int (*tm_print_insn) (bfd_vma, disassemble_info *);
2117disassemble_info tm_print_insn_info;
2118
2119
104c1213 2120extern void _initialize_gdbarch (void);
b4a20239 2121
104c1213 2122void
34620563 2123_initialize_gdbarch (void)
104c1213 2124{
59233f88
AC
2125 struct cmd_list_element *c;
2126
104c1213
JM
2127 INIT_DISASSEMBLE_INFO_NO_ARCH (tm_print_insn_info, gdb_stdout, (fprintf_ftype)fprintf_filtered);
2128 tm_print_insn_info.flavour = bfd_target_unknown_flavour;
2129 tm_print_insn_info.read_memory_func = dis_asm_read_memory;
2130 tm_print_insn_info.memory_error_func = dis_asm_memory_error;
2131 tm_print_insn_info.print_address_func = dis_asm_print_address;
2132
59233f88 2133 add_show_from_set (add_set_cmd ("arch",
104c1213
JM
2134 class_maintenance,
2135 var_zinteger,
2136 (char *)&gdbarch_debug,
3d9a5942 2137 "Set architecture debugging.\\n\\
59233f88
AC
2138When non-zero, architecture debugging is enabled.", &setdebuglist),
2139 &showdebuglist);
2140 c = add_set_cmd ("archdebug",
2141 class_maintenance,
2142 var_zinteger,
2143 (char *)&gdbarch_debug,
3d9a5942 2144 "Set architecture debugging.\\n\\
59233f88
AC
2145When non-zero, architecture debugging is enabled.", &setlist);
2146
2147 deprecate_cmd (c, "set debug arch");
2148 deprecate_cmd (add_show_from_set (c, &showlist), "show debug arch");
104c1213
JM
2149}
2150EOF
2151
2152# close things off
2153exec 1>&2
2154#../move-if-change new-gdbarch.c gdbarch.c
59233f88 2155compare_new gdbarch.c
This page took 0.547033 seconds and 4 git commands to generate.