0d5cff5020
and fields.name members from char * to const char *. All uses updated. (struct cplus_struct_type): Change type of fn_fieldlists.name member from char * to const char *. All uses updated. (type_name_no_tag): Update. (lookup_unsigned_typename, lookup_signed_typename): Update. * gdbtypes.c (type_name_no_tag): Change result type from char * to const char *. All callers updated. (lookup_unsigned_typename, lookup_signed_typename): Change type of name parameter from char * to const char *. * symtab.h (struct cplus_specific): Change type of demangled_name member from char * to const char *. All uses updated. (struct general_symbol_info): Change type of name and mangled_lang.demangled_name members from char * to const char *. All uses updated. (symbol_get_demangled_name, symbol_natural_name): Update. (symbol_demangled_name, symbol_search_name): Update. * symtab.c (symbol_get_demangled_name): Change result type from char * to const char *. All callers updated. (symbol_natural_name, symbol_demangled_name): Ditto. (symbol_search_name): Ditto. (completion_list_add_name): Change type of symname,sym_text, text,word parameters from char * to const char *. (completion_list_objc_symbol): Change type of sym_text, text,word parameters from char * to const char *. * ada-lang.c (find_struct_field): Change type of name parameter from char * to const char *. (encoded_ordered_before): Similarly for N0,N1 parameters. (old_renaming_is_invisible): Similarly for function_name parameter. (ada_type_name): Change result type from char * to const char *. All callers updated. * ada-lang.h (ada_type_name): Update. * buildsym.c (hashname): Change type of name parameter from char * to const char *. * buildsym.h (hashname): Update. * dbxread.c (end_psymtab): Change type of include_list parameter from char ** to const char **. * dwarf2read.c (determine_prefix): Change result type from char * to const char *. All callers updated. * f-lang.c (find_common_for_function): Change type of name, funcname parameters from char * to const char *. * f-lang.c (find_common_for_function): Update. * f-valprint.c (list_all_visible_commons): Change type of funcname parameters from char * to const char *. * gdbarch.sh (static_transform_name): Change type of name parameter and result from char * to const char *. * gdbarch.c: Regenerate. * gdbarch.h: Regenerate. * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type of name parameter from char * to const char *. * jv-lang.c (java_primitive_type_from_name): Ditto. (java_demangled_signature_length): Similarly for signature parameter. (java_demangled_signature_copy): Ditto. (java_demangle_type_signature): Ditto. * jv-lang.h (java_primitive_type_from_name): Update. (java_demangle_type_signature): Update. * objc-lang.c (specialcmp): Change type of a,b parameters from char * to const char *. * p-lang.c (is_pascal_string_type): Change type of arrayname parameter from char * to const char *. All callers updated. * p-lang.h (is_pascal_string_type): Update. * solib-frv.c (find_canonical_descriptor_in_load_object): Change type of name parameter from char * to const char *. * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto. * utils.c (fprintf_symbol_filtered): Ditto. * defs.h (fprintf_symbol_filtered): Update. * sparc-tdep.h (sparc_sol2_static_transform_name): Update. * stabsread.h (end_psymtab): Update. * stack.c (find_frame_funname): Change type of funname parameter from char ** to const char **. * stack.h (find_frame_funname): Update. * typeprint.c (type_print): Change type of varstring parameter from char * to const char *. * value.h (type_print): Update. * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter from char * to const char *. All callers updated. (xcoff_end_psymtab): Change type of include_list parameter from char ** to const char **. All callers updated. (swap_sym): Similarly for name parameter. All callers updated. * coffread.c (patch_type): Add (char*) cast to xfree parameter. Use xstrdup. (process_coff_symbol): Use xstrdup. * stabsread.c (stabs_method_name_from_physname): Renamed from update_method_name_from_physname. Change result type from void to char *. All callers updated. (read_member_functions): In has_destructor case, store name in objfile obstack instead of malloc space. In !has_stub case, fix mem leak.
242 lines
6.7 KiB
C
242 lines
6.7 KiB
C
/* Target-dependent code for SPARC.
|
||
|
||
Copyright (C) 2003-2004, 2006-2012 Free Software Foundation, Inc.
|
||
|
||
This file is part of GDB.
|
||
|
||
This program is free software; you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation; either version 3 of the License, or
|
||
(at your option) any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||
|
||
#ifndef SPARC_TDEP_H
|
||
#define SPARC_TDEP_H 1
|
||
|
||
struct frame_info;
|
||
struct gdbarch;
|
||
struct regcache;
|
||
struct regset;
|
||
struct trad_frame_saved_reg;
|
||
|
||
/* Register offsets for the general-purpose register set. */
|
||
|
||
struct sparc_gregset
|
||
{
|
||
int r_psr_offset;
|
||
int r_pc_offset;
|
||
int r_npc_offset;
|
||
int r_y_offset;
|
||
int r_wim_offset;
|
||
int r_tbr_offset;
|
||
int r_g1_offset;
|
||
int r_l0_offset;
|
||
int r_y_size;
|
||
};
|
||
|
||
/* SPARC architecture-specific information. */
|
||
|
||
struct gdbarch_tdep
|
||
{
|
||
/* Register numbers for the PN and nPC registers. The definitions
|
||
for (64-bit) UltraSPARC differ from the (32-bit) SPARC
|
||
definitions. */
|
||
int pc_regnum;
|
||
int npc_regnum;
|
||
|
||
/* Register sets. */
|
||
struct regset *gregset;
|
||
size_t sizeof_gregset;
|
||
struct regset *fpregset;
|
||
size_t sizeof_fpregset;
|
||
|
||
/* Offset of saved PC in jmp_buf. */
|
||
int jb_pc_offset;
|
||
|
||
/* Size of an Procedure Linkage Table (PLT) entry, 0 if we shouldn't
|
||
treat the PLT special when doing prologue analysis. */
|
||
size_t plt_entry_size;
|
||
|
||
/* Alternative location for trap return. Used for single-stepping. */
|
||
CORE_ADDR (*step_trap) (struct frame_info *frame, unsigned long insn);
|
||
|
||
/* ISA-specific data types. */
|
||
struct type *sparc_psr_type;
|
||
struct type *sparc_fsr_type;
|
||
struct type *sparc64_pstate_type;
|
||
struct type *sparc64_fsr_type;
|
||
struct type *sparc64_fprs_type;
|
||
};
|
||
|
||
/* Register numbers of various important registers. */
|
||
|
||
enum sparc_regnum
|
||
{
|
||
SPARC_G0_REGNUM, /* %g0 */
|
||
SPARC_G1_REGNUM,
|
||
SPARC_G2_REGNUM,
|
||
SPARC_G3_REGNUM,
|
||
SPARC_G4_REGNUM,
|
||
SPARC_G5_REGNUM,
|
||
SPARC_G6_REGNUM,
|
||
SPARC_G7_REGNUM, /* %g7 */
|
||
SPARC_O0_REGNUM, /* %o0 */
|
||
SPARC_O1_REGNUM,
|
||
SPARC_O2_REGNUM,
|
||
SPARC_O3_REGNUM,
|
||
SPARC_O4_REGNUM,
|
||
SPARC_O5_REGNUM,
|
||
SPARC_SP_REGNUM, /* %sp (%o6) */
|
||
SPARC_O7_REGNUM, /* %o7 */
|
||
SPARC_L0_REGNUM, /* %l0 */
|
||
SPARC_L1_REGNUM,
|
||
SPARC_L2_REGNUM,
|
||
SPARC_L3_REGNUM,
|
||
SPARC_L4_REGNUM,
|
||
SPARC_L5_REGNUM,
|
||
SPARC_L6_REGNUM,
|
||
SPARC_L7_REGNUM, /* %l7 */
|
||
SPARC_I0_REGNUM, /* %i0 */
|
||
SPARC_I1_REGNUM,
|
||
SPARC_I2_REGNUM,
|
||
SPARC_I3_REGNUM,
|
||
SPARC_I4_REGNUM,
|
||
SPARC_I5_REGNUM,
|
||
SPARC_FP_REGNUM, /* %fp (%i6) */
|
||
SPARC_I7_REGNUM, /* %i7 */
|
||
SPARC_F0_REGNUM, /* %f0 */
|
||
SPARC_F1_REGNUM,
|
||
SPARC_F2_REGNUM,
|
||
SPARC_F3_REGNUM,
|
||
SPARC_F4_REGNUM,
|
||
SPARC_F5_REGNUM,
|
||
SPARC_F6_REGNUM,
|
||
SPARC_F7_REGNUM,
|
||
SPARC_F31_REGNUM /* %f31 */
|
||
= SPARC_F0_REGNUM + 31
|
||
};
|
||
|
||
enum sparc32_regnum
|
||
{
|
||
SPARC32_Y_REGNUM /* %y */
|
||
= SPARC_F31_REGNUM + 1,
|
||
SPARC32_PSR_REGNUM, /* %psr */
|
||
SPARC32_WIM_REGNUM, /* %wim */
|
||
SPARC32_TBR_REGNUM, /* %tbr */
|
||
SPARC32_PC_REGNUM, /* %pc */
|
||
SPARC32_NPC_REGNUM, /* %npc */
|
||
SPARC32_FSR_REGNUM, /* %fsr */
|
||
SPARC32_CSR_REGNUM, /* %csr */
|
||
|
||
/* Pseudo registers. */
|
||
SPARC32_D0_REGNUM, /* %d0 */
|
||
SPARC32_D30_REGNUM /* %d30 */
|
||
= SPARC32_D0_REGNUM + 15
|
||
};
|
||
|
||
|
||
struct sparc_frame_cache
|
||
{
|
||
/* Base address. */
|
||
CORE_ADDR base;
|
||
CORE_ADDR pc;
|
||
|
||
/* Do we have a frame? */
|
||
int frameless_p;
|
||
|
||
/* The offset from the base register to the CFA. */
|
||
int frame_offset;
|
||
|
||
/* Mask of `local' and `in' registers saved in the register save area. */
|
||
unsigned short int saved_regs_mask;
|
||
|
||
/* Mask of `out' registers copied or renamed to their `in' sibling. */
|
||
unsigned char copied_regs_mask;
|
||
|
||
/* Do we have a Structure, Union or Quad-Precision return value? */
|
||
int struct_return_p;
|
||
|
||
/* Table of saved registers. */
|
||
struct trad_frame_saved_reg *saved_regs;
|
||
};
|
||
|
||
/* Fetch the instruction at PC. */
|
||
extern unsigned long sparc_fetch_instruction (CORE_ADDR pc);
|
||
|
||
/* Fetch StackGhost Per-Process XOR cookie. */
|
||
extern ULONGEST sparc_fetch_wcookie (struct gdbarch *gdbarch);
|
||
|
||
/* Record the effect of a SAVE instruction on CACHE. */
|
||
extern void sparc_record_save_insn (struct sparc_frame_cache *cache);
|
||
|
||
/* Do a full analysis of the prologue at PC and update CACHE accordingly. */
|
||
extern CORE_ADDR sparc_analyze_prologue (struct gdbarch *gdbarch,
|
||
CORE_ADDR pc, CORE_ADDR current_pc,
|
||
struct sparc_frame_cache *cache);
|
||
|
||
extern struct sparc_frame_cache *
|
||
sparc_frame_cache (struct frame_info *this_frame, void **this_cache);
|
||
|
||
extern struct sparc_frame_cache *
|
||
sparc32_frame_cache (struct frame_info *this_frame, void **this_cache);
|
||
|
||
|
||
|
||
extern int sparc_software_single_step (struct frame_info *frame);
|
||
|
||
extern void sparc_supply_rwindow (struct regcache *regcache,
|
||
CORE_ADDR sp, int regnum);
|
||
extern void sparc_collect_rwindow (const struct regcache *regcache,
|
||
CORE_ADDR sp, int regnum);
|
||
|
||
/* Register offsets for SunOS 4. */
|
||
extern const struct sparc_gregset sparc32_sunos4_gregset;
|
||
|
||
extern void sparc32_supply_gregset (const struct sparc_gregset *gregset,
|
||
struct regcache *regcache,
|
||
int regnum, const void *gregs);
|
||
extern void sparc32_collect_gregset (const struct sparc_gregset *gregset,
|
||
const struct regcache *regcache,
|
||
int regnum, void *gregs);
|
||
extern void sparc32_supply_fpregset (struct regcache *regcache,
|
||
int regnum, const void *fpregs);
|
||
extern void sparc32_collect_fpregset (const struct regcache *regcache,
|
||
int regnum, void *fpregs);
|
||
|
||
/* Functions and variables exported from sparc-sol2-tdep.c. */
|
||
|
||
/* Register offsets for Solaris 2. */
|
||
extern const struct sparc_gregset sparc32_sol2_gregset;
|
||
|
||
extern int sparc_sol2_pc_in_sigtramp (CORE_ADDR pc, const char *name);
|
||
|
||
extern const char *sparc_sol2_static_transform_name (const char *name);
|
||
|
||
extern void sparc32_sol2_init_abi (struct gdbarch_info info,
|
||
struct gdbarch *gdbarch);
|
||
|
||
/* Functions and variables exported from sparcnbsd-tdep.c. */
|
||
|
||
/* Register offsets for NetBSD. */
|
||
extern const struct sparc_gregset sparc32nbsd_gregset;
|
||
|
||
/* Return the address of a system call's alternative return
|
||
address. */
|
||
extern CORE_ADDR sparcnbsd_step_trap (struct frame_info *frame,
|
||
unsigned long insn);
|
||
|
||
extern void sparc32nbsd_elf_init_abi (struct gdbarch_info info,
|
||
struct gdbarch *gdbarch);
|
||
|
||
extern struct trad_frame_saved_reg *
|
||
sparc32nbsd_sigcontext_saved_regs (struct frame_info *next_frame);
|
||
|
||
#endif /* sparc-tdep.h */
|