Leaked source code of windows server 2003
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.

66 lines
1.6 KiB

  1. /**
  2. *** Copyright (C) 1999 Advanced Micro Devices Inc. All rights reserved.
  3. ***
  4. *** The information and source code contained herein is the exclusive
  5. *** property of Advanced Micro Devices and may not be disclosed, examined
  6. *** or reproduced in whole or in part without explicit written authorization
  7. *** from the company.
  8. ***
  9. **/
  10. /*
  11. * mm3dnow.h
  12. *
  13. */
  14. #ifndef _MM3DNOW_H_INCLUDED
  15. #define _MM3DNOW_H_INCLUDED
  16. #include <mmintrin.h>
  17. #include <xmmintrin.h>
  18. #if defined __cplusplus
  19. extern "C" { /* Intrinsics use C name-mangling. */
  20. #endif /* __cplusplus */
  21. /* 3DNOW intrinsics */
  22. void _m_femms(void);
  23. __m64 _m_pavgusb(__m64, __m64);
  24. __m64 _m_pf2id(__m64);
  25. __m64 _m_pfacc(__m64, __m64);
  26. __m64 _m_pfadd(__m64, __m64);
  27. __m64 _m_pfcmpeq(__m64, __m64);
  28. __m64 _m_pfcmpge(__m64, __m64);
  29. __m64 _m_pfcmpgt(__m64, __m64);
  30. __m64 _m_pfmax(__m64, __m64);
  31. __m64 _m_pfmin(__m64, __m64);
  32. __m64 _m_pfmul(__m64, __m64);
  33. __m64 _m_pfrcp(__m64);
  34. __m64 _m_pfrcpit1(__m64, __m64);
  35. __m64 _m_pfrcpit2(__m64, __m64);
  36. __m64 _m_pfrsqrt(__m64);
  37. __m64 _m_pfrsqit1(__m64, __m64);
  38. __m64 _m_pfsub(__m64, __m64);
  39. __m64 _m_pfsubr(__m64, __m64);
  40. __m64 _m_pi2fd(__m64);
  41. __m64 _m_pmulhrw(__m64, __m64);
  42. void _m_prefetch(void*);
  43. void _m_prefetchw(void*);
  44. __m64 _m_from_float(float);
  45. float _m_to_float(__m64);
  46. /* Athlon DSP intrinsics */
  47. __m64 _m_pf2iw(__m64);
  48. __m64 _m_pfnacc(__m64, __m64);
  49. __m64 _m_pfpnacc(__m64, __m64);
  50. __m64 _m_pi2fw(__m64);
  51. __m64 _m_pswapd(__m64);
  52. #if defined __cplusplus
  53. }; /* End "C" */
  54. #endif /* __cplusplus */
  55. #endif /* _MM3DNOW_H_INCLUDED */