ppc_arch.h 381 B

12345678910111213141516
  1. #ifndef __PPC_ARCH_H__
  2. # define __PPC_ARCH_H__
  3. extern unsigned int OPENSSL_ppccap_P;
  4. /*
  5. * Flags' usage can appear ambiguous, because they are set rather
  6. * to reflect OpenSSL performance preferences than actual processor
  7. * capabilities.
  8. */
  9. # define PPC_FPU64 (1<<0)
  10. # define PPC_ALTIVEC (1<<1)
  11. # define PPC_CRYPTO207 (1<<2)
  12. # define PPC_FPU (1<<3)
  13. #endif