1 //===--- Le64.cpp - Implement Le64 target feature support -----------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements Le64 TargetInfo objects. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "Le64.h" 15 #include "Targets.h" 16 #include "clang/Basic/Builtins.h" 17 #include "clang/Basic/MacroBuilder.h" 18 #include "clang/Basic/TargetBuiltins.h" 19 20 using namespace clang; 21 using namespace clang::targets; 22 23 const Builtin::Info Le64TargetInfo::BuiltinInfo[] = { 24 #define BUILTIN(ID, TYPE, ATTRS) \ 25 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr}, 26 #include "clang/Basic/BuiltinsLe64.def" 27 }; 28 29 ArrayRef<Builtin::Info> Le64TargetInfo::getTargetBuiltins() const { 30 return llvm::makeArrayRef(BuiltinInfo, clang::Le64::LastTSBuiltin - 31 Builtin::FirstTSBuiltin); 32 } 33 34 void Le64TargetInfo::getTargetDefines(const LangOptions &Opts, 35 MacroBuilder &Builder) const { 36 DefineStd(Builder, "unix", Opts); 37 defineCPUMacros(Builder, "le64", /*Tuning=*/false); 38 Builder.defineMacro("__ELF__"); 39 } 40