2012-02-18 20:03:15 +08:00
|
|
|
//===-- MSP430TargetMachine.h - Define TargetMachine for MSP430 -*- C++ -*-===//
|
2009-05-03 20:57:15 +08: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 20:39:04 +08:00
|
|
|
#include "MSP430FrameLowering.h"
|
2012-12-04 15:12:27 +08:00
|
|
|
#include "MSP430ISelLowering.h"
|
|
|
|
#include "MSP430InstrInfo.h"
|
2009-05-03 20:57:15 +08:00
|
|
|
#include "MSP430RegisterInfo.h"
|
2012-12-04 15:12:27 +08:00
|
|
|
#include "MSP430SelectionDAGInfo.h"
|
2009-05-03 20:57:15 +08:00
|
|
|
#include "MSP430Subtarget.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
2011-01-10 20:39:04 +08:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2009-05-03 20:57:15 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
/// MSP430TargetMachine
|
|
|
|
///
|
|
|
|
class MSP430TargetMachine : public LLVMTargetMachine {
|
|
|
|
MSP430Subtarget Subtarget;
|
2012-10-09 00:38:25 +08:00
|
|
|
const DataLayout DL; // Calculates type size & alignment
|
2009-05-03 20:57:15 +08:00
|
|
|
MSP430InstrInfo InstrInfo;
|
|
|
|
MSP430TargetLowering TLInfo;
|
2010-05-12 01:31:57 +08:00
|
|
|
MSP430SelectionDAGInfo TSInfo;
|
2011-01-10 20:39:04 +08:00
|
|
|
MSP430FrameLowering FrameLowering;
|
2009-05-03 20:57:15 +08:00
|
|
|
|
|
|
|
public:
|
2011-07-19 14:37:02 +08:00
|
|
|
MSP430TargetMachine(const Target &T, StringRef TT,
|
2011-12-03 06:16:29 +08:00
|
|
|
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
2011-11-16 16:38:26 +08:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2009-05-03 20:57:15 +08:00
|
|
|
|
2011-01-10 20:39:04 +08:00
|
|
|
virtual const TargetFrameLowering *getFrameLowering() const {
|
|
|
|
return &FrameLowering;
|
|
|
|
}
|
2009-05-03 20:57:15 +08:00
|
|
|
virtual const MSP430InstrInfo *getInstrInfo() const { return &InstrInfo; }
|
2012-10-09 00:38:25 +08:00
|
|
|
virtual const DataLayout *getDataLayout() const { return &DL;}
|
2009-05-03 20:57:15 +08:00
|
|
|
virtual const MSP430Subtarget *getSubtargetImpl() const { return &Subtarget; }
|
|
|
|
|
|
|
|
virtual const TargetRegisterInfo *getRegisterInfo() const {
|
|
|
|
return &InstrInfo.getRegisterInfo();
|
|
|
|
}
|
|
|
|
|
2010-04-17 23:26:15 +08:00
|
|
|
virtual const MSP430TargetLowering *getTargetLowering() const {
|
|
|
|
return &TLInfo;
|
2009-05-03 20:57:15 +08:00
|
|
|
}
|
|
|
|
|
2010-05-12 01:31:57 +08:00
|
|
|
virtual const MSP430SelectionDAGInfo* getSelectionDAGInfo() const {
|
|
|
|
return &TSInfo;
|
|
|
|
}
|
2012-02-04 10:56:59 +08:00
|
|
|
virtual TargetPassConfig *createPassConfig(PassManagerBase &PM);
|
2009-05-03 20:57:15 +08:00
|
|
|
}; // MSP430TargetMachine.
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif // LLVM_TARGET_MSP430_TARGETMACHINE_H
|