RISCV.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. //===--- RISCV.h - RISCV-specific 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. #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_RISCV_H
  9. #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_RISCV_H
  10. #include "clang/Driver/Driver.h"
  11. #include "llvm/ADT/StringRef.h"
  12. #include "llvm/Option/Option.h"
  13. #include <string>
  14. #include <vector>
  15. namespace clang {
  16. namespace driver {
  17. namespace tools {
  18. namespace riscv {
  19. void getRISCVTargetFeatures(const Driver &D, const llvm::Triple &Triple,
  20. const llvm::opt::ArgList &Args,
  21. std::vector<llvm::StringRef> &Features);
  22. StringRef getRISCVABI(const llvm::opt::ArgList &Args,
  23. const llvm::Triple &Triple);
  24. StringRef getRISCVArch(const llvm::opt::ArgList &Args,
  25. const llvm::Triple &Triple);
  26. } // end namespace riscv
  27. } // namespace tools
  28. } // end namespace driver
  29. } // end namespace clang
  30. #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_RISCV_H