summaryrefslogtreecommitdiff
path: root/lib/Target/PIC16/PIC16Subtarget.h
diff options
context:
space:
mode:
authorSanjiv Gupta <sanjiv.gupta@microchip.com>2008-11-19 11:00:54 +0000
committerSanjiv Gupta <sanjiv.gupta@microchip.com>2008-11-19 11:00:54 +0000
commitb1b5ffd827c77f0668d803b8c06b2f9296744f99 (patch)
tree50927bf30fff92fd28b11b51e72002f26cad7a61 /lib/Target/PIC16/PIC16Subtarget.h
parent2f45f9762da4ac6e823e83bff36806be1b099ea2 (diff)
downloadllvm-b1b5ffd827c77f0668d803b8c06b2f9296744f99.tar.gz
llvm-b1b5ffd827c77f0668d803b8c06b2f9296744f99.tar.bz2
llvm-b1b5ffd827c77f0668d803b8c06b2f9296744f99.tar.xz
Added a more function PIC16 backend. However to get this working a patch in
ExpandIntegerOperand (LegalizeIntegerTypes.cpp) is needed which is yet to be reworked and submitted. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59617 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PIC16/PIC16Subtarget.h')
-rw-r--r--lib/Target/PIC16/PIC16Subtarget.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/Target/PIC16/PIC16Subtarget.h b/lib/Target/PIC16/PIC16Subtarget.h
index d7cb2392b0..c6eb7119d9 100644
--- a/lib/Target/PIC16/PIC16Subtarget.h
+++ b/lib/Target/PIC16/PIC16Subtarget.h
@@ -14,7 +14,6 @@
#ifndef PIC16SUBTARGET_H
#define PIC16SUBTARGET_H
-#include "llvm/Target/TargetMachine.h"
#include "llvm/Target/TargetSubtarget.h"
#include <string>
@@ -23,19 +22,23 @@ namespace llvm {
class Module;
class PIC16Subtarget : public TargetSubtarget {
- bool IsPIC16Old;
+
+ // IsCooper - Target ISA is Cooper.
+ bool IsCooper;
public:
/// This constructor initializes the data members to match that
/// of the specified module.
///
- PIC16Subtarget(const TargetMachine &TM, const Module &M,
- const std::string &FS);
+ PIC16Subtarget(const Module &M, const std::string &FS, bool Cooper);
+ /// isCooper - Returns true if the target ISA is Cooper.
+ bool isCooper() const { return IsCooper; }
+
/// ParseSubtargetFeatures - Parses features string setting specified
/// subtarget options. Definition of function is auto generated by tblgen.
void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
};
} // End llvm namespace
-#endif
+#endif // PIC16SUBTARGET_H