ARMMCAsmInfo.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //===-- ARMMCAsmInfo.h - ARM asm properties --------------------*- 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. // This file contains the declaration of the ARMMCAsmInfo class.
  10. //
  11. //===----------------------------------------------------------------------===//
  12. #ifndef LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMMCASMINFO_H
  13. #define LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMMCASMINFO_H
  14. #include "llvm/MC/MCAsmInfoCOFF.h"
  15. #include "llvm/MC/MCAsmInfoDarwin.h"
  16. #include "llvm/MC/MCAsmInfoELF.h"
  17. namespace llvm {
  18. class Triple;
  19. class ARMMCAsmInfoDarwin : public MCAsmInfoDarwin {
  20. virtual void anchor();
  21. public:
  22. explicit ARMMCAsmInfoDarwin(const Triple &TheTriple);
  23. };
  24. class ARMELFMCAsmInfo : public MCAsmInfoELF {
  25. void anchor() override;
  26. public:
  27. explicit ARMELFMCAsmInfo(const Triple &TT);
  28. void setUseIntegratedAssembler(bool Value) override;
  29. };
  30. class ARMCOFFMCAsmInfoMicrosoft : public MCAsmInfoMicrosoft {
  31. void anchor() override;
  32. public:
  33. explicit ARMCOFFMCAsmInfoMicrosoft();
  34. };
  35. class ARMCOFFMCAsmInfoGNU : public MCAsmInfoGNUCOFF {
  36. void anchor() override;
  37. public:
  38. explicit ARMCOFFMCAsmInfoGNU();
  39. };
  40. } // namespace llvm
  41. #endif