cpu-features.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* Initialize cpu feature data. s390x version.
  2. Copyright (C) 2023-2026 Free Software Foundation, Inc.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <https://www.gnu.org/licenses/>. */
  14. #ifndef __CPU_FEATURES_S390X_H
  15. # define __CPU_FEATURES_S390X_H
  16. /* The following stfle bit definitions are intended to be used for the
  17. glibc internal stfle_orig and stfle_filtered fields in cpu_features
  18. struct. They can't be used on the double words retrieved by the
  19. stfle-instruction. */
  20. /* Facility bit 34: z10: General instructions extension. */
  21. #define S390_STFLE_BIT34_Z10 (1ULL << 0)
  22. /* Facility bit 45: z196: Distinct operands, popcount, ... */
  23. #define S390_STFLE_BIT45_Z196 (1ULL << 1)
  24. /* Facility bit 61: arch13/z15: Miscellaneous-Instruction-Extensions
  25. Facility 3, e.g. mvcrl. */
  26. #define S390_STFLE_BIT61_ARCH13_MIE3 (1ULL << 2)
  27. /* Facility bit 84: arch15/z17: Miscellaneous-instruction-extensions
  28. facility 4 */
  29. #define S390_STFLE_BIT84_ARCH15_MIE4 (1ULL << 3)
  30. /* Facility bit 198: arch15/z17: Vector-enhancements-facility 3 */
  31. #define S390_STFLE_BIT198_ARCH15_VXRS_EXT3 (1ULL << 4)
  32. /* Facility bit 199: arch15/z17: Vector-Packed-Decimal-Enhancement
  33. Facility 3 */
  34. #define S390_STFLE_BIT199_ARCH15_VXRS_PDE3 (1ULL << 5)
  35. /* Facility bit 201: arch15/z17: CPU: Concurrent-Functions Facility */
  36. #define S390_STFLE_BIT201_ARCH15_CON (1ULL << 6)
  37. #define S390_IS_ARCH15(STFLE_BITS) \
  38. ((((STFLE_BITS) & S390_STFLE_BIT84_ARCH15_MIE4) != 0) \
  39. && (((STFLE_BITS) & S390_STFLE_BIT198_ARCH15_VXRS_EXT3) != 0) \
  40. && (((STFLE_BITS) & S390_STFLE_BIT199_ARCH15_VXRS_PDE3) != 0) \
  41. && (((STFLE_BITS) & S390_STFLE_BIT201_ARCH15_CON) != 0))
  42. #define S390_IS_ARCH13_MIE3(STFLE_BITS) \
  43. (((STFLE_BITS) & S390_STFLE_BIT61_ARCH13_MIE3) != 0)
  44. #define S390_IS_Z196(STFLE_BITS) \
  45. (((STFLE_BITS) & S390_STFLE_BIT45_Z196) != 0)
  46. #define S390_IS_Z10(STFLE_BITS) \
  47. (((STFLE_BITS) & S390_STFLE_BIT34_Z10) != 0)
  48. struct cpu_features
  49. {
  50. unsigned long int hwcap;
  51. unsigned long int __reserved_hwcap2;
  52. unsigned long long __reserved;
  53. unsigned long long stfle_orig;
  54. unsigned long long stfle_filtered;
  55. unsigned long long __reserved2[11];
  56. };
  57. #endif /* __CPU_FEATURES_S390X_H */