Searched refs:raw_tool_output (Results 1 – 7 of 7) sorted by relevance
/openbsd-src/gnu/llvm/llvm/utils/ |
H A D | update_analyze_test_checks.py | 115 for raw_tool_output in re.split(r'Printing analysis ', raw_tool_outputs): 117 raw_tool_output, prefixes, False) 120 for raw_tool_output in re.split(r'LV: Checking a loop in ', raw_tool_outputs): 122 raw_tool_output, prefixes, False)
|
H A D | update_cc_test_checks.py | 207 raw_tool_output = common.invoke_tool(args.clang, clang_args, filename) 211 f.write(raw_tool_output.encode()) 219 raw_tool_output = common.invoke_tool(extra_args[0], 223 common.OPT_FUNCTION_RE, common.scrub_body, raw_tool_output,
|
H A D | update_mca_test_checks.py | 303 raw_tool_output = common.invoke_tool(args.llvm_mca_binary, 308 raw_tool_output = '\n'.join(line if line.strip() else '' 309 for line in raw_tool_output.splitlines()) 314 for b in raw_tool_output.split('\n\n')]
|
H A D | update_mir_test_checks.py | 187 def build_function_info_dictionary(test, raw_tool_output, triple, prefixes, argument 189 for m in MIR_FUNC_RE.finditer(raw_tool_output): 343 raw_tool_output = args.llc_binary(llc_args, test) 348 build_function_info_dictionary(test, raw_tool_output,
|
H A D | update_llc_test_checks.py | 131 raw_tool_output = common.invoke_tool(ti.args.llc_binary or llc_tool, 139 builder.process_run_line(function_re, scrubber, raw_tool_output, prefixes, True)
|
H A D | update_test_checks.py | 134 raw_tool_output = common.invoke_tool(tool_binary, tool_args, 138 raw_tool_output, prefixes, False)
|
/openbsd-src/gnu/llvm/llvm/utils/UpdateTestChecks/ |
H A D | common.py | 522 def process_run_line(self, function_re, scrubber, raw_tool_output, prefixes, is_backend): argument 523 build_global_values_dictionary(self._global_var_dict, raw_tool_output, prefixes) 524 for m in function_re.finditer(raw_tool_output): 1046 def build_global_values_dictionary(glob_val_dict, raw_tool_output, prefixes): argument 1057 for m in global_ir_value_re.finditer(raw_tool_output):
|