[Git][ghc/ghc][wip/supersven/riscv-vectors] cpuinfo.py: Provide RISC-V features
Sven Tennie (@supersven)
gitlab at gitlab.haskell.org
Fri Mar 7 20:02:14 UTC 2025
Sven Tennie pushed to branch wip/supersven/riscv-vectors at Glasgow Haskell Compiler / GHC
Commits:
9554182b by Sven Tennie at 2025-03-07T21:02:07+01:00
cpuinfo.py: Provide RISC-V features
- - - - -
1 changed file:
- testsuite/driver/cpuinfo.py
Changes:
=====================================
testsuite/driver/cpuinfo.py
=====================================
@@ -275,6 +275,12 @@ class DataSource:
if ibm_features:
return _run_and_get_stdout(['lsprop', ibm_features[0]])
+ @staticmethod
+ def riscv_isa():
+ # Expect all cores to support an equal ISA.
+ riscv_isa = '/proc/device-tree/cpus/cpu at 0/riscv,isa'
+ return _run_and_get_stdout(['cat', riscv_isa])
+
@staticmethod
def wmic_cpu():
return _run_and_get_stdout(['wmic', 'cpu', 'get', 'Name,CurrentClockSpeed,L2CacheSize,L3CacheSize,Description,Caption,Manufacturer', '/format:list'])
@@ -2118,6 +2124,28 @@ def _get_cpu_info_from_ibm_pa_features():
g_trace.fail(err)
return {}
+def _get_cpu_info_from_riscv_isa():
+ '''
+ Returns the CPU info gathered from 'cat /proc/device-tree/cpus/cpu at 0/riscv,isa'
+ Returns {} if this file does not exist (i.e. we're not on RISC-V Linux)
+ '''
+ g_trace.header('Tying to get info from lsprop ...')
+
+ try:
+ returncode, output = DataSource.riscv_isa()
+ if output is None or returncode != 0:
+ g_trace.fail('Failed to cat /proc/device-tree/cpus/cpu at 0/riscv,isa. Skipping ...')
+ return {}
+
+ info = {
+ 'flags' : output.split('_')
+ }
+ info = _filter_dict_keys_with_empty_values(info)
+ g_trace.success()
+ return info
+ except Exception as err:
+ g_trace.fail(err)
+ return {}
def _get_cpu_info_from_cat_var_run_dmesg_boot():
'''
@@ -2717,6 +2745,9 @@ def _get_cpu_info_internal():
# Try lsprop ibm,pa-features
_copy_new_fields(info, _get_cpu_info_from_ibm_pa_features())
+ # Try device-tree riscv,isa
+ _copy_new_fields(info, _get_cpu_info_from_riscv_isa())
+
# Try sysinfo
_copy_new_fields(info, _get_cpu_info_from_sysinfo())
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/9554182bb43848207eaa26cf618c4eccb3a7dff3
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/9554182bb43848207eaa26cf618c4eccb3a7dff3
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20250307/b38584bf/attachment-0001.html>
More information about the ghc-commits
mailing list