2008-05-13 09:02:57 +00:00
|
|
|
//=====-- PIC16TargetAsmInfo.h - PIC16 asm properties ---------*- C++ -*--====//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the declaration of the PIC16TargetAsmInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef PIC16TARGETASMINFO_H
|
|
|
|
#define PIC16TARGETASMINFO_H
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
2009-07-21 17:20:18 +00:00
|
|
|
|
2008-05-13 09:02:57 +00:00
|
|
|
namespace llvm {
|
2009-07-28 03:13:23 +00:00
|
|
|
class PIC16TargetAsmInfo : public TargetAsmInfo {
|
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-02 04:41:14 +00:00
|
|
|
PIC16TargetAsmInfo();
|
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
|