Searched refs:reg_nr (Results 1 - 12 of 12) sorted by relevance

/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dsh64-tdep.c123 sh64_register_name (int reg_nr) argument
189 if (reg_nr < 0)
191 if (reg_nr >= (sizeof (register_names) / sizeof (*register_names)))
193 return register_names[reg_nr];
831 sh64_media_reg_base_num (int reg_nr) argument
835 if (reg_nr >= DR0_REGNUM
836 && reg_nr <= DR_LAST_REGNUM)
837 base_regnum = dr_reg_base_num (reg_nr);
839 else if (reg_nr >= FPP0_REGNUM
840 && reg_nr <
913 sh64_compact_reg_base_num(int reg_nr) argument
1076 int reg_nr = PR_C_REGNUM; local
1104 int reg_nr = PR_C_REGNUM; local
1910 sh64_register_byte(int reg_nr) argument
2006 sh64_register_type(struct gdbarch *gdbarch, int reg_nr) argument
2085 sh64_pseudo_register_read(struct gdbarch *gdbarch, struct regcache *regcache, int reg_nr, void *buffer) argument
2254 sh64_pseudo_register_write(struct gdbarch *gdbarch, struct regcache *regcache, int reg_nr, const void *buffer) argument
2267 reg_nr, local
2342 reg_nr, local
[all...]
H A Dsh-tdep.c77 sh_sh_register_name (int reg_nr) argument
91 if (reg_nr < 0)
93 if (reg_nr >= (sizeof (register_names) / sizeof (*register_names)))
95 return register_names[reg_nr];
99 sh_sh3_register_name (int reg_nr) argument
113 if (reg_nr < 0)
115 if (reg_nr >= (sizeof (register_names) / sizeof (*register_names)))
117 return register_names[reg_nr];
121 sh_sh3e_register_name (int reg_nr) argument
135 if (reg_nr <
143 sh_sh2e_register_name(int reg_nr) argument
166 sh_sh2a_register_name(int reg_nr) argument
206 sh_sh2a_nofpu_register_name(int reg_nr) argument
247 sh_sh_dsp_register_name(int reg_nr) argument
269 sh_sh3_dsp_register_name(int reg_nr) argument
292 sh_sh4_register_name(int reg_nr) argument
329 sh_sh4_nofpu_register_name(int reg_nr) argument
364 sh_sh4al_dsp_register_name(int reg_nr) argument
1767 sh_sh2a_register_type(struct gdbarch *gdbarch, int reg_nr) argument
1782 sh_sh3e_register_type(struct gdbarch *gdbarch, int reg_nr) argument
1801 sh_sh4_register_type(struct gdbarch *gdbarch, int reg_nr) argument
1815 sh_default_register_type(struct gdbarch *gdbarch, int reg_nr) argument
1897 sh_pseudo_register_read(struct gdbarch *gdbarch, struct regcache *regcache, int reg_nr, void *buffer) argument
1936 sh_pseudo_register_write(struct gdbarch *gdbarch, struct regcache *regcache, int reg_nr, const void *buffer) argument
1960 reg_nr, buffer, temp_buffer); local
[all...]
H A Dd10v-tdep.c126 when the reg_nr isn't valid. */
137 d10v_ts2_register_name (int reg_nr) argument
147 if (reg_nr < 0)
149 if (reg_nr >= (sizeof (register_names) / sizeof (*register_names)))
151 return register_names[reg_nr];
163 d10v_ts3_register_name (int reg_nr) argument
176 if (reg_nr < 0)
178 if (reg_nr >= (sizeof (register_names) / sizeof (*register_names)))
180 return register_names[reg_nr];
199 d10v_ts2_dmap_register (void *regcache, int reg_nr) argument
218 d10v_ts3_dmap_register(void *regcache, int reg_nr) argument
226 d10v_ts2_imap_register(void *regcache, int reg_nr) argument
234 d10v_ts3_imap_register(void *regcache, int reg_nr) argument
282 d10v_register_type(struct gdbarch *gdbarch, int reg_nr) argument
[all...]
H A Dm32r-tdep.c211 m32r_register_name (int reg_nr) argument
213 if (reg_nr < 0)
215 if (reg_nr >= M32R_NUM_REGS)
217 return m32r_register_names[reg_nr];
225 m32r_register_type (struct gdbarch *gdbarch, int reg_nr) argument
227 if (reg_nr == M32R_PC_REGNUM)
229 else if (reg_nr == M32R_SP_REGNUM || reg_nr == M32R_FP_REGNUM)
H A Dm68hc11-tdep.c376 m68hc11_register_name (int reg_nr) argument
378 if (reg_nr == M68HC12_HARD_PC_REGNUM && USE_PAGE_REGISTER)
380 if (reg_nr == HARD_PC_REGNUM && USE_PAGE_REGISTER)
383 if (reg_nr < 0)
385 if (reg_nr >= M68HC11_ALL_REGS)
392 if (reg_nr > M68HC11_LAST_HARD_REG && soft_regs[reg_nr].name == 0)
394 return m68hc11_register_names[reg_nr];
1259 m68hc11_register_type (struct gdbarch *gdbarch, int reg_nr)
1261 switch (reg_nr)
1257 m68hc11_register_type(struct gdbarch *gdbarch, int reg_nr) argument
[all...]
H A Dgdbarch.h471 typedef struct type * (gdbarch_register_type_ftype) (struct gdbarch *gdbarch, int reg_nr);
472 extern struct type * gdbarch_register_type (struct gdbarch *gdbarch, int reg_nr);
498 typedef int (gdbarch_deprecated_register_byte_ftype) (int reg_nr);
499 extern int gdbarch_deprecated_register_byte (struct gdbarch *gdbarch, int reg_nr);
505 #define DEPRECATED_REGISTER_BYTE(reg_nr) (gdbarch_deprecated_register_byte (current_gdbarch, reg_nr))
609 typedef int (gdbarch_register_sim_regno_ftype) (int reg_nr);
610 extern int gdbarch_register_sim_regno (struct gdbarch *gdbarch, int reg_nr);
616 #define REGISTER_SIM_REGNO(reg_nr) (gdbarch_register_sim_regno (current_gdbarch, reg_nr))
[all...]
H A Drs6000-tdep.c1948 int reg_nr, void *buffer)
1955 if (tdep->ppc_ev0_regnum <= reg_nr
1956 && reg_nr < tdep->ppc_ev0_regnum + ppc_num_gprs)
1957 e500_move_ev_register (regcache_raw_read, regcache, reg_nr, buffer);
1962 gdbarch_register_name (gdbarch, reg_nr), reg_nr);
1967 int reg_nr, const void *buffer)
1974 if (tdep->ppc_ev0_regnum <= reg_nr
1975 && reg_nr < tdep->ppc_ev0_regnum + ppc_num_gprs)
1978 regcache, reg_nr, (voi
1945 e500_pseudo_register_read(struct gdbarch *gdbarch, struct regcache *regcache, int reg_nr, void *buffer) argument
1964 e500_pseudo_register_write(struct gdbarch *gdbarch, struct regcache *regcache, int reg_nr, const void *buffer) argument
[all...]
H A Dgdbarch.sh457 M::struct type *:register_type:int reg_nr:reg_nr
465 F:=:int:deprecated_register_byte:int reg_nr:reg_nr:generic_register_byte:generic_register_byte
488 f:=:int:register_sim_regno:int reg_nr:reg_nr::legacy_register_sim_regno::0
H A Davr-tdep.c211 avr_register_type (struct gdbarch *gdbarch, int reg_nr) argument
213 if (reg_nr == AVR_PC_REGNUM)
215 if (reg_nr == AVR_SP_REGNUM)
H A Dhppa-tdep.c2294 hppa32_register_type (struct gdbarch *gdbarch, int reg_nr)
2296 if (reg_nr < HPPA_FP4_REGNUM)
2306 hppa64_register_type (struct gdbarch *gdbarch, int reg_nr)
2308 if (reg_nr < HPPA_FP4_REGNUM)
2293 hppa32_register_type(struct gdbarch *gdbarch, int reg_nr) argument
2305 hppa64_register_type(struct gdbarch *gdbarch, int reg_nr) argument
H A Dgdbarch.c923 "DEPRECATED_REGISTER_BYTE(reg_nr)",
924 XSTRING (DEPRECATED_REGISTER_BYTE (reg_nr)));
1466 "REGISTER_SIM_REGNO(reg_nr)",
1467 XSTRING (REGISTER_SIM_REGNO (reg_nr)));
2261 gdbarch_register_type (struct gdbarch *gdbarch, int reg_nr) argument
2267 return gdbarch->register_type (gdbarch, reg_nr);
2285 gdbarch_deprecated_register_byte (struct gdbarch *gdbarch, int reg_nr) argument
2292 return gdbarch->deprecated_register_byte (reg_nr);
2514 gdbarch_register_sim_regno (struct gdbarch *gdbarch, int reg_nr) argument
2520 return gdbarch->register_sim_regno (reg_nr);
[all...]
/openbsd-current/gnu/usr.bin/binutils/include/gdb/
H A Dsim-d10v.h62 unsigned long (*dmap_register) (void *regcache, int reg_nr));
69 unsigned long (*imap_register) (void *regcache, int reg_nr));
76 unsigned long (*dmap_register) (void *regcache, int reg_nr),
77 unsigned long (*imap_register) (void *regcache, int reg_nr));

Completed in 210 milliseconds