36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
//===--- AArch64.h - AArch64-specific (not ARM) Tool Helpers ----*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_AARCH64_H
|
|
#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_AARCH64_H
|
|
|
|
#include "clang/Driver/Driver.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/Option/Option.h"
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace clang {
|
|
namespace driver {
|
|
namespace tools {
|
|
namespace aarch64 {
|
|
|
|
void getAArch64TargetFeatures(const Driver &D, const llvm::opt::ArgList &Args,
|
|
std::vector<llvm::StringRef> &Features);
|
|
|
|
std::string getAArch64TargetCPU(const llvm::opt::ArgList &Args,
|
|
llvm::opt::Arg *&A);
|
|
|
|
} // end namespace aarch64
|
|
} // end namespace target
|
|
} // end namespace driver
|
|
} // end namespace clang
|
|
|
|
#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_AARCH64_H
|