HomeSort by: relevance | last modified time | path
    Searched refs:raw_tool_output (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/
update_cc_test_checks.py 183 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],
199 common.OPT_FUNCTION_RE, common.scrub_body, raw_tool_output,
update_analyze_test_checks.py 127 for raw_tool_output in re.split(r'Printing analysis ', raw_tool_outputs):
129 raw_tool_output, prefixes)
update_llc_test_checks.py 123 raw_tool_output = common.invoke_tool(ti.args.llc_binary or llc_tool,
131 builder.process_run_line(function_re, scrubber, raw_tool_output, prefixes)
update_test_checks.py 122 raw_tool_output = common.invoke_tool(ti.args.opt_binary, opt_args,
126 raw_tool_output, prefixes)
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')]
update_mir_test_checks.py 170 def build_function_body_dictionary(test, raw_tool_output, triple, prefixes,
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,
  /src/external/apache2/llvm/dist/llvm/utils/UpdateTestChecks/
common.py 321 def process_run_line(self, function_re, scrubber, raw_tool_output, prefixes):
322 build_global_values_dictionary(self._global_var_dict, raw_tool_output, prefixes)
323 for m in function_re.finditer(raw_tool_output):
744 def build_global_values_dictionary(glob_val_dict, raw_tool_output, prefixes):
755 for m in global_ir_value_re.finditer(raw_tool_output):

Completed in 19 milliseconds