blob: e2084968cc55b4688346253f9741de1cffc75645 [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
17#include "llvm/Target/TargetSubtarget.h"
18#include "llvm/Target/TargetMachine.h"
19
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,
33 const std::string &FS);
34
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