LLVM API Documentation

ARMMCAsmInfo.h
Go to the documentation of this file.
00001 //===-- ARMMCAsmInfo.h - ARM asm properties --------------------*- C++ -*--===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 //
00010 // This file contains the declaration of the ARMMCAsmInfo class.
00011 //
00012 //===----------------------------------------------------------------------===//
00013 
00014 #ifndef LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMMCASMINFO_H
00015 #define LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMMCASMINFO_H
00016 
00017 #include "llvm/MC/MCAsmInfoCOFF.h"
00018 #include "llvm/MC/MCAsmInfoDarwin.h"
00019 #include "llvm/MC/MCAsmInfoELF.h"
00020 
00021 namespace llvm {
00022 
00023   class ARMMCAsmInfoDarwin : public MCAsmInfoDarwin {
00024     void anchor() override;
00025   public:
00026     explicit ARMMCAsmInfoDarwin(StringRef TT);
00027   };
00028 
00029   class ARMELFMCAsmInfo : public MCAsmInfoELF {
00030     void anchor() override;
00031   public:
00032     explicit ARMELFMCAsmInfo(StringRef TT);
00033 
00034     void setUseIntegratedAssembler(bool Value) override;
00035   };
00036 
00037   class ARMCOFFMCAsmInfoMicrosoft : public MCAsmInfoMicrosoft {
00038     void anchor() override;
00039   public:
00040     explicit ARMCOFFMCAsmInfoMicrosoft();
00041   };
00042 
00043   class ARMCOFFMCAsmInfoGNU : public MCAsmInfoGNUCOFF {
00044     void anchor() override;
00045   public:
00046     explicit ARMCOFFMCAsmInfoGNU();
00047   };
00048 
00049 } // namespace llvm
00050 
00051 #endif