Get rid of now unused {Four,Eight,Sixteen}ByteConstantSection
[oota-llvm.git] / lib / Target / ARM / ARMTargetAsmInfo.h
1 //=====-- ARMTargetAsmInfo.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 ARMTargetAsmInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef ARMTARGETASMINFO_H
15 #define ARMTARGETASMINFO_H
16
17 #include "llvm/Target/TargetAsmInfo.h"
18 #include "llvm/Target/ELFTargetAsmInfo.h"
19 #include "llvm/Target/DarwinTargetAsmInfo.h"
20
21 #include "ARMSubtarget.h"
22
23 namespace llvm {
24
25   // Forward declaration.
26   class ARMTargetMachine;
27
28   struct ARMTargetAsmInfo : public virtual TargetAsmInfo {
29     explicit ARMTargetAsmInfo(const ARMTargetMachine &TM);
30
31     const ARMSubtarget *Subtarget;
32
33     virtual unsigned getInlineAsmLength(const char *Str) const;
34     unsigned countArguments(const char *p) const;
35     unsigned countString(const char *p) const;
36   };
37
38   struct ARMDarwinTargetAsmInfo : public virtual ARMTargetAsmInfo,
39                                   public virtual DarwinTargetAsmInfo {
40     explicit ARMDarwinTargetAsmInfo(const ARMTargetMachine &TM);
41   };
42
43   struct ARMELFTargetAsmInfo : public virtual ARMTargetAsmInfo,
44                                public virtual ELFTargetAsmInfo {
45     explicit ARMELFTargetAsmInfo(const ARMTargetMachine &TM);
46   };
47
48 } // namespace llvm
49
50 #endif