2012-02-18 12:03:15 +00:00
|
|
|
//===-- MSP430TargetMachine.h - Define TargetMachine for 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares the MSP430 specific subclass of TargetMachine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_MSP430_MSP430TARGETMACHINE_H
|
|
|
|
#define LLVM_LIB_TARGET_MSP430_MSP430TARGETMACHINE_H
|
2009-05-03 12:57:15 +00:00
|
|
|
|
|
|
|
#include "MSP430Subtarget.h"
|
2011-01-10 12:39:04 +00:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2009-05-03 12:57:15 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
/// MSP430TargetMachine
|
|
|
|
///
|
|
|
|
class MSP430TargetMachine : public LLVMTargetMachine {
|
|
|
|
MSP430Subtarget Subtarget;
|
|
|
|
|
|
|
|
public:
|
2011-07-19 06:37:02 +00:00
|
|
|
MSP430TargetMachine(const Target &T, StringRef TT,
|
2011-12-02 22:16:29 +00:00
|
|
|
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
2011-11-16 08:38:26 +00:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2009-05-03 12:57:15 +00:00
|
|
|
|
2014-06-27 01:14:54 +00:00
|
|
|
const MSP430Subtarget *getSubtargetImpl() const override {
|
|
|
|
return &Subtarget;
|
2011-01-10 12:39:04 +00:00
|
|
|
}
|
2014-04-29 07:58:09 +00:00
|
|
|
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
2009-05-03 12:57:15 +00:00
|
|
|
}; // MSP430TargetMachine.
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#endif
|