emulated_ops.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. #ifdef CONFIG_PPC_EMULATED_STATS
  21. struct ppc_emulated_entry {
  22. const char *name;
  23. atomic_t val;
  24. };
  25. extern struct ppc_emulated {
  26. #ifdef CONFIG_ALTIVEC
  27. struct ppc_emulated_entry altivec;
  28. #endif
  29. struct ppc_emulated_entry dcba;
  30. struct ppc_emulated_entry dcbz;
  31. struct ppc_emulated_entry fp_pair;
  32. struct ppc_emulated_entry isel;
  33. struct ppc_emulated_entry mcrxr;
  34. struct ppc_emulated_entry mfpvr;
  35. struct ppc_emulated_entry multiple;
  36. struct ppc_emulated_entry popcntb;
  37. struct ppc_emulated_entry spe;
  38. struct ppc_emulated_entry string;
  39. struct ppc_emulated_entry unaligned;
  40. #ifdef CONFIG_MATH_EMULATION
  41. struct ppc_emulated_entry math;
  42. #elif defined(CONFIG_8XX_MINIMAL_FPEMU)
  43. struct ppc_emulated_entry 8xx;
  44. #endif
  45. #ifdef CONFIG_VSX
  46. struct ppc_emulated_entry vsx;
  47. #endif
  48. } ppc_emulated;
  49. extern u32 ppc_warn_emulated;
  50. extern void ppc_warn_emulated_print(const char *type);
  51. #define PPC_WARN_EMULATED(type) \
  52. do { \
  53. atomic_inc(&ppc_emulated.type.val); \
  54. if (ppc_warn_emulated) \
  55. ppc_warn_emulated_print(ppc_emulated.type.name); \
  56. } while (0)
  57. #else /* !CONFIG_PPC_EMULATED_STATS */
  58. #define PPC_WARN_EMULATED(type) do { } while (0)
  59. #endif /* !CONFIG_PPC_EMULATED_STATS */
  60. #endif /* _ASM_POWERPC_EMULATED_OPS_H */