6cb471537f6eca4131fa5990c98ce72802563967
[oota-llvm.git] / lib / Target / ARM / MCTargetDesc / ARMMCAsmInfo.h
1 //===-- ARMMCAsmInfo.h - ARM asm properties --------------------*- C++ -*--===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the declaration of the ARMMCAsmInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMMCASMINFO_H
15 #define LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMMCASMINFO_H
16
17 #include "llvm/MC/MCAsmInfoCOFF.h"
18 #include "llvm/MC/MCAsmInfoDarwin.h"
19 #include "llvm/MC/MCAsmInfoELF.h"
20
21 namespace llvm {
22
23   class ARMMCAsmInfoDarwin : public MCAsmInfoDarwin {
24     virtual void anchor();
25
26   public:
27     explicit ARMMCAsmInfoDarwin(StringRef TT);
28   };
29
30   class ARMELFMCAsmInfo : public MCAsmInfoELF {
31     void anchor() override;
32   public:
33     explicit ARMELFMCAsmInfo(StringRef TT);
34
35     void setUseIntegratedAssembler(bool Value) override;
36   };
37
38   class ARMCOFFMCAsmInfoMicrosoft : public MCAsmInfoMicrosoft {
39     void anchor() override;
40   public:
41     explicit ARMCOFFMCAsmInfoMicrosoft();
42   };
43
44   class ARMCOFFMCAsmInfoGNU : public MCAsmInfoGNUCOFF {
45     void anchor() override;
46   public:
47     explicit ARMCOFFMCAsmInfoGNU();
48   };
49
50 } // namespace llvm
51
52 #endif