remove use of regex (this code is REQUIRED to be SIMPLE)
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 27 Oct 2023 14:00:43 +0000 (15:00 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 29 Oct 2023 08:54:37 +0000 (08:54 +0000)
src/openpower/decoder/pseudo/pagereader.py

index 73173cfc772140505695e85cdcc0550464077e5d..ed647a6d104414d0ffa5300727b87962f5fc1c68 100644 (file)
@@ -66,14 +66,6 @@ def get_isa_dir():
     return os.path.join(fdir, "openpower", "isa")
 
 
-pattern_opcode = r"[A-Za-z0-9_\.]+\.?"
-pattern_dynamic = r"[A-Za-z0-9_]+(?:\([A-Za-z0-9_]+\))*"
-pattern_static = r"[A-Za-z0-9]+\=[01]"
-regex_opcode = re.compile(f"^{pattern_opcode}$")
-regex_dynamic = re.compile(f"^{pattern_dynamic}(?:,{pattern_dynamic})*$")
-regex_static = re.compile(f"^\({pattern_static}(?:\s{pattern_static})*\)$")
-
-
 def operands(opcode, desc):
     if desc is None:
         return
@@ -281,19 +273,13 @@ class ISA:
                 rest = l[1:].strip()
 
                 (opcode, _, rest) = map(str.strip, rest.partition(" "))
-                if regex_opcode.match(opcode) is None:
-                    raise IOError(repr(opcode))
                 opcode = [opcode]
 
                 (dynamic, _, rest) = map(str.strip, rest.partition(" "))
-                if regex_dynamic.match(dynamic) is None and dynamic:
-                    raise IOError(f"{l!r}: {dynamic!r}")
                 if dynamic:
                     opcode.append(dynamic.split(","))
 
                 static = rest
-                if regex_static.match(static) is None and static:
-                    raise IOError(f"{l!r}: {static!r}")
                 if static:
                     opcode.extend(static[1:-1].split(" "))