Warning, /include/clang/Basic/BuiltinsVE.def is written in an unsupported language. File is not indexed.
0001 //===--- BuiltinsVE.def - VE Builtin function database ----------*- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===----------------------------------------------------------------------===//
0008 //
0009 // This file defines the VE-specific builtin function database. Users of
0010 // this file must define the BUILTIN macro to make use of this information.
0011 //
0012 //===----------------------------------------------------------------------===//
0013
0014 #if defined(BUILTIN) && !defined(TARGET_BUILTIN)
0015 # define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) BUILTIN(ID, TYPE, ATTRS)
0016 #endif
0017
0018 // The format of this database is described in clang/Basic/Builtins.def.
0019
0020 BUILTIN(__builtin_ve_vl_pack_f32p, "ULifC*fC*", "n")
0021 BUILTIN(__builtin_ve_vl_pack_f32a, "ULifC*", "n")
0022
0023 BUILTIN(__builtin_ve_vl_extract_vm512u, "V256bV512b", "n")
0024 BUILTIN(__builtin_ve_vl_extract_vm512l, "V256bV512b", "n")
0025 BUILTIN(__builtin_ve_vl_insert_vm512u, "V512bV512bV256b", "n")
0026 BUILTIN(__builtin_ve_vl_insert_vm512l, "V512bV512bV256b", "n")
0027
0028 // Use generated BUILTIN definitions
0029 #include "clang/Basic/BuiltinsVEVL.gen.def"
0030
0031 #undef BUILTIN
0032 #undef TARGET_BUILTIN