| //===--- XCore.cpp - Implement XCore target feature support ---------------===// |
| // |
| // 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 file implements XCore TargetInfo objects. |
| // |
| //===----------------------------------------------------------------------===// |
| |
| #include "XCore.h" |
| #include "clang/Basic/Builtins.h" |
| #include "clang/Basic/MacroBuilder.h" |
| #include "clang/Basic/TargetBuiltins.h" |
| |
| using namespace clang; |
| using namespace clang::targets; |
| |
| static constexpr int NumBuiltins = |
| XCore::LastTSBuiltin - Builtin::FirstTSBuiltin; |
| |
| static constexpr llvm::StringTable BuiltinStrings = |
| CLANG_BUILTIN_STR_TABLE_START |
| #define BUILTIN CLANG_BUILTIN_STR_TABLE |
| #include "clang/Basic/BuiltinsXCore.def" |
| ; |
| |
| static constexpr auto BuiltinInfos = Builtin::MakeInfos<NumBuiltins>({ |
| #define BUILTIN CLANG_BUILTIN_ENTRY |
| #define LIBBUILTIN CLANG_LIBBUILTIN_ENTRY |
| #include "clang/Basic/BuiltinsXCore.def" |
| }); |
| |
| void XCoreTargetInfo::getTargetDefines(const LangOptions &Opts, |
| MacroBuilder &Builder) const { |
| Builder.defineMacro("__xcore__"); |
| Builder.defineMacro("__XS1B__"); |
| } |
| |
| llvm::SmallVector<Builtin::InfosShard> |
| XCoreTargetInfo::getTargetBuiltins() const { |
| return {{&BuiltinStrings, BuiltinInfos}}; |
| } |