2012-02-18 12:03:15 +00:00
|
|
|
//===-- ARMMCAsmInfo.h - ARM asm properties --------------------*- C++ -*--===//
|
2006-09-07 22:05:02 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-07 22:05:02 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 20:48:53 +00:00
|
|
|
// This file contains the declaration of the ARMMCAsmInfo class.
|
2006-09-07 22:05:02 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-02 05:23:52 +00:00
|
|
|
#ifndef LLVM_ARMTARGETASMINFO_H
|
|
|
|
#define LLVM_ARMTARGETASMINFO_H
|
2006-09-07 22:05:02 +00:00
|
|
|
|
2014-04-02 20:32:05 +00:00
|
|
|
#include "llvm/MC/MCAsmInfoCOFF.h"
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "llvm/MC/MCAsmInfoDarwin.h"
|
2013-10-16 01:34:32 +00:00
|
|
|
#include "llvm/MC/MCAsmInfoELF.h"
|
2006-09-07 22:05:02 +00:00
|
|
|
|
2008-09-25 07:38:08 +00:00
|
|
|
namespace llvm {
|
2008-09-24 22:22:27 +00:00
|
|
|
|
2011-12-20 02:50:00 +00:00
|
|
|
class ARMMCAsmInfoDarwin : public MCAsmInfoDarwin {
|
2014-03-10 03:19:03 +00:00
|
|
|
void anchor() override;
|
2011-12-20 02:50:00 +00:00
|
|
|
public:
|
2014-03-28 14:35:30 +00:00
|
|
|
explicit ARMMCAsmInfoDarwin(StringRef TT);
|
2008-08-07 09:54:23 +00:00
|
|
|
};
|
|
|
|
|
2013-10-16 01:34:32 +00:00
|
|
|
class ARMELFMCAsmInfo : public MCAsmInfoELF {
|
2014-03-10 03:19:03 +00:00
|
|
|
void anchor() override;
|
2011-12-20 02:50:00 +00:00
|
|
|
public:
|
2014-03-28 14:35:30 +00:00
|
|
|
explicit ARMELFMCAsmInfo(StringRef TT);
|
2014-03-13 15:56:41 +00:00
|
|
|
|
|
|
|
void setUseIntegratedAssembler(bool Value) override;
|
2008-08-07 09:54:23 +00:00
|
|
|
};
|
2006-09-07 22:05:02 +00:00
|
|
|
|
2014-04-02 20:32:05 +00:00
|
|
|
class ARMCOFFMCAsmInfoMicrosoft : public MCAsmInfoMicrosoft {
|
2014-04-29 07:58:41 +00:00
|
|
|
void anchor() override;
|
2014-04-02 20:32:05 +00:00
|
|
|
public:
|
|
|
|
explicit ARMCOFFMCAsmInfoMicrosoft();
|
|
|
|
};
|
|
|
|
|
|
|
|
class ARMCOFFMCAsmInfoGNU : public MCAsmInfoGNUCOFF {
|
2014-04-29 07:58:41 +00:00
|
|
|
void anchor() override;
|
2014-04-02 20:32:05 +00:00
|
|
|
public:
|
|
|
|
explicit ARMCOFFMCAsmInfoGNU();
|
|
|
|
};
|
|
|
|
|
2006-09-07 22:05:02 +00:00
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|