blob: d7cb2392b07232b2ee4ecc9a05f2276ac43ca4f1 [file] [log] [blame]
Sanjiv Gupta0e687712008-05-13 09:02:57 +00001//=====-- PIC16Subtarget.h - Define Subtarget for the PIC16 ---*- C++ -*--====//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file declares the PIC16 specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef PIC16SUBTARGET_H
15#define PIC16SUBTARGET_H
16
Sanjiv Gupta0e687712008-05-13 09:02:57 +000017#include "llvm/Target/TargetMachine.h"
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +000018#include "llvm/Target/TargetSubtarget.h"
Sanjiv Gupta0e687712008-05-13 09:02:57 +000019
20#include <string>
21
22namespace llvm {
23class Module;
24
25class PIC16Subtarget : public TargetSubtarget {
26 bool IsPIC16Old;
27
28public:
29 /// This constructor initializes the data members to match that
30 /// of the specified module.
31 ///
32 PIC16Subtarget(const TargetMachine &TM, const Module &M,
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +000033 const std::string &FS);
Sanjiv Gupta0e687712008-05-13 09:02:57 +000034
35 /// ParseSubtargetFeatures - Parses features string setting specified
36 /// subtarget options. Definition of function is auto generated by tblgen.
37 void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
38};
39} // End llvm namespace
40
41#endif