2020-10-21 02:59:09 +02:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import os
|
|
|
|
import re
|
2021-01-02 08:51:14 +01:00
|
|
|
from pathlib import Path
|
2020-10-21 02:59:09 +02:00
|
|
|
|
|
|
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
root_dir = script_dir + "/../"
|
|
|
|
src_dir = root_dir + "src/"
|
2021-02-22 10:21:23 +01:00
|
|
|
asm_dir = root_dir + "ver/current/asm/"
|
2020-10-21 02:59:09 +02:00
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(description="Replace many functions with one")
|
2020-11-20 05:08:05 +01:00
|
|
|
parser.add_argument("from_list", help="path to line-separated file of functions to be replaced. first line is the string to replace them with")
|
2020-10-21 02:59:09 +02:00
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
from_funcs = []
|
|
|
|
|
|
|
|
with open(args.from_list) as f:
|
|
|
|
from_text = f.readlines()
|
|
|
|
|
|
|
|
to_line = from_text[0].strip()
|
2020-11-22 05:32:54 +01:00
|
|
|
func_name = to_line[to_line.rfind("/") + 1:to_line.find(".")]
|
2020-10-21 02:59:09 +02:00
|
|
|
|
|
|
|
for from_line in from_text[1:]:
|
|
|
|
if len(from_line.strip()) > 0:
|
|
|
|
from_funcs.append(from_line.rstrip().split(" ")[-1])
|
|
|
|
|
|
|
|
for root, dirs, files in os.walk(src_dir):
|
|
|
|
for f_name in files:
|
|
|
|
if f_name.endswith(".c"):
|
|
|
|
f_path = os.path.join(root, f_name)
|
|
|
|
with open(f_path) as f:
|
|
|
|
f_text_orig = f.read()
|
2020-11-20 05:08:05 +01:00
|
|
|
|
2020-10-21 02:59:09 +02:00
|
|
|
f_text = f_text_orig
|
|
|
|
for func in from_funcs:
|
|
|
|
search_pattern = re.compile("\n.*" + func + "\).*\n")
|
|
|
|
f_text = re.sub(search_pattern, "\n" + to_line + "\n", f_text)
|
|
|
|
if f_text != f_text_orig:
|
|
|
|
with open(f_path, "w", newline="\n") as f:
|
|
|
|
f.write(f_text)
|
2020-11-20 05:08:05 +01:00
|
|
|
|
2020-11-22 05:32:54 +01:00
|
|
|
for root, dirs, files in os.walk(asm_dir):
|
|
|
|
for f_name in files:
|
|
|
|
if f_name.endswith(".s"):
|
|
|
|
f_path = os.path.join(root, f_name)
|
|
|
|
with open(f_path) as f:
|
|
|
|
f_text_orig = f.read()
|
|
|
|
|
|
|
|
f_text = f_text_orig
|
|
|
|
for func in from_funcs:
|
2021-01-02 08:51:14 +01:00
|
|
|
f_text = f_text.replace(func, Path(f_path).parent.parent.name + "_" + func_name)
|
2020-11-22 05:32:54 +01:00
|
|
|
if f_text != f_text_orig:
|
|
|
|
with open(f_path, "w", newline="\n") as f:
|
|
|
|
f.write(f_text)
|