reccmp: template compare annotations (#88)

* reccmp: Add ability to compare template instantiations

* Add example of template instantiation comparison.

* merge

* Add template compare annotations for MxList instances

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
pewpew
2023-09-29 13:40:46 -05:00
committed by GitHub
parent f7743c51fb
commit b77cd067d3
5 changed files with 57 additions and 23 deletions

View File

@@ -10,6 +10,7 @@ import logging
import os
import sys
import colorama
import html
import re
parser = argparse.ArgumentParser(allow_abbrev=False,
@@ -43,7 +44,7 @@ if args.verbose:
verbose = int(args.verbose, 16)
except ValueError:
parser.error('invalid verbose argument')
html = args.html
html_path = args.html
plain = args.no_color
@@ -140,6 +141,7 @@ def get_file_in_script_dir(fn):
class SymInfo:
funcs = {}
lines = {}
names = {}
def __init__(self, pdb, file, wine_path_converter):
call = [get_file_in_script_dir('cvdump.exe'), '-l', '-s']
@@ -183,6 +185,7 @@ class SymInfo:
info.name = line[77:]
self.names[info.name] = info
self.funcs[addr] = info
elif current_section == 'LINES' and line.startswith(' ') and not line.startswith(' '):
sourcepath = line.split()[0]
@@ -238,6 +241,14 @@ class SymInfo:
else:
logger.error('Failed to find function symbol with filename and line: %s:%d', filename, line)
def get_recompiled_address_from_name(self, name):
logger.debug('Looking for %s', name)
if name in self.names:
return self.names[name]
else:
logger.error('Failed to find function symbol with name: %s', name)
wine_path_converter = None
if os.name != 'nt':
wine_path_converter = WinePathConverter(source)
@@ -419,14 +430,24 @@ for subdir, dirs, files in os.walk(source):
else:
continue
find_open_bracket = line
while '{' not in find_open_bracket:
find_open_bracket = srcfile.readline()
line_no += 1
if line.endswith("TEMPLATE"):
line = srcfile.readline()
line_no += 1
# Name comes after // comment
name = line[2:].strip()
recinfo = syminfo.get_recompiled_address(srcfilename, line_no)
if not recinfo:
continue
recinfo = syminfo.get_recompiled_address_from_name(name)
if not recinfo:
continue
else:
find_open_bracket = line
while '{' not in find_open_bracket:
find_open_bracket = srcfile.readline()
line_no += 1
recinfo = syminfo.get_recompiled_address(srcfilename, line_no)
if not recinfo:
continue
# The effective_ratio is the ratio when ignoring differing register
# allocation vs the ratio is the true ratio.
@@ -511,14 +532,14 @@ for subdir, dirs, files in os.walk(source):
print("\n%s is only %s similar to the original, diff above" % (recinfo.name, percenttext))
# If html, record the diffs to an HTML file
if html:
if html_path:
escaped = '\\n'.join(udiff).replace('"', '\\"').replace('\n', '\\n').replace('<', '&lt;').replace('>', '&gt;')
htmlinsert.append('{address: "%s", name: "%s", matching: %s, diff: "%s"}' % (hex(addr), recinfo.name, str(effective_ratio), escaped))
htmlinsert.append('{address: "%s", name: "%s", matching: %s, diff: "%s"}' % (hex(addr), html.escape(recinfo.name), str(effective_ratio), escaped))
except UnicodeDecodeError:
break
def gen_html(html, data):
def gen_html(html_path, data):
templatefile = open(get_file_in_script_dir('template.html'), 'r')
if not templatefile:
print('Failed to find HTML template file, can\'t generate HTML summary')
@@ -529,9 +550,9 @@ def gen_html(html, data):
templatedata = templatedata.replace('/* INSERT DATA HERE */', ','.join(data), 1)
htmlfile = open(html, 'w')
htmlfile = open(html_path, 'w')
if not htmlfile:
print('Failed to write to HTML file %s' % html)
print('Failed to write to HTML file %s' % html_path)
return
htmlfile.write(templatedata)
@@ -580,8 +601,8 @@ def gen_svg(svg, name, icon, implemented_funcs, total_funcs, raw_accuracy):
svgfile.write(templatedata)
svgfile.close()
if html:
gen_html(html, htmlinsert)
if html_path:
gen_html(html_path, htmlinsert)
if verbose:
if not found_verbose_target: