2012-04-14 09:54:10 -04:00
|
|
|
//===-- MSP430TargetMachine.h - Define TargetMachine for MSP430 -*- C++ -*-===//
|
2009-06-02 13:52:33 -04: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.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
|
2015-01-18 11:17:27 -05:00
|
|
|
#ifndef LLVM_LIB_TARGET_MSP430_MSP430TARGETMACHINE_H
|
|
|
|
|
#define LLVM_LIB_TARGET_MSP430_MSP430TARGETMACHINE_H
|
2009-06-02 13:52:33 -04:00
|
|
|
|
|
|
|
|
#include "MSP430Subtarget.h"
|
2011-02-20 07:57:14 -05:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2009-06-02 13:52:33 -04:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
|
|
/// MSP430TargetMachine
|
|
|
|
|
///
|
|
|
|
|
class MSP430TargetMachine : public LLVMTargetMachine {
|
2015-01-18 11:17:27 -05:00
|
|
|
std::unique_ptr<TargetLoweringObjectFile> TLOF;
|
2009-06-02 13:52:33 -04:00
|
|
|
MSP430Subtarget Subtarget;
|
|
|
|
|
|
|
|
|
|
public:
|
2015-06-21 09:59:01 -04:00
|
|
|
MSP430TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
|
|
|
|
StringRef FS, const TargetOptions &Options,
|
2016-07-23 16:41:05 -04:00
|
|
|
Optional<Reloc::Model> RM, CodeModel::Model CM,
|
2012-04-14 09:54:10 -04:00
|
|
|
CodeGenOpt::Level OL);
|
2015-01-18 11:17:27 -05:00
|
|
|
~MSP430TargetMachine() override;
|
2009-06-02 13:52:33 -04:00
|
|
|
|
2015-05-27 14:44:32 -04:00
|
|
|
const MSP430Subtarget *getSubtargetImpl(const Function &F) const override {
|
2014-11-24 04:08:18 -05:00
|
|
|
return &Subtarget;
|
|
|
|
|
}
|
|
|
|
|
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
2015-01-18 11:17:27 -05:00
|
|
|
|
|
|
|
|
TargetLoweringObjectFile *getObjFileLowering() const override {
|
|
|
|
|
return TLOF.get();
|
|
|
|
|
}
|
2009-06-02 13:52:33 -04:00
|
|
|
}; // MSP430TargetMachine.
|
|
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
2015-01-18 11:17:27 -05:00
|
|
|
#endif
|