[PATCH] D69722: [Utils] Reuse argument variable names in the body
Johannes Doerfert via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 1 10:57:51 PDT 2019
jdoerfert created this revision.
jdoerfert added reviewers: lebedev.ri, greened, xbolva00.
Herald added a subscriber: bollu.
Herald added a project: LLVM.
If we have `int foo(int a) { return a; }` and we run with --function-signature
enabled, we want a single variable declaration for `a` which is reused
later.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D69722
Files:
llvm/utils/UpdateTestChecks/common.py
Index: llvm/utils/UpdateTestChecks/common.py
===================================================================
--- llvm/utils/UpdateTestChecks/common.py
+++ llvm/utils/UpdateTestChecks/common.py
@@ -200,7 +200,7 @@
return '[[' + get_value_name(var) + ']]'
# Replace IR value defs and uses with FileCheck variables.
-def genericize_check_lines(lines, is_analyze):
+def genericize_check_lines(lines, is_analyze, vars_seen):
# This gets called for each match that occurs in
# a line. We transform variables we haven't seen
# into defs, and variables we have seen into uses.
@@ -217,7 +217,6 @@
# including the commas and spaces.
return match.group(1) + rv + match.group(3)
- vars_seen = set()
lines_with_def = []
for i, line in enumerate(lines):
@@ -271,9 +270,10 @@
if len(printed_prefixes) != 0:
output_lines.append(comment_marker)
+ vars_seen = set()
printed_prefixes.append(checkprefix)
args_and_sig = str(func_dict[checkprefix][func_name].args_and_sig)
- args_and_sig = genericize_check_lines([args_and_sig], is_analyze)[0]
+ args_and_sig = genericize_check_lines([args_and_sig], is_analyze, vars_seen)[0]
if '[[' in args_and_sig:
output_lines.append(check_label_format % (checkprefix, func_name, ''))
output_lines.append('%s %s-SAME: %s' % (comment_marker, checkprefix, args_and_sig))
@@ -290,7 +290,7 @@
# For IR output, change all defs to FileCheck variables, so we're immune
# to variable naming fashions.
- func_body = genericize_check_lines(func_body, is_analyze)
+ func_body = genericize_check_lines(func_body, is_analyze, vars_seen)
# This could be selectively enabled with an optional invocation argument.
# Disabled for now: better to check everything. Be safe rather than sorry.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D69722.227484.patch
Type: text/x-patch
Size: 1848 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191101/6f271768/attachment-0001.bin>
More information about the llvm-commits
mailing list