Home
last modified time | relevance | path

Searched refs:rawnum (Results 1 – 2 of 2) sorted by relevance

/freebsd-10-stable/contrib/gdb/gdb/
Dregcache.h42 void regcache_raw_read (struct regcache *regcache, int rawnum, void *buf);
43 void regcache_raw_write (struct regcache *regcache, int rawnum,
65 void regcache_cooked_read (struct regcache *regcache, int rawnum, void *buf);
66 void regcache_cooked_write (struct regcache *regcache, int rawnum,
Dmips-tdep.c495 int rawnum = regno % NUM_REGS; in mips_register_name() local
502 if (0 <= rawnum && rawnum < 32) in mips_register_name()
505 return mips_n32_n64_gpr_names[rawnum]; in mips_register_name()
507 return mips_gpr_names[rawnum]; in mips_register_name()
509 else if (32 <= rawnum && rawnum < NUM_REGS) in mips_register_name()
511 gdb_assert (rawnum - 32 < NUM_MIPS_PROCESSOR_REGS); in mips_register_name()
512 return tdep->mips_processor_reg_names[rawnum - 32]; in mips_register_name()
516 "mips_register_name: bad register number %d", rawnum); in mips_register_name()
528 int rawnum = regnum % NUM_REGS; in mips_register_reggroup_p() local
536 raw_p = rawnum < NUM_REGS; in mips_register_reggroup_p()
[all …]