You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.1KB

  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. /**
  19. * @file check_altivec.c
  20. * Checks for AltiVec presence.
  21. */
  22. #ifdef __APPLE__
  23. #include <sys/sysctl.h>
  24. #elif __AMIGAOS4__
  25. #include <exec/exec.h>
  26. #include <interfaces/exec.h>
  27. #include <proto/exec.h>
  28. #endif /* __APPLE__ */
  29. /**
  30. * This function MAY rely on signal() or fork() in order to make sure altivec
  31. * is present
  32. */
  33. int has_altivec(void)
  34. {
  35. #ifdef __AMIGAOS4__
  36. ULONG result = 0;
  37. extern struct ExecIFace *IExec;
  38. IExec->GetCPUInfoTags(GCIT_VectorUnit, &result, TAG_DONE);
  39. if (result == VECTORTYPE_ALTIVEC) return 1;
  40. return 0;
  41. #elif __APPLE__
  42. int sels[2] = {CTL_HW, HW_VECTORUNIT};
  43. int has_vu = 0;
  44. size_t len = sizeof(has_vu);
  45. int err;
  46. err = sysctl(sels, 2, &has_vu, &len, NULL, 0);
  47. if (err == 0) return (has_vu != 0);
  48. return 0;
  49. #elif defined(RUNTIME_CPUDETECT)
  50. int proc_ver;
  51. // support of mfspr PVR emulation added in Linux 2.6.17
  52. asm volatile("mfspr %0, 287" : "=r" (proc_ver));
  53. proc_ver >>= 16;
  54. if (proc_ver & 0x8000 ||
  55. proc_ver == 0x000c ||
  56. proc_ver == 0x0039 || proc_ver == 0x003c ||
  57. proc_ver == 0x0044 || proc_ver == 0x0045 ||
  58. proc_ver == 0x0070)
  59. return 1;
  60. return 0;
  61. #else
  62. // since we were compiled for altivec, just assume we have it
  63. // until someone comes up with a proper way (not involving signal hacks).
  64. return 1;
  65. #endif /* __AMIGAOS4__ */
  66. }