Home | History | Annotate | Download | only in gdb

Lines Matching refs:cookednum

1130 		      int cookednum,
1137 int rawnum = mep_pseudo_to_raw[cookednum];
1141 gdb_assert (register_type (gdbarch, cookednum)->length () == 4);
1156 int cookednum,
1159 return regcache->raw_read (mep_pseudo_to_raw[cookednum], buf);
1166 int cookednum,
1169 if (IS_CSR_REGNUM (cookednum)
1170 || IS_CCR_REGNUM (cookednum))
1171 return regcache->raw_read (mep_pseudo_to_raw[cookednum], buf);
1172 else if (IS_CR32_REGNUM (cookednum)
1173 || IS_FP_CR32_REGNUM (cookednum))
1174 return mep_pseudo_cr32_read (gdbarch, regcache, cookednum, buf);
1175 else if (IS_CR64_REGNUM (cookednum)
1176 || IS_FP_CR64_REGNUM (cookednum))
1177 return mep_pseudo_cr64_read (gdbarch, regcache, cookednum, buf);
1186 int cookednum,
1190 int size = register_size (gdbarch, cookednum);
1192 = &mep_csr_registers[cookednum - MEP_FIRST_CSR_REGNUM];
1217 int cookednum,
1223 int rawnum = mep_pseudo_to_raw[cookednum];
1227 gdb_assert (register_type (gdbarch, cookednum)->length () == 4);
1238 int cookednum,
1241 regcache->raw_write (mep_pseudo_to_raw[cookednum], buf);
1248 int cookednum,
1251 if (IS_CSR_REGNUM (cookednum))
1252 mep_pseudo_csr_write (gdbarch, regcache, cookednum, buf);
1253 else if (IS_CR32_REGNUM (cookednum)
1254 || IS_FP_CR32_REGNUM (cookednum))
1255 mep_pseudo_cr32_write (gdbarch, regcache, cookednum, buf);
1256 else if (IS_CR64_REGNUM (cookednum)
1257 || IS_FP_CR64_REGNUM (cookednum))
1258 mep_pseudo_cr64_write (gdbarch, regcache, cookednum, buf);
1259 else if (IS_CCR_REGNUM (cookednum))
1260 regcache->raw_write (mep_pseudo_to_raw[cookednum], buf);