Home
last modified time | relevance | path

Searched refs:ToolSubst (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/test/
Dlit.cfg.py15 from lit.llvm.subst import ToolSubst
129 ToolSubst('%lli', FindTool('lli'), post='.', extra_args=lli_args),
130 ToolSubst('%llc_dwarf', FindTool('llc'), extra_args=llc_args),
131 ToolSubst('%go', config.go_executable, unresolved='ignore'),
132 ToolSubst('%gold', config.gold_executable, unresolved='ignore'),
133 ToolSubst('%ld64', ld64_cmd, unresolved='ignore'),
134 ToolSubst('%ocamlc', ocamlc_command, unresolved='ignore'),
135 ToolSubst('%ocamlopt', ocamlopt_command, unresolved='ignore'),
136 ToolSubst('%opt-viewer', opt_viewer_cmd),
137 ToolSubst('%llvm-objcopy', FindTool('llvm-objcopy')),
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/llvm/
Dconfig.py9 from lit.llvm.subst import ToolSubst
268 tools = [x if isinstance(x, ToolSubst) else ToolSubst(x)
296 ToolSubst('FileCheck', unresolved='fatal'),
298 ToolSubst(r'\| \bcount\b', command=FindTool(
300 ToolSubst(r'\| \bnot\b', command=FindTool('not'), verbatim=True, unresolved='fatal')]
391 ToolSubst('%clang', command=self.config.clang),
392ToolSubst('%clang_analyze_cc1', command='%clang_cc1', extra_args=['-analyze', '%analyze']),
393ToolSubst('%clang_cc1', command=self.config.clang, extra_args=['-cc1', '-internal-isystem', builti…
394 ToolSubst('%clang_cpp', command=self.config.clang, extra_args=['--driver-mode=cpp']),
395 ToolSubst('%clang_cl', command=self.config.clang, extra_args=['--driver-mode=cl']),
[all …]
Dsubst.py33 class ToolSubst(object): class