2012-02-18 20:03:15 +08:00
|
|
|
//===-- ARMMCAsmInfo.h - ARM asm properties --------------------*- C++ -*--===//
|
2006-09-08 06:05:02 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-08 06:05:02 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-23 04:48:53 +08:00
|
|
|
// This file contains the declaration of the ARMMCAsmInfo class.
|
2006-09-08 06:05:02 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMMCASMINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMMCASMINFO_H
|
2006-09-08 06:05:02 +08:00
|
|
|
|
2014-04-03 04:32:05 +08:00
|
|
|
#include "llvm/MC/MCAsmInfoCOFF.h"
|
2009-08-23 04:48:53 +08:00
|
|
|
#include "llvm/MC/MCAsmInfoDarwin.h"
|
2013-10-16 09:34:32 +08:00
|
|
|
#include "llvm/MC/MCAsmInfoELF.h"
|
2006-09-08 06:05:02 +08:00
|
|
|
|
2008-09-25 15:38:08 +08:00
|
|
|
namespace llvm {
|
2015-09-16 00:17:27 +08:00
|
|
|
class Triple;
|
2015-09-15 20:27:06 +08:00
|
|
|
|
|
|
|
class ARMMCAsmInfoDarwin : public MCAsmInfoDarwin {
|
|
|
|
virtual void anchor();
|
|
|
|
|
|
|
|
public:
|
2015-09-16 00:17:27 +08:00
|
|
|
explicit ARMMCAsmInfoDarwin(const Triple &TheTriple);
|
2015-09-15 20:27:06 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class ARMELFMCAsmInfo : public MCAsmInfoELF {
|
|
|
|
void anchor() override;
|
|
|
|
|
|
|
|
public:
|
2015-09-16 00:17:27 +08:00
|
|
|
explicit ARMELFMCAsmInfo(const Triple &TT);
|
2015-09-15 20:27:06 +08:00
|
|
|
|
|
|
|
void setUseIntegratedAssembler(bool Value) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ARMCOFFMCAsmInfoMicrosoft : public MCAsmInfoMicrosoft {
|
|
|
|
void anchor() override;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ARMCOFFMCAsmInfoMicrosoft();
|
|
|
|
};
|
|
|
|
|
|
|
|
class ARMCOFFMCAsmInfoGNU : public MCAsmInfoGNUCOFF {
|
|
|
|
void anchor() override;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ARMCOFFMCAsmInfoGNU();
|
|
|
|
};
|
2014-04-03 04:32:05 +08:00
|
|
|
|
2006-09-08 06:05:02 +08:00
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|