Lines Matching defs:builtin
7 # Giant associative set of builtin->intrinsic mappings where clang
8 # doesn't implement the builtin. (Either because the vector operation
9 # works without a builtin, or for other reasons.)
242 def report_repl(builtin, repl):
244 "%s:%d: x86 builtin %s used, replaced with %s\n"
245 % (fileinput.filename(), fileinput.filelineno(), builtin, repl)
249 def report_cant(builtin):
251 "%s:%d: x86 builtin %s used, too many replacements\n"
252 % (fileinput.filename(), fileinput.filelineno(), builtin)
257 for builtin, repl in repl_map.items():
258 if builtin in line:
259 line = line.replace(builtin, repl)
260 report_repl(builtin, repl)