//===-- CodeGenFunction.h - Target features for builtin ---------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This is the internal required target features for builtin. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_LIB_BASIC_BUILTINTARGETFEATURES_H #define LLVM_CLANG_LIB_BASIC_BUILTINTARGETFEATURES_H #include "llvm/ADT/StringMap.h" #include "llvm/ADT/StringRef.h" StringRef; namespace clang { namespace Builtin { /// TargetFeatures - This class is used to check whether the builtin function /// has the required tagert specific features. It is able to support the /// combination of ','(and), '|'(or), and '()'. By default, the priority of /// ',' is higher than that of '|' . /// E.g: /// A,B|C means the builtin function requires both A and B, or C. /// If we want the builtin function requires both A and B, or both A and C, /// there are two ways: A,B|A,C or A,(B|C). /// The FeaturesList should not contain spaces, and brackets must appear in /// pairs. class TargetFeatures { … }; } // namespace Builtin } // namespace clang #endif /* CLANG_LIB_BASIC_BUILTINTARGETFEATURES_H */