Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/AArch64.h
35294 views
1
//===--- AArch64.h - AArch64-specific (not ARM) Tool Helpers ----*- C++ -*-===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_AARCH64_H
10
#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_AARCH64_H
11
12
#include "clang/Driver/Driver.h"
13
#include "llvm/ADT/StringRef.h"
14
#include "llvm/Option/Option.h"
15
#include <string>
16
#include <vector>
17
18
namespace clang {
19
namespace driver {
20
namespace tools {
21
namespace aarch64 {
22
23
void getAArch64TargetFeatures(const Driver &D, const llvm::Triple &Triple,
24
const llvm::opt::ArgList &Args,
25
std::vector<llvm::StringRef> &Features,
26
bool ForAS);
27
28
std::string getAArch64TargetCPU(const llvm::opt::ArgList &Args,
29
const llvm::Triple &Triple, llvm::opt::Arg *&A);
30
31
void setPAuthABIInTriple(const Driver &D, const llvm::opt::ArgList &Args,
32
llvm::Triple &triple);
33
34
} // end namespace aarch64
35
} // end namespace target
36
} // end namespace driver
37
} // end namespace clang
38
39
#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_AARCH64_H
40
41