Path: blob/main/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/AArch64.h
35294 views
//===--- AArch64.h - AArch64-specific (not ARM) 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_AARCH64_H9#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_AARCH64_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 aarch64 {2122void getAArch64TargetFeatures(const Driver &D, const llvm::Triple &Triple,23const llvm::opt::ArgList &Args,24std::vector<llvm::StringRef> &Features,25bool ForAS);2627std::string getAArch64TargetCPU(const llvm::opt::ArgList &Args,28const llvm::Triple &Triple, llvm::opt::Arg *&A);2930void setPAuthABIInTriple(const Driver &D, const llvm::opt::ArgList &Args,31llvm::Triple &triple);3233} // end namespace aarch6434} // end namespace target35} // end namespace driver36} // end namespace clang3738#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_AARCH64_H394041