Searched refs:raw_tool_output (Results 1 – 7 of 7) sorted by relevance
/llvm-project/llvm/utils/ |
H A D | update_analyze_test_checks.py | 128 for raw_tool_output in re.split( 134 raw_tool_output, 141 for raw_tool_output in re.split( 147 raw_tool_output,
|
H A D | update_mca_test_checks.py | 285 raw_tool_output = common.invoke_tool(args.llvm_mca_binary, tool_args, test_path) 288 raw_tool_output = "\n".join( 289 line if line.strip() else "" for line in raw_tool_output.splitlines() 295 b.lstrip("\n").rstrip() for b in raw_tool_output.split("\n\n")
|
H A D | update_cc_test_checks.py | 261 builder, args, filename, clang_args, extra_commands, prefixes, raw_tool_output 267 f.write(raw_tool_output.encode()) 278 raw_tool_output = common.invoke_tool(extra_args[0], extra_args[1:], f.name) 281 common.OPT_FUNCTION_RE, common.scrub_body, raw_tool_output, prefixes 395 raw_tool_output = common.invoke_tool(ti.args.clang, clang_args, ti.path) 403 raw_tool_output, 409 ti.args, clang_args, common.get_globals_name_prefix(raw_tool_output)
|
H A D | update_mir_test_checks.py | 189 test, raw_tool_output, triple, prefixes, func_dict, verbose argument 191 for m in MIR_FUNC_RE.finditer(raw_tool_output): 365 raw_tool_output = args.llc_binary(llc_args, test) 372 raw_tool_output,
|
H A D | update_llc_test_checks.py | 182 raw_tool_output = common.invoke_tool( 194 builder.process_run_line(function_re, scrubber, raw_tool_output, prefixes)
|
H A D | update_test_checks.py | 174 raw_tool_output = common.invoke_tool( 184 raw_tool_output,
|
/llvm-project/llvm/utils/UpdateTestChecks/ |
H A D | common.py | 659 def get_globals_name_prefix(raw_tool_output): 660 m = DATA_LAYOUT_RE.search(raw_tool_output) 836 def process_run_line(self, function_re, scrubber, raw_tool_output, prefixes): 838 self._global_var_dict, raw_tool_output, prefixes, self._ginfo 840 for m in function_re.finditer(raw_tool_output): 2216 def build_global_values_dictionary(glob_val_dict, raw_tool_output, prefixes, ginfo): 2227 for m in global_ir_value_re.finditer(raw_tool_output): 815 process_run_line(self, function_re, scrubber, raw_tool_output, prefixes) global() argument 2119 build_global_values_dictionary(glob_val_dict, raw_tool_output, prefixes, ginfo) global() argument
|