From c3625f4ca808752e5e321355cc5d938de7bcc6f9 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 27 Nov 2020 13:24:53 -0500 Subject: [PATCH] pan/bi: Rename isa_parse to bifrost_isa We use this for non-parsing code as well. Make the name clear. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/bifrost/{isa_parse.py => bifrost_isa.py} | 0 src/panfrost/bifrost/gen_disasm.py | 2 +- src/panfrost/bifrost/gen_pack.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/panfrost/bifrost/{isa_parse.py => bifrost_isa.py} (100%) diff --git a/src/panfrost/bifrost/isa_parse.py b/src/panfrost/bifrost/bifrost_isa.py similarity index 100% rename from src/panfrost/bifrost/isa_parse.py rename to src/panfrost/bifrost/bifrost_isa.py diff --git a/src/panfrost/bifrost/gen_disasm.py b/src/panfrost/bifrost/gen_disasm.py index e487e4b0524..11acf5ae9b3 100644 --- a/src/panfrost/bifrost/gen_disasm.py +++ b/src/panfrost/bifrost/gen_disasm.py @@ -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) diff --git a/src/panfrost/bifrost/gen_pack.py b/src/panfrost/bifrost/gen_pack.py index af3b2866e96..d265d93bf11 100644 --- a/src/panfrost/bifrost/gen_pack.py +++ b/src/panfrost/bifrost/gen_pack.py @@ -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])