arc-linux-tdep.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* Target dependent code for GNU/Linux ARC.
  2. Copyright 2020-2022 Free Software Foundation, Inc.
  3. This file is part of GDB.
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  14. #ifndef ARC_LINUX_TDEP_H
  15. #define ARC_LINUX_TDEP_H
  16. #include "gdbarch.h"
  17. #include "regset.h"
  18. #define ARC_LINUX_SIZEOF_V2_REGSET (3 * ARC_REGISTER_SIZE)
  19. /* Reads registers from the NT_PRSTATUS data array into the regcache. */
  20. void arc_linux_supply_gregset (const struct regset *regset,
  21. struct regcache *regcache, int regnum,
  22. const void *gregs, size_t size);
  23. /* Reads regsiters from the NT_ARC_V2 data array into the regcache. */
  24. void arc_linux_supply_v2_regset (const struct regset *regset,
  25. struct regcache *regcache, int regnum,
  26. const void *v2_regs, size_t size);
  27. /* Writes registers from the regcache into the NT_PRSTATUS data array. */
  28. void arc_linux_collect_gregset (const struct regset *regset,
  29. const struct regcache *regcache,
  30. int regnum, void *gregs, size_t size);
  31. /* Writes registers from the regcache into the NT_ARC_V2 data array. */
  32. void arc_linux_collect_v2_regset (const struct regset *regset,
  33. const struct regcache *regcache,
  34. int regnum, void *v2_regs, size_t size);
  35. #endif /* ARC_LINUX_TDEP_H */