emulated_ops.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Copyright 2007 Sony Corporation
  3. *
  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; version 2 of the License.
  7. *
  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. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program.
  15. * If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #ifndef _ASM_POWERPC_EMULATED_OPS_H
  18. #define _ASM_POWERPC_EMULATED_OPS_H
  19. #include <asm/atomic.h>
  20. #include <linux/perf_event.h>
  21. #ifdef CONFIG_PPC_EMULATED_STATS
  22. struct ppc_emulated_entry {
  23. const char *name;
  24. atomic_t val;
  25. };
  26. extern struct ppc_emulated {
  27. #ifdef CONFIG_ALTIVEC
  28. struct ppc_emulated_entry altivec;
  29. #endif
  30. struct ppc_emulated_entry dcba;
  31. struct ppc_emulated_entry dcbz;
  32. struct ppc_emulated_entry fp_pair;
  33. struct ppc_emulated_entry isel;
  34. struct ppc_emulated_entry mcrxr;
  35. struct ppc_emulated_entry mfpvr;
  36. struct ppc_emulated_entry multiple;
  37. struct ppc_emulated_entry popcntb;
  38. struct ppc_emulated_entry spe;
  39. struct ppc_emulated_entry string;
  40. struct ppc_emulated_entry unaligned;
  41. #ifdef CONFIG_MATH_EMULATION
  42. struct ppc_emulated_entry math;
  43. #elif defined(CONFIG_8XX_MINIMAL_FPEMU)
  44. struct ppc_emulated_entry 8xx;
  45. #endif
  46. #ifdef CONFIG_VSX
  47. struct ppc_emulated_entry vsx;
  48. #endif
  49. } ppc_emulated;
  50. extern u32 ppc_warn_emulated;
  51. extern void ppc_warn_emulated_print(const char *type);
  52. #define __PPC_WARN_EMULATED(type) \
  53. do { \
  54. atomic_inc(&ppc_emulated.type.val); \
  55. if (ppc_warn_emulated) \
  56. ppc_warn_emulated_print(ppc_emulated.type.name); \
  57. } while (0)
  58. #else /* !CONFIG_PPC_EMULATED_STATS */
  59. #define __PPC_WARN_EMULATED(type) do { } while (0)
  60. #endif /* !CONFIG_PPC_EMULATED_STATS */
  61. #define PPC_WARN_EMULATED(type, regs) \
  62. do { \
  63. perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS, \
  64. 1, 0, regs, 0); \
  65. __PPC_WARN_EMULATED(type); \
  66. } while (0)
  67. #define PPC_WARN_ALIGNMENT(type, regs) \
  68. do { \
  69. perf_sw_event(PERF_COUNT_SW_ALIGNMENT_FAULTS, \
  70. 1, 0, regs, regs->dar); \
  71. __PPC_WARN_EMULATED(type); \
  72. } while (0)
  73. #endif /* _ASM_POWERPC_EMULATED_OPS_H */