2009-08-22 20:48:53 +00:00
|
|
|
//=====-- PIC16MCAsmInfo.h - PIC16 asm properties -------------*- C++ -*--====//
|
2008-05-13 09:02:57 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 20:48:53 +00:00
|
|
|
// This file contains the declaration of the PIC16MCAsmInfo class.
|
2008-05-13 09:02:57 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef PIC16TARGETASMINFO_H
|
|
|
|
#define PIC16TARGETASMINFO_H
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2009-07-21 17:20:18 +00:00
|
|
|
|
2008-05-13 09:02:57 +00:00
|
|
|
namespace llvm {
|
2009-08-12 07:22:17 +00:00
|
|
|
class Target;
|
|
|
|
class StringRef;
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
class PIC16MCAsmInfo : public MCAsmInfo {
|
2009-01-30 04:25:10 +00:00
|
|
|
const char *RomData8bitsDirective;
|
|
|
|
const char *RomData16bitsDirective;
|
|
|
|
const char *RomData32bitsDirective;
|
2009-07-28 03:13:23 +00:00
|
|
|
public:
|
2009-08-22 20:48:53 +00:00
|
|
|
PIC16MCAsmInfo(const Target &T, const StringRef &TT);
|
2009-07-24 18:34:27 +00:00
|
|
|
|
2009-07-28 03:13:23 +00:00
|
|
|
virtual const char *getDataASDirective(unsigned size, unsigned AS) const;
|
2008-05-13 09:02:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|