//===--- Sparc.h - declare sparc target feature support ---------*- 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 file declares Sparc TargetInfo objects. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_LIB_BASIC_TARGETS_SPARC_H #define LLVM_CLANG_LIB_BASIC_TARGETS_SPARC_H #include "clang/Basic/TargetInfo.h" #include "clang/Basic/TargetOptions.h" #include "llvm/Support/Compiler.h" #include "llvm/TargetParser/Triple.h" namespace clang { namespace targets { // Shared base class for SPARC v8 (32-bit) and SPARC v9 (64-bit). class LLVM_LIBRARY_VISIBILITY SparcTargetInfo : public TargetInfo { … }; // SPARC v8 is the 32-bit mode selected by Triple::sparc. class LLVM_LIBRARY_VISIBILITY SparcV8TargetInfo : public SparcTargetInfo { … }; // SPARCV8el is the 32-bit little-endian mode selected by Triple::sparcel. class LLVM_LIBRARY_VISIBILITY SparcV8elTargetInfo : public SparcV8TargetInfo { … }; // SPARC v9 is the 64-bit mode selected by Triple::sparcv9. class LLVM_LIBRARY_VISIBILITY SparcV9TargetInfo : public SparcTargetInfo { … }; } // namespace targets } // namespace clang #endif // LLVM_CLANG_LIB_BASIC_TARGETS_SPARC_H