Home
last modified time | relevance | path

Searched refs:raw_tool_output (Results 1 – 10 of 10) sorted by relevance

/external/llvm/utils/
Dupdate_llc_test_checks.py75 def build_function_body_dictionary(raw_tool_output, prefixes, func_dict, verbose): argument
76 for m in ASM_FUNCTION_RE.finditer(raw_tool_output):
197 raw_tool_output = llc(args, llc_args, test)
198 build_function_body_dictionary(raw_tool_output, prefixes, func_dict, args.verbose)
Dupdate_test_checks.py113 def build_function_body_dictionary(raw_tool_output, prefixes, func_dict, verbose, tool_basename): argument
118 for m in func_regex.finditer(raw_tool_output):
335 raw_tool_output = invoke_tool(args, tool_args, test)
336 … build_function_body_dictionary(raw_tool_output, prefixes, func_dict, args.verbose, tool_basename)
/external/llvm-project/llvm/utils/
Dupdate_cc_test_checks.py183 raw_tool_output = common.invoke_tool(args.clang, clang_args, filename)
187 f.write(raw_tool_output.encode())
195 raw_tool_output = common.invoke_tool(extra_args[0],
200 raw_tool_output, prefixes, func_dict, func_order, args.verbose,
Dupdate_mca_test_checks.py303 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')]
Dupdate_mir_test_checks.py170 def build_function_body_dictionary(test, raw_tool_output, triple, prefixes, argument
172 for m in MIR_FUNC_RE.finditer(raw_tool_output):
312 raw_tool_output = args.llc(llc_args, test)
317 build_function_body_dictionary(test, raw_tool_output,
Dupdate_analyze_test_checks.py124 for raw_tool_output in re.split(r'Printing analysis ', raw_tool_outputs):
127 raw_tool_output, prefixes, func_dict, func_order, args.verbose, False, False)
Dupdate_llc_test_checks.py113 raw_tool_output = common.invoke_tool(ti.args.llc_binary or llc_tool, llc_args, ti.path)
118 asm.build_function_body_dictionary_for_triple(ti.args, raw_tool_output,
Dupdate_test_checks.py115 raw_tool_output = common.invoke_tool(ti.args.opt_binary, opt_args, ti.path)
118 raw_tool_output, prefixes, func_dict, func_order, ti.args.verbose,
/external/llvm-project/llvm/utils/UpdateTestChecks/
Dasm.py326 def build_function_body_dictionary_for_triple(args, raw_tool_output, triple, argument
370 function_re, scrubber, [args], raw_tool_output, prefixes,
Dcommon.py261 def build_function_body_dictionary(function_re, scrubber, scrubber_args, raw_tool_output, prefixes,… argument
262 for m in function_re.finditer(raw_tool_output):