add warning about creation of "-.csv" which indicates that
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 9 Dec 2021 10:39:01 +0000 (10:39 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 9 Dec 2021 10:39:01 +0000 (10:39 +0000)
some SVP64 instructions have not been correctly identified

src/openpower/sv/sv_analysis.py

index b14be43fb148bbc28e702a6ff6e478bfe3bc54ea..d2b7c7abcd2dd4ad065e5704b115f6c1a9e0a2a1 100644 (file)
@@ -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('')