2012-02-18 13:03:15 +01:00
|
|
|
//===-- MSP430Subtarget.h - Define Subtarget for the MSP430 ----*- C++ -*--===//
|
2009-05-03 14:57:15 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-07-01 23:01:15 +02:00
|
|
|
// This file declares the MSP430 specific subclass of TargetSubtargetInfo.
|
2009-05-03 14:57:15 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TARGET_MSP430_SUBTARGET_H
|
|
|
|
#define LLVM_TARGET_MSP430_SUBTARGET_H
|
|
|
|
|
2011-07-01 23:01:15 +02:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2012-03-17 19:46:09 +01:00
|
|
|
#include <string>
|
2009-05-03 14:57:15 +02:00
|
|
|
|
2011-07-01 22:45:01 +02:00
|
|
|
#define GET_SUBTARGETINFO_HEADER
|
2011-07-02 00:36:09 +02:00
|
|
|
#include "MSP430GenSubtargetInfo.inc"
|
2011-07-01 22:45:01 +02:00
|
|
|
|
2009-05-03 14:57:15 +02:00
|
|
|
namespace llvm {
|
2011-07-07 09:07:08 +02:00
|
|
|
class StringRef;
|
2009-05-03 14:57:15 +02:00
|
|
|
|
2011-07-01 22:45:01 +02:00
|
|
|
class MSP430Subtarget : public MSP430GenSubtargetInfo {
|
2011-12-20 03:50:00 +01:00
|
|
|
virtual void anchor();
|
2009-05-03 14:57:15 +02:00
|
|
|
bool ExtendedInsts;
|
|
|
|
public:
|
|
|
|
/// This constructor initializes the data members to match that
|
2009-08-03 00:11:08 +02:00
|
|
|
/// of the specified triple.
|
2009-05-03 14:57:15 +02:00
|
|
|
///
|
2011-06-30 03:53:36 +02:00
|
|
|
MSP430Subtarget(const std::string &TT, const std::string &CPU,
|
|
|
|
const std::string &FS);
|
2009-05-03 14:57:15 +02:00
|
|
|
|
|
|
|
/// ParseSubtargetFeatures - Parses features string setting specified
|
|
|
|
/// subtarget options. Definition of function is auto generated by tblgen.
|
2011-07-07 09:07:08 +02:00
|
|
|
void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
|
2009-05-03 14:57:15 +02:00
|
|
|
};
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif // LLVM_TARGET_MSP430_SUBTARGET_H
|