Path: blob/main/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/SystemZ.h
35294 views
//===--- SystemZ.h - SystemZ-specific Tool Helpers --------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_SYSTEMZ_H9#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_SYSTEMZ_H1011#include "clang/Driver/Driver.h"12#include "llvm/ADT/StringRef.h"13#include "llvm/Option/Option.h"14#include <string>15#include <vector>1617namespace clang {18namespace driver {19namespace tools {20namespace systemz {2122enum class FloatABI {23Soft,24Hard,25};2627FloatABI getSystemZFloatABI(const Driver &D, const llvm::opt::ArgList &Args);2829std::string getSystemZTargetCPU(const llvm::opt::ArgList &Args);3031void getSystemZTargetFeatures(const Driver &D, const llvm::opt::ArgList &Args,32std::vector<llvm::StringRef> &Features);3334} // end namespace systemz35} // end namespace target36} // end namespace driver37} // end namespace clang3839#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_SYSTEMZ_H404142