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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef LLVM_TARGET_MSP430_TARGETMACHINE_H
|
|
|
|
#define LLVM_TARGET_MSP430_TARGETMACHINE_H
|
|
|
|
|
2011-01-10 12:39:04 +00:00
|
|
|
#include "MSP430FrameLowering.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "MSP430ISelLowering.h"
|
|
|
|
#include "MSP430InstrInfo.h"
|
2009-05-03 12:57:15 +00:00
|
|
|
#include "MSP430RegisterInfo.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "MSP430SelectionDAGInfo.h"
|
2009-05-03 12:57:15 +00:00
|
|
|
#include "MSP430Subtarget.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/DataLayout.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;
|
2012-10-08 16:38:25 +00:00
|
|
|
const DataLayout DL; // Calculates type size & alignment
|
2009-05-03 12:57:15 +00:00
|
|
|
MSP430InstrInfo InstrInfo;
|
|
|
|
MSP430TargetLowering TLInfo;
|
2010-05-11 17:31:57 +00:00
|
|
|
MSP430SelectionDAGInfo TSInfo;
|
2011-01-10 12:39:04 +00:00
|
|
|
MSP430FrameLowering FrameLowering;
|
2009-05-03 12:57:15 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2011-01-10 12:39:04 +00:00
|
|
|
virtual const TargetFrameLowering *getFrameLowering() const {
|
|
|
|
return &FrameLowering;
|
|
|
|
}
|
2009-05-03 12:57:15 +00:00
|
|
|
virtual const MSP430InstrInfo *getInstrInfo() const { return &InstrInfo; }
|
2012-10-08 16:38:25 +00:00
|
|
|
virtual const DataLayout *getDataLayout() const { return &DL;}
|
2009-05-03 12:57:15 +00:00
|
|
|
virtual const MSP430Subtarget *getSubtargetImpl() const { return &Subtarget; }
|
|
|
|
|
|
|
|
virtual const TargetRegisterInfo *getRegisterInfo() const {
|
|
|
|
return &InstrInfo.getRegisterInfo();
|
|
|
|
}
|
|
|
|
|
2010-04-17 15:26:15 +00:00
|
|
|
virtual const MSP430TargetLowering *getTargetLowering() const {
|
|
|
|
return &TLInfo;
|
2009-05-03 12:57:15 +00:00
|
|
|
}
|
|
|
|
|
2010-05-11 17:31:57 +00:00
|
|
|
virtual const MSP430SelectionDAGInfo* getSelectionDAGInfo() const {
|
|
|
|
return &TSInfo;
|
|
|
|
}
|
2012-02-04 02:56:59 +00:00
|
|
|
virtual TargetPassConfig *createPassConfig(PassManagerBase &PM);
|
2009-05-03 12:57:15 +00:00
|
|
|
}; // MSP430TargetMachine.
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif // LLVM_TARGET_MSP430_TARGETMACHINE_H
|