pan/bi: Rename isa_parse to bifrost_isa
authorAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Fri, 27 Nov 2020 18:24:53 +0000 (13:24 -0500)
committerMarge Bot <eric+marge@anholt.net>
Wed, 23 Dec 2020 17:06:57 +0000 (17:06 +0000)
We use this for non-parsing code as well. Make the name clear.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8213>

src/panfrost/bifrost/bifrost_isa.py [moved from src/panfrost/bifrost/isa_parse.py with 100% similarity]
src/panfrost/bifrost/gen_disasm.py
src/panfrost/bifrost/gen_pack.py

index e487e4b..11acf5a 100644 (file)
@@ -22,7 +22,7 @@
 
 import sys
 import itertools
-from isa_parse import parse_instructions, opname_to_c, expand_states
+from bifrost_isa import parse_instructions, opname_to_c, expand_states
 from mako.template import Template
 
 instructions = parse_instructions(sys.argv[1], include_unused = True)
index af3b286..d265d93 100644 (file)
@@ -21,7 +21,7 @@
 # IN THE SOFTWARE.
 
 import sys
-from isa_parse import parse_instructions, opname_to_c
+from bifrost_isa import parse_instructions, opname_to_c
 from mako.template import Template
 
 instructions = parse_instructions(sys.argv[1])