From: Luke Kenneth Casson Leighton Date: Thu, 9 Dec 2021 10:39:01 +0000 (+0000) Subject: add warning about creation of "-.csv" which indicates that X-Git-Tag: sv_maxu_works-initial~644 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=81c20b9e15d931ef58195644767a58944d933336;p=openpower-isa.git add warning about creation of "-.csv" which indicates that some SVP64 instructions have not been correctly identified --- diff --git a/src/openpower/sv/sv_analysis.py b/src/openpower/sv/sv_analysis.py index b14be43f..d2b7c7ab 100644 --- a/src/openpower/sv/sv_analysis.py +++ b/src/openpower/sv/sv_analysis.py @@ -691,6 +691,12 @@ def process_csvs(format): # now write out the csv files for value, csv in svp64.items(): + if value == '-': + from time import sleep + print ("WARNING, filename '-' should NOT exist. instrs missing") + print ("TODO: fix this (and put in the bugreport number here)") + sleep(2) + continue # print out svp64 tables by category print("## %s" % value) print('')