#ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_LOONGARCH_H
#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_LOONGARCH_H
#include "clang/Driver/Driver.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Option/Option.h"
namespace clang {
namespace driver {
namespace tools {
namespace loongarch {
void getLoongArchTargetFeatures(const Driver &D, const llvm::Triple &Triple,
const llvm::opt::ArgList &Args,
std::vector<llvm::StringRef> &Features);
StringRef getLoongArchABI(const Driver &D, const llvm::opt::ArgList &Args,
const llvm::Triple &Triple);
std::string postProcessTargetCPUString(const std::string &CPU,
const llvm::Triple &Triple);
std::string getLoongArchTargetCPU(const llvm::opt::ArgList &Args,
const llvm::Triple &Triple);
}
}
}
}
#endif