* Read AUXV software register and get cpu features for LoongArch */
| 53 | * Read AUXV software register and get cpu features for LoongArch |
| 54 | */ |
| 55 | static void |
| 56 | rte_cpu_get_features(hwcap_registers_t out) |
| 57 | { |
| 58 | out[REG_HWCAP] = rte_cpu_getauxval(AT_HWCAP); |
| 59 | } |
| 60 | |
| 61 | /* |
| 62 | * Checks if a particular flag is available on current machine. |
no test coverage detected