| #!/usr/bin/env python2.7 |
| |
| """A test case update script. |
| |
| This script is a utility to update LLVM 'llvm-mca' based test cases with new |
| FileCheck patterns. |
| """ |
| |
| import argparse |
| from collections import defaultdict |
| import glob |
| import os |
| import sys |
| import warnings |
| |
| from UpdateTestChecks import common |
| |
| |
| COMMENT_CHAR = '#' |
| ADVERT_PREFIX = '{} NOTE: Assertions have been autogenerated by '.format( |
| COMMENT_CHAR) |
| ADVERT = '{}utils/{}'.format(ADVERT_PREFIX, os.path.basename(__file__)) |
| |
| |
| class Error(Exception): |
| """ Generic Error to be raised without printing a traceback. |
| """ |
| pass |
| |
| |
| def _warn(msg): |
| """ Log a user warning to stderr. |
| """ |
| warnings.warn(msg, Warning, stacklevel=2) |
| |
| |
| def _configure_warnings(args): |
| warnings.resetwarnings() |
| if args.w: |
| warnings.simplefilter('ignore') |
| if args.Werror: |
| warnings.simplefilter('error') |
| |
| |
| def _showwarning(message, category, filename, lineno, file=None, line=None): |
| """ Version of warnings.showwarning that won't attempt to print out the |
| line at the location of the warning if the line text is not explicitly |
| specified. |
| """ |
| if file is None: |
| file = sys.stderr |
| if line is None: |
| line = '' |
| file.write(warnings.formatwarning(message, category, filename, lineno, line)) |
| |
| |
| def _parse_args(): |
| parser = argparse.ArgumentParser(description=__doc__) |
| parser.add_argument('-v', '--verbose', |
| action='store_true', |
| help='show verbose output') |
| parser.add_argument('-w', |
| action='store_true', |
| help='suppress warnings') |
| parser.add_argument('-Werror', |
| action='store_true', |
| help='promote warnings to errors') |
| parser.add_argument('--llvm-mca-binary', |
| metavar='<path>', |
| default='llvm-mca', |
| help='the binary to use to generate the test case ' |
| '(default: llvm-mca)') |
| parser.add_argument('tests', |
| metavar='<test-path>', |
| nargs='+') |
| args = parser.parse_args() |
| |
| _configure_warnings(args) |
| |
| if os.path.basename(args.llvm_mca_binary) != 'llvm-mca': |
| _warn('unexpected binary name: {}'.format(args.llvm_mca_binary)) |
| |
| return args |
| |
| |
| def _find_run_lines(input_lines, args): |
| raw_lines = [m.group(1) |
| for m in [common.RUN_LINE_RE.match(l) for l in input_lines] |
| if m] |
| run_lines = [raw_lines[0]] if len(raw_lines) > 0 else [] |
| for l in raw_lines[1:]: |
| if run_lines[-1].endswith(r'\\'): |
| run_lines[-1] = run_lines[-1].rstrip('\\') + ' ' + l |
| else: |
| run_lines.append(l) |
| |
| if args.verbose: |
| sys.stderr.write('Found {} RUN line{}:\n'.format( |
| len(run_lines), '' if len(run_lines) == 1 else 's')) |
| for line in run_lines: |
| sys.stderr.write(' RUN: {}\n'.format(line)) |
| |
| return run_lines |
| |
| |
| def _get_run_infos(run_lines, args): |
| run_infos = [] |
| for run_line in run_lines: |
| try: |
| (tool_cmd, filecheck_cmd) = tuple([cmd.strip() |
| for cmd in run_line.split('|', 1)]) |
| except ValueError: |
| _warn('could not split tool and filecheck commands: {}'.format(run_line)) |
| continue |
| |
| tool_basename = os.path.basename(args.llvm_mca_binary) |
| |
| if not tool_cmd.startswith(tool_basename + ' '): |
| _warn('skipping non-{} RUN line: {}'.format(tool_basename, run_line)) |
| continue |
| |
| if not filecheck_cmd.startswith('FileCheck '): |
| _warn('skipping non-FileCheck RUN line: {}'.format(run_line)) |
| continue |
| |
| tool_cmd_args = tool_cmd[len(tool_basename):].strip() |
| tool_cmd_args = tool_cmd_args.replace('< %s', '').replace('%s', '').strip() |
| |
| check_prefixes = [item |
| for m in common.CHECK_PREFIX_RE.finditer(filecheck_cmd) |
| for item in m.group(1).split(',')] |
| if not check_prefixes: |
| check_prefixes = ['CHECK'] |
| |
| run_infos.append((check_prefixes, tool_cmd_args)) |
| |
| return run_infos |
| |
| |
| def _get_block_infos(run_infos, test_path, args): # noqa |
| """ For each run line, run the tool with the specified args and collect the |
| output. We use the concept of 'blocks' for uniquing, where a block is |
| a series of lines of text with no more than one newline character between |
| each one. For example: |
| |
| This |
| is |
| one |
| block |
| |
| This is |
| another block |
| |
| This is yet another block |
| |
| We then build up a 'block_infos' structure containing a dict where the |
| text of each block is the key and a list of the sets of prefixes that may |
| generate that particular block. This then goes through a series of |
| transformations to minimise the amount of CHECK lines that need to be |
| written by taking advantage of common prefixes. |
| """ |
| |
| def _block_key(tool_args, prefixes): |
| """ Get a hashable key based on the current tool_args and prefixes. |
| """ |
| return ' '.join([tool_args] + prefixes) |
| |
| all_blocks = {} |
| max_block_len = 0 |
| |
| # Run the tool for each run line to generate all of the blocks. |
| for prefixes, tool_args in run_infos: |
| key = _block_key(tool_args, prefixes) |
| raw_tool_output = common.invoke_tool(args.llvm_mca_binary, |
| tool_args, |
| test_path) |
| |
| # Replace any lines consisting of purely whitespace with empty lines. |
| raw_tool_output = '\n'.join(line if line.strip() else '' |
| for line in raw_tool_output.splitlines()) |
| |
| # Split blocks, stripping all trailing whitespace, but keeping preceding |
| # whitespace except for newlines so that columns will line up visually. |
| all_blocks[key] = [b.lstrip('\n').rstrip() |
| for b in raw_tool_output.split('\n\n')] |
| max_block_len = max(max_block_len, len(all_blocks[key])) |
| |
| # If necessary, pad the lists of blocks with empty blocks so that they are |
| # all the same length. |
| for key in all_blocks: |
| len_to_pad = max_block_len - len(all_blocks[key]) |
| all_blocks[key] += [''] * len_to_pad |
| |
| # Create the block_infos structure where it is a nested dict in the form of: |
| # block number -> block text -> list of prefix sets |
| block_infos = defaultdict(lambda: defaultdict(list)) |
| for prefixes, tool_args in run_infos: |
| key = _block_key(tool_args, prefixes) |
| for block_num, block_text in enumerate(all_blocks[key]): |
| block_infos[block_num][block_text].append(set(prefixes)) |
| |
| # Now go through the block_infos structure and attempt to smartly prune the |
| # number of prefixes per block to the minimal set possible to output. |
| for block_num in range(len(block_infos)): |
| |
| # When there are multiple block texts for a block num, remove any |
| # prefixes that are common to more than one of them. |
| # E.g. [ [{ALL,FOO}] , [{ALL,BAR}] ] -> [ [{FOO}] , [{BAR}] ] |
| all_sets = [s for s in block_infos[block_num].values()] |
| pruned_sets = [] |
| |
| for i, setlist in enumerate(all_sets): |
| other_set_values = set([elem for j, setlist2 in enumerate(all_sets) |
| for set_ in setlist2 for elem in set_ |
| if i != j]) |
| pruned_sets.append([s - other_set_values for s in setlist]) |
| |
| for i, block_text in enumerate(block_infos[block_num]): |
| |
| # When a block text matches multiple sets of prefixes, try removing any |
| # prefixes that aren't common to all of them. |
| # E.g. [ {ALL,FOO} , {ALL,BAR} ] -> [{ALL}] |
| common_values = pruned_sets[i][0].copy() |
| for s in pruned_sets[i][1:]: |
| common_values &= s |
| if common_values: |
| pruned_sets[i] = [common_values] |
| |
| # Everything should be uniqued as much as possible by now. Apply the |
| # newly pruned sets to the block_infos structure. |
| # If there are any blocks of text that still match multiple prefixes, |
| # output a warning. |
| current_set = set() |
| for s in pruned_sets[i]: |
| s = sorted(list(s)) |
| if s: |
| current_set.add(s[0]) |
| if len(s) > 1: |
| _warn('Multiple prefixes generating same output: {} ' |
| '(discarding {})'.format(','.join(s), ','.join(s[1:]))) |
| |
| block_infos[block_num][block_text] = sorted(list(current_set)) |
| |
| return block_infos |
| |
| |
| def _write_output(test_path, input_lines, prefix_list, block_infos, # noqa |
| args): |
| prefix_set = set([prefix for prefixes, _ in prefix_list |
| for prefix in prefixes]) |
| not_prefix_set = set() |
| |
| output_lines = [] |
| for input_line in input_lines: |
| if input_line.startswith(ADVERT_PREFIX): |
| continue |
| |
| if input_line.startswith(COMMENT_CHAR): |
| m = common.CHECK_RE.match(input_line) |
| try: |
| prefix = m.group(1) |
| except AttributeError: |
| prefix = None |
| |
| if '{}-NOT:'.format(prefix) in input_line: |
| not_prefix_set.add(prefix) |
| |
| if prefix not in prefix_set or prefix in not_prefix_set: |
| output_lines.append(input_line) |
| continue |
| |
| if common.should_add_line_to_output(input_line, prefix_set): |
| # This input line of the function body will go as-is into the output. |
| # Except make leading whitespace uniform: 2 spaces. |
| input_line = common.SCRUB_LEADING_WHITESPACE_RE.sub(r' ', input_line) |
| |
| # Skip empty lines if the previous output line is also empty. |
| if input_line or output_lines[-1]: |
| output_lines.append(input_line) |
| else: |
| continue |
| |
| # Add a blank line before the new checks if required. |
| if output_lines[-1]: |
| output_lines.append('') |
| |
| output_check_lines = [] |
| for block_num in range(len(block_infos)): |
| for block_text in sorted(block_infos[block_num]): |
| if not block_text: |
| continue |
| |
| if block_infos[block_num][block_text]: |
| lines = block_text.split('\n') |
| for prefix in block_infos[block_num][block_text]: |
| if prefix in not_prefix_set: |
| _warn('not writing for prefix {0} due to presence of "{0}-NOT:" ' |
| 'in input file.'.format(prefix)) |
| continue |
| |
| output_check_lines.append( |
| '{} {}: {}'.format(COMMENT_CHAR, prefix, lines[0]).rstrip()) |
| for line in lines[1:]: |
| output_check_lines.append( |
| '{} {}-NEXT: {}'.format(COMMENT_CHAR, prefix, line).rstrip()) |
| output_check_lines.append('') |
| |
| if output_check_lines: |
| output_lines.insert(0, ADVERT) |
| output_lines.extend(output_check_lines) |
| |
| if input_lines == output_lines: |
| sys.stderr.write(' [unchanged]\n') |
| return |
| sys.stderr.write(' [{} lines total]\n'.format(len(output_lines))) |
| |
| if args.verbose: |
| sys.stderr.write( |
| 'Writing {} lines to {}...\n\n'.format(len(output_lines), test_path)) |
| |
| with open(test_path, 'wb') as f: |
| for line in output_lines: |
| f.write('{}\n'.format(line.rstrip()).encode()) |
| |
| |
| def main(): |
| args = _parse_args() |
| test_paths = [test for pattern in args.tests for test in glob.glob(pattern)] |
| for test_path in test_paths: |
| sys.stderr.write('Test: {}\n'.format(test_path)) |
| |
| # Call this per test. By default each warning will only be written once |
| # per source location. Reset the warning filter so that now each warning |
| # will be written once per source location per test. |
| _configure_warnings(args) |
| |
| if args.verbose: |
| sys.stderr.write( |
| 'Scanning for RUN lines in test file: {}\n'.format(test_path)) |
| |
| if not os.path.isfile(test_path): |
| raise Error('could not find test file: {}'.format(test_path)) |
| |
| with open(test_path) as f: |
| input_lines = [l.rstrip() for l in f] |
| |
| run_lines = _find_run_lines(input_lines, args) |
| run_infos = _get_run_infos(run_lines, args) |
| block_infos = _get_block_infos(run_infos, test_path, args) |
| _write_output(test_path, input_lines, run_infos, block_infos, args) |
| |
| return 0 |
| |
| |
| if __name__ == '__main__': |
| try: |
| warnings.showwarning = _showwarning |
| sys.exit(main()) |
| except Error as e: |
| sys.stdout.write('error: {}\n'.format(e)) |
| sys.exit(1) |