2012-02-18 12:03:15 +00:00
|
|
|
//===-- MSP430Subtarget.h - Define Subtarget for the MSP430 ----*- C++ -*--===//
|
2009-05-03 12:57:15 +00: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 21:01:15 +00:00
|
|
|
// This file declares the MSP430 specific subclass of TargetSubtargetInfo.
|
2009-05-03 12:57:15 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_MSP430_MSP430SUBTARGET_H
|
|
|
|
#define LLVM_LIB_TARGET_MSP430_MSP430SUBTARGET_H
|
2009-05-03 12:57:15 +00:00
|
|
|
|
2014-06-27 01:14:54 +00:00
|
|
|
#include "MSP430FrameLowering.h"
|
|
|
|
#include "MSP430ISelLowering.h"
|
2015-01-14 11:23:27 +00:00
|
|
|
#include "MSP430InstrInfo.h"
|
2014-06-27 01:14:54 +00:00
|
|
|
#include "MSP430RegisterInfo.h"
|
|
|
|
#include "llvm/IR/DataLayout.h"
|
2015-07-09 02:10:08 +00:00
|
|
|
#include "llvm/Target/TargetSelectionDAGInfo.h"
|
2011-07-01 21:01:15 +00:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2012-03-17 18:46:09 +00:00
|
|
|
#include <string>
|
2009-05-03 12:57:15 +00:00
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
#define GET_SUBTARGETINFO_HEADER
|
2011-07-01 22:36:09 +00:00
|
|
|
#include "MSP430GenSubtargetInfo.inc"
|
2011-07-01 20:45:01 +00:00
|
|
|
|
2009-05-03 12:57:15 +00:00
|
|
|
namespace llvm {
|
2011-07-07 07:07:08 +00:00
|
|
|
class StringRef;
|
2009-05-03 12:57:15 +00:00
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
class MSP430Subtarget : public MSP430GenSubtargetInfo {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2009-05-03 12:57:15 +00:00
|
|
|
bool ExtendedInsts;
|
2014-06-27 01:14:54 +00:00
|
|
|
MSP430FrameLowering FrameLowering;
|
|
|
|
MSP430InstrInfo InstrInfo;
|
|
|
|
MSP430TargetLowering TLInfo;
|
2015-07-09 02:10:08 +00:00
|
|
|
TargetSelectionDAGInfo TSInfo;
|
2014-06-27 01:14:54 +00:00
|
|
|
|
2009-05-03 12:57:15 +00:00
|
|
|
public:
|
|
|
|
/// This constructor initializes the data members to match that
|
2009-08-02 22:11:08 +00:00
|
|
|
/// of the specified triple.
|
2009-05-03 12:57:15 +00:00
|
|
|
///
|
2015-06-10 12:11:26 +00:00
|
|
|
MSP430Subtarget(const Triple &TT, const std::string &CPU,
|
2014-06-27 01:14:54 +00:00
|
|
|
const std::string &FS, const TargetMachine &TM);
|
|
|
|
|
|
|
|
MSP430Subtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS);
|
2009-05-03 12:57:15 +00:00
|
|
|
|
|
|
|
/// ParseSubtargetFeatures - Parses features string setting specified
|
|
|
|
/// subtarget options. Definition of function is auto generated by tblgen.
|
2011-07-07 07:07:08 +00:00
|
|
|
void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
|
2014-06-27 01:14:54 +00:00
|
|
|
|
2014-08-04 21:25:23 +00:00
|
|
|
const TargetFrameLowering *getFrameLowering() const override {
|
|
|
|
return &FrameLowering;
|
|
|
|
}
|
|
|
|
const MSP430InstrInfo *getInstrInfo() const override { return &InstrInfo; }
|
|
|
|
const TargetRegisterInfo *getRegisterInfo() const override {
|
2014-06-27 01:14:54 +00:00
|
|
|
return &InstrInfo.getRegisterInfo();
|
|
|
|
}
|
2014-08-04 21:25:23 +00:00
|
|
|
const MSP430TargetLowering *getTargetLowering() const override {
|
|
|
|
return &TLInfo;
|
|
|
|
}
|
2015-07-09 02:10:08 +00:00
|
|
|
const TargetSelectionDAGInfo *getSelectionDAGInfo() const override {
|
2014-08-04 21:25:23 +00:00
|
|
|
return &TSInfo;
|
|
|
|
}
|
2009-05-03 12:57:15 +00:00
|
|
|
};
|
2015-06-23 09:49:53 +00:00
|
|
|
} // End llvm namespace
|
2009-05-03 12:57:15 +00:00
|
|
|
|
|
|
|
#endif // LLVM_TARGET_MSP430_SUBTARGET_H
|